@charset "UTF-8";
/* reset */
/* ============================================ */
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.3.1/dist/css/yakuhanjp.min.css");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.2.0/dist/css/yakuhanmp.min.css");
* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

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

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type="checkbox"] {
  -webkit-appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

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

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

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

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

html {
  font-size: 62.5%;
}

body {
  font-family: YakuHanJP, 'Noto Sans JP', "ヒラギノ角ゴ Pro", 'Hiragino Kaku Gothic Pro', 'Hiragino Sans', "游ゴシック Medium", 'Yu Gothic Medium', "游ゴシック体", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

/* Loading背景画面設定　*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #FFF;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}

/* 共通基本設定　*/
@media print, screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  transition-timing-function: ease;
  animation-delay: 0.25s;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInTrigger {
  opacity: 0;
}

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: .75s;
  animation-fill-mode: forwards;
  transition-timing-function: ease;
  animation-delay: 0.25s;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
  transform: translateY(50px);
}

/* rotateY */
.rotateY {
  animation-name: rotateYAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateYAnime {
  from {
    opacity: 0;
    transform: rotateY(0);
  }
  to {
    opacity: 1;
    transform: rotateY(-360deg);
  }
}
.rotateYTrigger {
  opacity: 0;
}

/* flipDown */
.flipDown {
  animation-name: flipDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipDownAnime {
  from {
    transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}
.flipDownTrigger {
  opacity: 0;
}

/* flipRight */
.flipRight {
  animation-name: flipRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: right center;
  opacity: 0;
}

@keyframes flipRightAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
.flipRightTrigger {
  opacity: 0;
}

/* flipLeft */
.flipLeft {
  animation-name: flipLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}

@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
.flipLeftTrigger {
  opacity: 0;
}

/* smoothText */
span.smoothText {
  overflow: hidden;
  display: block;
}

span.smoothTextTrigger {
  transition: 0.5s ease-out;
  transform: translate3d(0, 100%, 0) skewY(20deg);
  transform-origin: left;
  display: block;
}

span.smoothTextTrigger.smoothTextAppear {
  transform: translate3d(0, 0, 0) skewY(0);
  animation-delay: 0.25s;
}

/* bgextend */
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.bgappearTrigger {
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.bgLRextendTrigger {
  opacity: 0;
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time08 {
  animation-delay: 0.8s;
}

.delay-time12 {
  animation-delay: 1.2s;
}

.delay-time14 {
  animation-delay: 1.4s;
}

.delay-time16 {
  animation-delay: 1.6s;
}

.delay-time18 {
  animation-delay: 1.8s;
}

footer {
  width: 100%;
  height: auto;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 20px 0;
  }
}
footer h2 {
  color: #000000;
  text-align: center;
}
@media print, screen and (min-width: 769px) {
  footer h2 {
    font-size: 3rem;
    font-weight: bold !important;
    line-height: 1;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 768px) {
  footer h2 {
    font-size: 1.5rem;
    font-weight: bold !important;
    line-height: 1;
    letter-spacing: 0em;
  }
}
footer .copyright {
  color: #000000;
  text-align: center;
}
@media print, screen and (min-width: 769px) {
  footer .copyright {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 500 !important;
    line-height: 1;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 768px) {
  footer .copyright {
    margin-top: 8px;
    font-size: 0.7rem;
    font-weight: 500 !important;
    line-height: 1;
    letter-spacing: 0em;
  }
}

@media print, screen and (min-width: 769px) {
  .visual {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .visual-inner-sp {
    width: 100%;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    position: relative;
    overflow: hidden;
  }
}
@media print, screen and (min-width: 769px) {
  .visual__mov video {
    min-width: 100%;
    min-height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .visual__mov .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .visual__mov video {
    min-width: 100%;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .visual__mov .pc {
    display: none;
  }
}
.visual h1 {
  top: 30px;
  left: 30px;
  z-index: 100;
}
@media print, screen and (min-width: 769px) {
  .visual h1 {
    position: fixed;
  }
}
@media screen and (max-width: 768px) {
  .visual h1 {
    position: absolute;
  }
}
.visual__contents {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: auto;
}
@media print, screen and (min-width: 769px) {
  .visual__contents {
    max-width: 674px;
    width: 35.1%;
    min-width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .visual__contents {
    width: 75.73%;
  }
}
.visual__contents h2 img {
  max-width: 100%;
  height: auto;
}
.visual__contents-movie {
  max-width: 208px;
  margin: 50px auto 0;
}
.visual__contents-movie a {
  width: 100%;
  height: 40px;
  background-color: #FFF;
  display: block;
  position: relative;
  transition: all 0.5s 0s ease;
}
.visual__contents-movie a img {
  width: 34.13%;
  height: auto;
  padding-left: 6.73%;
  box-sizing: content-box;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto 0;
  transition: all 0.5s 0s ease;
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(308deg) brightness(99%) contrast(101%);
}
.visual__contents-movie a:hover {
  background-color: #A40017;
}
.visual__contents-movie a:hover img {
  filter: invert(90%) sepia(82%) saturate(22%) hue-rotate(332deg) brightness(112%) contrast(105%);
}
.visual__contents-movie a:hover::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="7" viewBox="0 0 6 7"><path d="M.721-7.378l6,3.5-6,3.5Z" transform="translate(-0.721 7.378)" fill="%23FFF"/></svg>');
}
.visual__contents-movie a::after {
  content: '';
  width: 6px;
  height: 7px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="7" viewBox="0 0 6 7"><path d="M.721-7.378l6,3.5-6,3.5Z" transform="translate(-0.721 7.378)" fill="%23000"/></svg>');
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.5s 0s ease;
}
.visual__contents-social {
  margin-top: 34px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.visual__contents-social h3 {
  font-size: 1.2rem;
  font-weight: bold !important;
  line-height: 1;
  letter-spacing: 0.0375em;
  position: relative;
}
.visual__contents-social h3::after {
  content: '';
  width: 22px;
  height: 6px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="6" viewBox="0 0 22 6"><path d="M-10-5.739l5.1,3-5.1,3Zm8.452,0,5.1,3-5.1,3Zm8.452,0,5.1,3-5.1,3Z" transform="translate(9.998 5.739)" fill="%23000"/></svg>');
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  left: 60px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.5s 0s ease;
}
.visual__contents-social ul {
  padding-left: 56px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.visual__contents-social ul li {
  width: 26px;
  height: auto;
}
.visual__contents-social ul li:not(:first-of-type) {
  margin-left: 12px;
}
.visual__contents-social ul li img {
  transition: all 0.5s 0s ease;
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(308deg) brightness(99%) contrast(101%);
}
.visual__contents-social ul li a:hover img {
  filter: invert(90%) sepia(82%) saturate(22%) hue-rotate(332deg) brightness(112%) contrast(105%);
}
@media print, screen and (min-width: 769px) {
  .visual__coupon {
    width: 300px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media print, screen and (min-width: 1100px) {
  .visual__coupon {
    width: 380px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media print, screen and (min-width: 1400px) {
  .visual__coupon {
    max-width: 555px;
    width: 51.01%;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .visual__coupon {
    width: 100%;
    height: auto;
    position: relative;
  }
}
.visual__coupon a {
  box-sizing: content-box;
  background-color: #FFA46A;
  display: block;
  color: #FFF;
  transition: all 0.5s 0s ease;
}
@media print, screen and (min-width: 769px) {
  .visual__coupon a {
    padding: 14px 0 14px 28px;
    font-size: 1.6rem;
    font-weight: bold !important;
    line-height: 1.44;
    letter-spacing: 0.078125em;
  }
  .visual__coupon a::after {
    right: 16px;
  }
}
@media print, screen and (min-width: 1100px) {
  .visual__coupon a {
    padding: 18px 0 18px 36px;
    font-size: 2rem;
    font-weight: bold !important;
    line-height: 1.44;
    letter-spacing: 0.078125em;
  }
  .visual__coupon a::after {
    right: 26px;
  }
}
@media print, screen and (min-width: 1400px) {
  .visual__coupon a {
    padding: 32px 0 32px 48px;
    font-size: 2.5rem;
    font-weight: bold !important;
    line-height: 1.44;
    letter-spacing: 0.078125em;
  }
  .visual__coupon a::after {
    right: 46px;
  }
}
@media screen and (max-width: 768px) {
  .visual__coupon a {
    padding: 24px 0 24px 34px;
    font-size: 1.8rem;
    font-weight: bold !important;
    line-height: 1.444;
    letter-spacing: 0.05625em;
  }
}
.visual__coupon a::after {
  content: '';
  width: 13px;
  height: 19px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="19" viewBox="0 0 13 19"><path d="M2211.828,1223.4l-13-9.266v19Z" transform="translate(-2198.828 -1214.129)" fill="%23fff"/></svg>');
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.5s 0s ease;
}
@media screen and (max-width: 768px) {
  .visual__coupon a::after {
    width: 9px;
    height: 13px;
    background-size: 9px 13px;
    right: 36px;
  }
}
.visual__coupon a:hover {
  background-color: #FFF;
  color: #FFA46A;
}
.visual__coupon a:hover::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="19" viewBox="0 0 13 19"><path d="M2211.828,1223.4l-13-9.266v19Z" transform="translate(-2198.828 -1214.129)" fill="%23FFA46A"/></svg>');
}

.overview {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 769px) {
  .overview {
    margin-top: 100px;
    overflow: hidden;
    padding: 0 9.23%;
  }
}
@media screen and (max-width: 768px) {
  .overview {
    margin-top: 50px;
  }
}
@media print, screen and (min-width: 769px) {
  .overview-inner {
    max-width: 1088px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .overview-inner {
    width: 100%;
    height: auto;
  }
}
.overview__title {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .overview__title {
    width: 100%;
    height: auto;
    padding: 0 9.23%;
  }
}
.overview__title h2 {
  font-size: 4.8rem;
  font-weight: bold !important;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .overview__title h2 {
    font-size: 2.5rem;
    font-weight: bold !important;
    line-height: 1.4;
    letter-spacing: 0.15625em;
  }
}
.overview__title h2 span {
  display: inline-block;
}
@media print, screen and (min-width: 769px) {
  .overview__title h2 span {
    background: linear-gradient(transparent 80%, #F5FF83 80%, #F5FF83 95%, transparent 95%, transparent 100%);
  }
}
@media screen and (max-width: 768px) {
  .overview__title h2 span {
    background: linear-gradient(transparent 65%, #F5FF83 65%, #F5FF83 98%, transparent 98%, transparent 100%);
  }
}
.overview__title p {
  margin-top: 70px;
  font-size: 1.8rem;
  font-weight: 500 !important;
  line-height: 2.25;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .overview__title p {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 500 !important;
    line-height: 1.923;
    letter-spacing: 0em;
  }
}
@media print, screen and (min-width: 769px) {
  .overview__img {
    width: 100%;
    height: auto;
    position: absolute;
    top: -18px;
    left: 468px;
  }
  .overview__img img {
    max-width: 761px;
    width: 200%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .overview__img {
    width: 100%;
    height: auto;
    margin-top: 30px;
  }
  .overview__img img {
    width: 100%;
    height: auto;
  }
}

.lovers {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 769px) {
  .lovers {
    padding: 0 9.23% 53px;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .lovers {
    margin-top: 50px;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.first {
    margin-top: 44px;
    background: linear-gradient(180deg, white 0%, white 5%, #f8eae7 5%, #f8eae7 100%);
  }
}
@media screen and (max-width: 768px) {
  .lovers.first {
    background: #f8eae7;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.first .lovers__profile {
    margin-top: 86px;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.first .lovers__profile-details {
    margin-top: 12px;
  }
}
@media screen and (max-width: 768px) {
  .lovers.first .lovers__profile-details {
    margin-top: 8px;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.first .lovers__meals-img img {
    max-width: 665px;
    width: 200%;
    height: auto;
    margin-left: -32px;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.first .lovers__meals-illust img {
    max-width: 488px;
    width: 35%;
    box-sizing: content-box;
    position: absolute;
    z-index: 10;
  }
}
@media screen and (max-width: 768px) {
  .lovers.first .lovers__meals-illust img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    z-index: 10;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.first .lovers__meals-details {
    margin-top: 260px;
    padding: 18px 36px;
  }
}
@media screen and (max-width: 768px) {
  .lovers.first .lovers__meals-details {
    width: 100%;
    height: auto;
    margin-top: 58vw;
    padding: 20px 36px 30px;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.first .lovers__meals-details h3 {
    max-width: 182px;
  }
}
@media screen and (max-width: 768px) {
  .lovers.first .lovers__meals-details h3 {
    max-width: 140px;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.first .lovers__meals-details .staff {
    max-width: 139px;
    top: 18px;
    right: 30px;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.second {
    margin-top: 30px;
    background: linear-gradient(180deg, white 0%, white 5%, #e2f7f7 5%, #e2f7f7 100%);
  }
}
@media screen and (max-width: 768px) {
  .lovers.second {
    background: #e2f7f7;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.second .lovers__profile {
    margin-top: 110px;
  }
}
.lovers.second .lovers__profile-details {
  margin-top: 0;
}
@media print, screen and (min-width: 769px) {
  .lovers.second .lovers__meals-img img {
    max-width: 623px;
    width: 150%;
    height: auto;
    margin-left: -40px;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.second .lovers__meals-illust img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .lovers.second .lovers__meals-illust img {
    width: 100%;
    height: auto;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.second .lovers__meals-details {
    padding: 18px 36px;
  }
}
@media screen and (max-width: 768px) {
  .lovers.second .lovers__meals-details {
    width: 100%;
    height: auto;
    padding: 20px 36px 30px;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.second .lovers__meals-details h3 {
    max-width: 129px;
  }
}
@media screen and (max-width: 768px) {
  .lovers.second .lovers__meals-details h3 {
    max-width: 125px;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.second .lovers__meals-details .staff {
    max-width: 139px;
    top: 18px;
    right: 30px;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.third {
    margin-top: 16px;
    background: linear-gradient(180deg, white 0%, white 7%, #eeffdb 7%, #eeffdb 100%);
  }
}
@media screen and (max-width: 768px) {
  .lovers.third {
    background: #eeffdb;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.third .lovers__profile {
    margin-top: 110px;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.third .lovers__profile-details {
    margin-top: 0;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.third .lovers__meals-img img {
    max-width: 594px;
    width: 150%;
    height: auto;
    margin-left: -16px;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.third .lovers__meals-illust img {
    max-width: 488px;
    width: 100%;
    box-sizing: content-box;
    position: absolute;
    z-index: 10;
    top: -164px;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .lovers.third .lovers__meals-illust img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    z-index: 10;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.third .lovers__meals-details {
    margin-top: 164px;
    padding: 28px 36px;
  }
}
@media screen and (max-width: 768px) {
  .lovers.third .lovers__meals-details {
    width: 100%;
    height: auto;
    margin-top: 20vw;
    padding: 20px 36px 30px;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.third .lovers__meals-details h3 {
    max-width: 206px;
  }
}
@media screen and (max-width: 768px) {
  .lovers.third .lovers__meals-details h3 {
    max-width: 228px;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 769px) {
  .lovers.third .lovers__meals-details .staff {
    max-width: 139px;
    top: -20px;
    right: 30px;
    z-index: 50;
  }
}
.lovers-inner {
  max-width: 1088px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media print, screen and (min-width: 769px) {
  .lovers__contents {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.lovers__profile {
  width: 44.85%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .lovers__profile {
    width: 100%;
    height: auto;
    padding: 0 9.23% 0;
  }
}
.lovers__profile h2 {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 769px) {
  .lovers__profile h2 {
    max-width: 488px;
  }
}
.lovers__profile h2 img {
  width: 100%;
  height: auto;
}
.lovers__profile-details {
  padding: 24px 26px 18px 26px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lovers__profile-details {
    padding: 16px 20px 12px 20px;
  }
}
.lovers__profile-details h3 {
  max-width: 55px;
  width: 100%;
  height: auto;
  position: absolute;
  top: -10px;
  left: 14px;
}
@media screen and (max-width: 768px) {
  .lovers__profile-details h3 {
    max-width: 40px;
    top: -8px;
    left: 10px;
  }
}
.lovers__profile-details h3 img {
  width: 100%;
  height: auto;
}
.lovers__profile-details p {
  font-size: 1.3rem;
  font-weight: 500 !important;
  line-height: 1.923;
  letter-spacing: 0em;
  text-align: justify;
  text-justify: inter-ideograph;
}
.lovers__meals {
  width: 44.85%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .lovers__meals {
    width: 100%;
    height: auto;
    padding: 0 0 82px;
  }
}
.lovers__meals-img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .lovers__meals-img img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .lovers__meals-contents {
    padding: 0 9.23%;
  }
}
.lovers__meals-contents > p {
  font-size: 1.3rem;
  font-weight: 500 !important;
  line-height: 1.923;
  letter-spacing: 0em;
  text-align: justify;
  text-justify: inter-ideograph;
}
.lovers__meals-illust img {
  width: 100%;
  height: auto;
}
.lovers__meals-details {
  background-color: #fff;
}
.lovers__meals-details h3 {
  width: 100%;
  height: auto;
}
.lovers__meals-details h3 img {
  width: 100%;
  height: auto;
}
.lovers__meals-details p {
  text-align: justify;
  text-justify: inter-ideograph;
}
.lovers__meals-details p.menu {
  padding-top: 10px;
  font-size: 1.3rem;
  font-weight: bold !important;
  line-height: 1.923;
  letter-spacing: 0.034375em;
}
.lovers__meals-details p.menu span {
  margin-top: -8px;
  display: block;
  font-size: 1.3rem;
  font-weight: 500 !important;
  line-height: 2.6;
  letter-spacing: -0.075em;
}
@media screen and (max-width: 768px) {
  .lovers__meals-details p.menu span {
    margin: 0px 0 10px 0;
    font-size: 1.3rem;
    font-weight: 500 !important;
    line-height: 1.923;
    letter-spacing: 0em;
  }
}
.lovers__meals-details p.comment {
  padding-top: 8px;
  font-size: 1.3rem;
  font-weight: 500 !important;
  line-height: 1.923;
  letter-spacing: 0em;
}
.lovers__meals-details p.comment.line {
  margin-top: 6px;
  border-top: 1px solid #707070;
}
.lovers__meals-details .staff {
  width: 100%;
  height: auto;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .lovers__meals-details .staff {
    max-width: 150px;
    margin: 0 auto;
    bottom: -82px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.lovers__meals-details .staff img {
  width: 100%;
  height: auto;
}

.shop {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 769px) {
  .shop {
    margin-top: 56px;
    padding: 0 9.23%;
  }
}
@media screen and (max-width: 768px) {
  .shop {
    margin-top: 60px;
  }
}
.shop-inner {
  max-width: 1088px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .shop__title {
    padding: 0 9.23%;
  }
}
.shop__title h2 {
  font-size: 4.8rem;
  font-weight: bold !important;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .shop__title h2 {
    font-size: 2.5rem;
    font-weight: bold !important;
    line-height: 1.48;
    letter-spacing: 0.15625em;
  }
}
.shop__title h2 span {
  display: inline-block;
}
@media print, screen and (min-width: 769px) {
  .shop__title h2 span {
    background: linear-gradient(transparent 80%, #F5FF83 80%, #F5FF83 95%, transparent 95%, transparent 100%);
  }
}
@media screen and (max-width: 768px) {
  .shop__title h2 span {
    background: linear-gradient(transparent 65%, #F5FF83 65%, #F5FF83 98%, transparent 98%, transparent 100%);
  }
}
.shop__title p {
  margin-top: 46px;
  font-size: 1.8rem;
  font-weight: 500 !important;
  line-height: 2.222;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .shop__title p {
    margin-top: 14px;
    font-size: 1.3rem;
    font-weight: 500 !important;
    line-height: 1.923;
    letter-spacing: 0em;
  }
}
@media print, screen and (min-width: 769px) {
  .shop__contents {
    margin-top: -20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.shop__card {
  width: 44.85%;
  height: auto;
  padding: 0 0 28px 0;
  background-color: #f0f0f0;
}
@media print, screen and (min-width: 769px) {
  .shop__card:first-of-type {
    margin-top: 100px;
  }
  .shop__card:nth-of-type(2n+3) {
    margin-top: 66px;
  }
  .shop__card:nth-of-type(4) {
    margin-top: -56px;
  }
  .shop__card:nth-of-type(6) {
    margin-top: -126px;
  }
  .shop__card:nth-of-type(8) {
    margin-top: -166px;
  }
}
@media screen and (max-width: 768px) {
  .shop__card {
    width: 100%;
    height: auto;
  }
  .shop__card:first-of-type {
    margin-top: 30px;
  }
  .shop__card:not(:first-of-type) {
    margin-top: 48px;
  }
}
.shop__card h3 img {
  width: 100%;
  height: auto;
}
.shop__card > p {
  padding: 0 9.23% 0 9.23%;
  text-align: justify;
  text-justify: inter-ideograph;
}
.shop__card > p.menu {
  padding-top: 28px;
  font-size: 1.3rem;
  font-weight: bold !important;
  line-height: 1.923;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .shop__card > p.menu {
    padding-top: 10px;
  }
}
.shop__card > p.point {
  padding-top: 8px;
  font-size: 1.3rem;
  font-weight: 500 !important;
  line-height: 1.923;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .shop__card > p.point {
    padding-top: 6px;
  }
}
.shop__card .table {
  padding: 2px 9.23% 0 9.23%;
}
.shop__card .table tr th {
  font-size: 1.3rem;
  font-weight: bold !important;
  line-height: 1.923;
  letter-spacing: 0em;
}
.shop__card .table tr td {
  font-size: 1.3rem;
  font-weight: bold !important;
  line-height: 1.923;
  letter-spacing: 0em;
}
.shop__card-tips {
  margin: 24px 9.23% 0 0;
  padding-left: 9.23%;
  background: #f0f0f0;
  background: linear-gradient(180deg, #f0f0f0 0%, #f0f0f0 7%, white 7%, white 100%);
}
@media screen and (max-width: 768px) {
  .shop__card-tips {
    margin: 18px 9.23% 0 0;
    background: linear-gradient(180deg, #f0f0f0 0%, #f0f0f0 8%, white 8%, white 100%);
  }
}
.shop__card-tips h4 {
  padding: 4px 26px 6px;
  background-color: #E58A8A;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  font-size: 1.5rem;
  font-weight: bold !important;
  line-height: 1;
  letter-spacing: 0.046875em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .shop__card-tips h4 {
    font-size: 1.3rem;
    font-weight: bold !important;
    line-height: 1;
    letter-spacing: 0.040625em;
    padding: 4px 20px 6px;
  }
}
.shop__card-tips h4::after {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 11px 5px 0 5px;
  border-color: #E58A8A transparent transparent transparent;
  position: absolute;
  bottom: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.shop__card-tips h4 span::before {
  content: "";
  width: 14px;
  height: 13px;
  margin: 0 4px;
  background-image: url("../img/home/icon_heart.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  display: inline-block;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .shop__card-tips h4 span::before {
    width: 11px;
    height: 10px;
    background-size: 11px 10px;
  }
}
.shop__card-tips p {
  padding: 12px 30px 0 0;
  font-size: 1.3rem;
  font-weight: 500 !important;
  line-height: 1.923;
  letter-spacing: 0em;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (max-width: 768px) {
  .shop__card-tips p {
    padding: 12px 22px 0 0;
  }
}
.shop__card-tips-img {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.shop__card-tips-img img {
  width: 100%;
  height: auto;
}
.shop__card-tips-img img:nth-of-type(1) {
  max-width: 166px;
}
@media screen and (max-width: 768px) {
  .shop__card-tips-img img:nth-of-type(1) {
    max-width: 126px;
  }
}
.shop__card-tips-img img:nth-of-type(2) {
  max-width: 164px;
}
@media screen and (max-width: 768px) {
  .shop__card-tips-img img:nth-of-type(2) {
    max-width: 125px;
  }
}

.banner {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 769px) {
  .banner {
    margin-top: 100px;
    padding: 0 35px;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    margin-top: 45px;
    padding: 0 9.23%;
  }
}
.banner-inner {
  max-width: 1088px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.banner__first li {
  width: 100%;
  height: auto;
}
.banner__first li img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 769px) {
  .banner__second {
    margin-top: 20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .banner__second {
    margin-top: 6px;
  }
}
.banner__second li {
  width: 23.62%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .banner__second li {
    width: 100%;
    height: auto;
  }
  .banner__second li:not(:first-of-type) {
    margin-top: 6px;
  }
}
.banner__second li img {
  width: 100%;
  height: auto;
}
