@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap");
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}

.loading-text {
  margin-top: 16px;
  font-family: "Arial", sans-serif;
  font-size: 18px;
  color: #8b7355;
  letter-spacing: 2px;
  -webkit-animation: pulse 1.5s ease-in-out infinite;
          animation: pulse 1.5s ease-in-out infinite;
}

.content.show {
  display: block;
  -webkit-animation: fadeIn 0.5s ease-in;
          animation: fadeIn 0.5s ease-in;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.loading-svg-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  max-height: 150px;
  margin-bottom: 10px;
}

.loading-svg {
  width: 100%;
  max-width: 120px;
  height: 100%;
  max-height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.loading-svg.left img {
  -webkit-animation: floatLeft 2.2s ease-in-out infinite alternate;
          animation: floatLeft 2.2s ease-in-out infinite alternate;
}

.loading-svg.right img {
  -webkit-animation: floatRight 2.2s ease-in-out infinite alternate;
          animation: floatRight 2.2s ease-in-out infinite alternate;
}

@-webkit-keyframes floatLeft {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-18px);
            transform: translateY(-18px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floatLeft {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-18px);
            transform: translateY(-18px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes floatRight {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(18px);
            transform: translateY(18px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floatRight {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(18px);
            transform: translateY(18px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*-------------------------
* Variables
* ------------------------
*/
:root {
  --primary-color: #4bb;
  --bg-color: #fff;
  --card-main: #f3a7a7;
  --text-color: #515057;
}

/*-------------------------
* Base Style
* ------------------------
*/
html {
  font-family: "Zen Maru Gothic", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1,
h2 {
  text-align: center;
  margin-bottom: 3rem;
}

body {
  background-color: var(--bg-color);
  background-image: none;
  font-size: 1rem;
  color: var(--text-color);
}

/*-------------------------
* dear-baby 専用スタイル
* ------------------------
*/
#dear-baby h1 {
  font-size: 3em;
}

#dear-baby h2 {
  font-size: 2em;
}

#dear-baby > h2 {
  text-align: center;
}

#dear-baby h2,
#dear-baby h3,
#dear-baby h4 {
  font-family: "Zen Maru Gothic", sans-serif;
}

#dear-baby .l-content-wrapper {
  max-width: unset !important;
  margin-inline: auto;
}

.shape {
  margin: 100px auto;
  width: 300px;
  height: 300px;
  max-width: 325px;
  max-height: 325px;
  background-color: #fbeef0;
  border-radius: 90% 83% 50% 80% / 100% 100% 50% 50%;
  position: relative;
  cursor: pointer;
  color: var(--text-color);
}

.shape button.dear-card-btn {
  outline: none;
  background: none;
  border: none;
  border-bottom: 2px dashed #d18a00;
  font-size: 16px;
  cursor: pointer;
  color: var(--text-color);
}

.shape h4 {
  background: #fff;
  position: absolute;
  rotate: -7deg;
  left: -15%;
  top: 10%;
  width: 100%;
  padding: 0.5rem;
  color: #d18a00;
  font-size: 18px;
  font-weight: bold;
  -webkit-box-shadow: 0 0 20px rgba(249, 249, 249, 0.2);
          box-shadow: 0 0 20px rgba(249, 249, 249, 0.2);
}

@media screen and (min-width: 769px) {
  .shape button.dear-card-btn {
    border: none;
  }
  .shape:hover button.dear-card-btn {
    border-bottom: 2px dashed #d18a00;
  }
}

.content-inner {
  padding-top: 10rem;
  height: auto;
  width: 80%;
  margin-inline: auto;
  text-align: center;
  font-size: 24px;
}

.content-inner a {
  color: var(--text-color);
  cursor: pointer;
}

.product .content-inner {
  padding-top: unset;
}

/*-------------------------
* CSS
* ------------------------
*/
.dear-features .dear-row {
  -ms-grid-columns: unset;
      grid-template-columns: unset;
  display: unset;
  overflow-x: unset;
  max-width: 1000px;
}

.dear-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: visible;
  scrollbar-width: none;
  width: 100%;
  gap: 0.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin-inline: auto;
}

.dear-card {
  position: relative;
  padding: 1rem;
  margin-right: 1rem;
  max-width: 250px;
  height: 320px;
}

.dear-card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hidden {
  display: none;
  opacity: 0;
}

.dear-detail-btn {
  background-color: #78c9a2;
  color: #fff;
}

#dear-detail-modal {
  padding: 2rem;
  width: 600px;
  max-width: 80dvw;
  max-height: 70vh;
  border-radius: 8px;
  border: none;
  background-color: #fff;
  scrollbar-width: none;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

#dear-detail-modal h3 {
  text-align: center;
}

.dear-detail-close {
  font-size: 1.5em;
  width: 24px;
  height: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 5px var(--primary-color);
          box-shadow: 0 0 5px var(--primary-color);
  background: var(--primary-color);
  border-radius: 24px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: scale 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: scale 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dear-detail-close:hover {
  scale: 1.1;
}

div[id^="feature-"] {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s;
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  max-height: 60vh;
  border: none;
  border-radius: 1rem;
  background: #fff;
  padding: 4rem;
  border-radius: 1rem;
  max-width: 400px !important;
  width: 100%;
  font-size: 1rem;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media screen and (max-width: 768px) {
  div[id^="feature-"] {
    max-width: 90vw;
    padding: 2rem 0;
    font-size: 1em;
  }
}

.feature-modal-close {
  position: absolute;
  top: 2%;
  right: 2%;
  -webkit-box-shadow: 0 0 5px var(--primary-color);
          box-shadow: 0 0 5px var(--primary-color);
  background: var(--primary-color);
  color: #fff;
  border: none;
  outline: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  padding: 0.5rem;
  z-index: 99;
  -webkit-transition: scale 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: scale 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.feature-modal-close:hover {
  scale: 1.1;
}

.popup-el {
  width: 100%;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
  gap: 10%;
  opacity: 0;
  text-align: center;
}

.popup-el .baby-title {
  color: #fff;
  background: #f3a7a7;
  border: 3px dashed #84706b;
  display: inline-block;
  border-radius: 120px;
  font-size: clamp(20px, 60px);
  width: 633px;
  max-width: 90vw;
  height: 114px;
  line-height: 114px;
  position: relative;
}

.popup-el img {
  width: 100%;
  max-width: 80px;
  position: absolute;
  top: -60px;
  z-index: 99;
}

.popup-el img:first-of-type {
  left: 10%;
}

.popup-el img:last-of-type {
  right: 10%;
  top: -70px;
  scale: 0.9;
}

.dear-recommend,
.dear-comparison {
  padding-block: 3rem;
  text-align: center;
}

.dear-recommend img,
.dear-comparison img {
  max-width: 800px;
}

.dear-recommend img {
  -webkit-transform: translateX(5%);
          transform: translateX(5%);
}

.dear-eco {
  margin-top: 20rem;
  text-align: center;
}

.dear-eco h2 {
  text-wrap: balance;
  font-size: 32px !important;
}

.dear-eco img {
  max-width: 800px;
}

.dear-subMerits .dear-section-inner {
  text-align: center;
}

.dear-subMerits img {
  max-width: 600px;
}

.db-teiki .l-container {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

.db-teiki .l-container .product {
  width: 100%;
  max-width: unset;
}

.db-bg {
  z-index: -1;
  position: absolute;
  top: 50%;
  scale: 1.1;
  width: 100vw !important;
  -ms-grid-column-align: center;
      justify-self: center;
}

.db-bg div {
  width: 100%;
  margin-inline: auto;
}

.db-bg div:nth-child(odd) {
  position: absolute;
  left: 0;
}

.db-bg div:nth-child(even) {
  position: absolute;
  right: 0;
}

.db-bg div[data-svg="0"] {
  content: url(https://zwvfihef.itembox.design/item/caretea-brand/bg/bg-0.svg);
  width: 100%;
  max-width: 300px;
  display: block;
  -webkit-transform: translateY(calc(100% * 0));
          transform: translateY(calc(100% * 0));
}

.db-bg div[data-svg="1"] {
  content: url(https://zwvfihef.itembox.design/item/caretea-brand/bg/bg-1.svg);
  width: 100%;
  max-width: 300px;
  display: block;
  -webkit-transform: translateY(calc(100% * 1));
          transform: translateY(calc(100% * 1));
}

.db-bg div[data-svg="2"] {
  content: url(https://zwvfihef.itembox.design/item/caretea-brand/bg/bg-2.svg);
  width: 100%;
  max-width: 300px;
  display: block;
  -webkit-transform: translateY(calc(100% * 2));
          transform: translateY(calc(100% * 2));
}

.db-bg div[data-svg="3"] {
  content: url(https://zwvfihef.itembox.design/item/caretea-brand/bg/bg-3.svg);
  width: 100%;
  max-width: 300px;
  display: block;
  -webkit-transform: translateY(calc(100% * 3));
          transform: translateY(calc(100% * 3));
}

.db-bg div[data-svg="4"] {
  content: url(https://zwvfihef.itembox.design/item/caretea-brand/bg/bg-4.svg);
  width: 100%;
  max-width: 300px;
  display: block;
  -webkit-transform: translateY(calc(100% * 4));
          transform: translateY(calc(100% * 4));
}

.db-bg div[data-svg="5"] {
  content: url(https://zwvfihef.itembox.design/item/caretea-brand/bg/bg-5.svg);
  width: 100%;
  max-width: 300px;
  display: block;
  -webkit-transform: translateY(calc(100% * 5));
          transform: translateY(calc(100% * 5));
}

.db-bg div[data-svg="6"] {
  content: url(https://zwvfihef.itembox.design/item/caretea-brand/bg/bg-6.svg);
  width: 100%;
  max-width: 300px;
  display: block;
  -webkit-transform: translateY(calc(100% * 6));
          transform: translateY(calc(100% * 6));
}

.db-bg div[data-svg="7"] {
  content: url(https://zwvfihef.itembox.design/item/caretea-brand/bg/bg-7.svg);
  width: 100%;
  max-width: 300px;
  display: block;
  -webkit-transform: translateY(calc(100% * 7));
          transform: translateY(calc(100% * 7));
}

@media screen and (max-width: 768px) {
  .db-bg div[data-svg="0"] {
    width: 80%;
    max-width: 150px;
  }
  .db-bg div[data-svg="1"] {
    width: 80%;
    max-width: 150px;
  }
  .db-bg div[data-svg="2"] {
    width: 80%;
    max-width: 150px;
  }
  .db-bg div[data-svg="3"] {
    width: 80%;
    max-width: 150px;
  }
  .db-bg div[data-svg="4"] {
    width: 80%;
    max-width: 150px;
  }
  .db-bg div[data-svg="5"] {
    width: 80%;
    max-width: 150px;
  }
  .db-bg div[data-svg="6"] {
    width: 80%;
    max-width: 150px;
  }
  .db-bg div[data-svg="7"] {
    width: 80%;
    max-width: 150px;
  }
}

.right-nav {
  position: fixed;
  right: 0;
  top: 30%;
  background: #e2ecf1;
  color: #515057;
  border-radius: 12px;
  padding-inline: 2rem;
  max-width: 250px;
  z-index: 1000;
}

.right-nav a {
  text-decoration: unset;
  color: unset;
}

.right-nav ul {
  list-style: none;
  translate: -10%;
  padding: 1rem;
}

.right-nav ul li {
  padding: 1rem 2rem;
  cursor: pointer;
  border-radius: 24px;
}

.right-nav li:hover {
  background-color: #fff;
  color: #333;
  border-radius: 24px;
}

.dear-howto {
  padding-block: 3rem;
  max-width: 1200px;
  padding-inline: 1rem;
  margin-inline: auto;
}

.dear-howto small {
  opacity: 0.5;
  display: block;
  margin-top: 2rem;
}

.dear-steps {
  padding-inline: 2rem;
  width: 100%;
}

.dear-steps details {
  padding: 1rem;
  margin-left: 2rem;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
  pointer-events: none;
  /* prevents click events */
  /* アコーディオンが開いた時のスタイル */
}

.dear-steps details[open] {
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.dear-steps summary {
  display: -ms-grid;
  display: grid;
  /* 初期値の display: list-item 以外を指定したので、デフォルトの三角形アイコンは非表示になる */
  -ms-grid-columns: 1fr 24px;
      grid-template-columns: 1fr 24px;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 24px;
  font-weight: bold;
  font-size: 1.4em;
  margin-left: -2rem;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.dear-steps summary::marker {
  content: "";
}

.dear-steps summary::-webkit-details-marker {
  display: none;
}

@media (any-hover: hover) {
  details:hover {
    background: #fcfcfc;
    cursor: pointer;
  }
}

.dear-lineup .dear-row-wrap {
  overflow: unset;
}

.dear-lineup .dear-row-wrap .dear-col-2 {
  margin-inline: auto;
}

.dear-lineup h2 {
  position: relative;
  margin-top: 3rem;
  font-size: 30px;
  text-align: center;
}

.dear-lineup h2::before {
  content: url(https://zwvfihef.itembox.design/item/caretea-brand/lineup_deco.png);
  width: 100%;
  height: 100%;
  scale: 0.8;
  display: inline-block;
}

.lineup-card {
  width: 100%;
  position: relative;
  text-align: left;
  color: #515057;
  max-width: 325px;
  max-height: 615px;
  text-align: center;
  border: 2px solid #ececec;
  background-color: #fff;
  padding: 3rem;
  border-radius: 20px;
}

.lineup-card img {
  width: 100%;
  max-width: 200px;
  height: 100%;
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1rem;
}

.lineup-card p:last-child {
  text-align: left;
}

.lineup-card_title {
  border-bottom: 5px dotted var(--card-main);
  text-align: center;
}

.lineup-card_title h4 {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 1rem;
}

.lineup-card_price {
  text-align: right;
  color: var(--card-main);
  font-weight: bold;
  font-size: 1.2em;
}

.lineup-card_btn {
  border-radius: 1.8rem;
  background-color: #ff9425;
  text-align: center;
  height: 40px;
  line-height: 40px;
  width: 100%;
  cursor: pointer;
  margin-top: 1rem;
}

.lineup-card_btn a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .dear-lineup .dear-row {
    gap: 0.5rem;
    display: block;
  }
  .lineup-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem 0.5rem;
    width: 100%;
    overflow: hidden;
    max-width: unset;
  }
  .lineup-card img {
    min-width: 150px;
    height: 150px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .lineup-card_inner {
    padding: 0.5rem;
  }
  .lineup-card h4 {
    font-size: 15px !important;
    text-wrap: nowrap;
    margin-block: 0.5rem;
  }
  .lineup-card_title {
    border-bottom: 2px dotted var(--card-main);
  }
  .lineup-card p,
  .lineup-card a {
    font-size: 14px;
    margin-block: 0.5rem;
  }
  /* .lineup-card_btn {
    height: 24px;
    line-height: 24px;
  } */
}

@-webkit-keyframes light {
  100% {
    outline-color: transparent;
    outline-offset: 12px;
  }
}

@keyframes light {
  100% {
    outline-color: transparent;
    outline-offset: 12px;
  }
}

@-webkit-keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.loading-animation {
  -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.fade-out {
  -webkit-animation: fadeOut 0.5s ease-out forwards;
          animation: fadeOut 0.5s ease-out forwards;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes pop {
  0% {
    scale: 0.5;
  }
  100% {
    scale: 1;
  }
}

@keyframes pop {
  0% {
    scale: 0.5;
  }
  100% {
    scale: 1;
  }
}

.fadeup {
  opacity: 1;
}

.popup-el.popup {
  -webkit-animation: popup 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: popup 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  opacity: 1;
}

@-webkit-keyframes popup {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes popup {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

[popover] {
  -webkit-animation: pop 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: pop 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform-origin: top;
          transform-origin: top;
}

[popover]::-webkit-backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  /* 半透明の黒 */
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

[popover]::backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  /* 半透明の黒 */
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

@media screen and (max-width: 768px) {
  .shape .content-inner {
    font-size: 18px;
  }
  .shape button.dear-card-btn {
    border-bottom: 2px dahsed #d18a00;
  }
  .dear-row h2 {
    text-align: center;
  }
  .dear-cols {
    display: block;
  }
  .dear-cols .dear-col {
    max-width: 90vw;
  }
  .dear-cols .dear-card {
    padding: 0;
    margin: 0;
    margin-bottom: 1rem;
    margin-right: 0;
    width: 100%;
    max-width: 96vw !important;
    max-height: 300px;
  }
  section > div[class*="container"] {
    padding-inline: unset;
  }
  #dear-baby h1.baby-title {
    font-size: 40px;
  }
  #dear-baby h2 {
    font-size: 30px;
  }
  .dear-comparison img,
  .dear-recommend img {
    max-width: 80vw;
  }
  .popup-el img {
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
  .right-nav {
    display: none;
  }
  .db-teiki .l-container {
    display: block;
  }
  .db-teiki .l-container .img-container,
  .db-teiki .l-container .content-inner {
    width: 100%;
  }
  .db-teiki .l-container .subscription-price {
    font-size: 1rem;
  }
}

@media screen and (min-width: 769px) {
  .popup-el img:first-of-type {
    left: 35%;
  }
  .popup-el img:last-of-type {
    right: 35%;
  }
}