@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Roboto:wght@100;300;400;500&family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
:root {
  --primary-color: #e5f7ff;
  --secondary-color: #fdfae2;
  --bg-color: #fff;
  --main-font-color: #008cd7;
  --font-defalt: "Noto Sans JP", sans-serif;
  --font-lato: "Lato", sans-serif;
  --font-zenmaru: "Zen Maru Gothic", sans-serif;
}

/* mixin setting end */
::-moz-selection {
  color: #fff;
  background: #363636;
}
::selection {
  color: #fff;
  background: #363636;
}

html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: var(--main-font-color);
  font-size: 1rem;
  font-family: var(--font-defalt);

  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}

body {
  height: 100%;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  counter-reset: number 0;
}

a {
  color: var(--main-font-color);
  transition: opacity 1s;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.bold {
  font-weight: bold;
}

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

.text-deco-u {
  text-decoration: underline;
}

.note {
  font-family: var(--font-noto-sans);
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.l-mlr-c {
  margin-left: auto;
  margin-right: auto;
}

.l-mlr-16 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.l-mt-08 {
  margin-top: 0.5rem;
}

.l-mt-16 {
  margin-top: 0.7rem;
}

.l-mt-24 {
  margin-top: 1.5rem;
}

.l-mt-32 {
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.l-mt-40 {
  margin-bottom: 2.5rem;
}

.l-mt-48 {
  margin-top: 3rem;
}

.l-mt-56 {
  margin-top: 3.5rem;
}

.l-mt-64 {
  margin-top: 4rem;
}

.l-mt-80 {
  margin-top: 5rem;
}

.l-mt-100 {
  margin-top: 6.25rem;
}

.l-mb-08 {
  margin-bottom: 0.5rem;
}

.l-mb-16 {
  margin-bottom: 1rem;
}

.l-mb-24 {
  margin-bottom: 1.5rem;
}

.l-mb-32 {
  margin-bottom: 2rem;
}

.l-mb-40 {
  margin-bottom: 2.5rem;
}

.l-mb-48 {
  margin-bottom: 3rem;
}

.l-mb-56 {
  margin-bottom: 3.5rem;
}

.l-mb-64 {
  margin-bottom: 4rem;
}

.l-mb-80 {
  margin-bottom: 5rem;
}

.l-mb-100 {
  margin-bottom: 6.25rem;
}

.l-pd-lr-24 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.l-pd-lr-32 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.l-pd-tb-56 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.l-content_pdrl {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.sp-only {
  display: none;
}

.fadeoff {
  opacity: 0;
  transition: all 2s;
  transform: translateY(1rem);
}

.fadeon {
  opacity: 1;
  transform: translateY(0);
}

.fade_top {
  opacity: 0;
  transition: all 2s;
  transform: translateY(1rem);
}

.fade_top_active {
  opacity: 1;
  transform: translateY(0);
}
.fade_top_active:nth-of-type(1) {
  transition-delay: 1s;
}
.fade_top_active:nth-of-type(2) {
  transition-delay: 0.5s;
}

.rumble {
  -webkit-animation: rumble 0.1s linear 6;
  animation: rumble 0.1s linear 6;
}

@-webkit-keyframes rumble {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(2px);
  }
  50% {
    transform: translate(0);
  }
  75% {
    transform: translate(-2px);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes rumble {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(2px);
  }
  50% {
    transform: translate(0);
  }
  75% {
    transform: translate(-2px);
  }
  100% {
    transform: translate(0);
  }
}
.fuwafuwa {
  -webkit-animation: 0.5s fuwafuwa linear infinite;
  animation: 0.5s fuwafuwa linear infinite;
}

@-webkit-keyframes fuwafuwa {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes fuwafuwa {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
.yurayura {
  -webkit-animation: 2s yurayura linear infinite;
  animation: 2s yurayura linear infinite;
}

@-webkit-keyframes yurayura {
  0%,
  100% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(-1deg);
  }
}

@keyframes yurayura {
  0%,
  100% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(-1deg);
  }
}
.rotation {
  -webkit-animation: 20s rotation linear infinite;
  animation: 20s rotation linear infinite;
}

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

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

.bounce_active {
  opacity: 1;
  -webkit-animation: bounce 1s ease-in-out 1 forwards 0.3s;
  animation: bounce 1s ease-in-out 1 forwards 0.3s;
}

@-webkit-keyframes bounce {
  0% {
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1, 1) translate(0, 0);
  }
  0%,
  100% {
    opacity: 1;
  }
}

@keyframes bounce {
  0% {
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1, 1) translate(0, 0);
  }
  0%,
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes loop1 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
@keyframes loop1 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
@-webkit-keyframes loop2 {
  0% {
    transform: translate(0, 0);
  }
  zw 100% {
    transform: translate(-100%, 0);
  }
}
@keyframes loop2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
.splash {
  opacity: 1;
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d7f5ff;
}

.splash__logo {
  z-index: 99;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.splash__logo img {
  width: 200px;
}

.pc_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/pc-bg.jpg);
  background-size: cover;
  background-position: center center;
}

/* .pc_bg_left {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(45% - 180px);
  background: url(../images/pc-bg_left.png);
  background-size: cover;
  background-position: center center;
} */

.pc_bg_left .pw-logo {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
}
.pc_bg_left .pw-logo img {
  width: 16.172vw;
}
.pc_bg_left .qr {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  text-align: left;
  margin-right: 2rem;
}
.pc_bg_left .qr img {
  max-width: 100px;
}
.pc_bg_left .qr p {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.5rem;
  color: #1b1b1b;
}
/* .pc_bg_right {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(45% - 180px);
  background: url(../images/pc-bg_right.png);
  background-size: cover;
  background-position: center center;
} */

.zoomin {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 2.3s, transform 2.3s;
}

.zoomin.active {
  opacity: 1;
  transform: scale(1);
}

.content {
  height: auto;
  transition: 0.5s;
  max-width: 480px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  box-shadow: 0px 0px 15px 0px #bfdbe7;
  overflow-x: hidden;
  background: var(--bg-color);
  margin-top: 3.5rem;
  padding: 10px;
  border-radius: 10px;
}

header .main_img {
  position: relative;
  padding: 2rem 2rem 1.5rem;
}
header .main_img .icon_kv_01 {
  position: absolute;
  top: 2rem;
  right: 1rem;
}
header .main_img .icon_kv_01 img {
  aspect-ratio: 69/90;
}
header .main_img .icon_kv_01.bounce_top {
  -webkit-animation: bounce 1s ease-in-out 1 forwards 0.8s;
  animation: bounce 1s ease-in-out 1 forwards 0.8s;
}
header .main_img .kv_title img {
  width: 100%;
}
header .campaign_date {
  position: relative;
}
header .campaign_date .icon_kv_02 {
  position: absolute;
  top: -2rem;
  left: 0.5rem;
}
header .campaign_date .icon_kv_02 img {
  aspect-ratio: 64/66;
}
header .campaign_date .icon_kv_02.bounce_top {
  -webkit-animation: bounce 1s ease-in-out 1 forwards 1s;
  animation: bounce 1s ease-in-out 1 forwards 1s;
}
header .campaign_date .date {
  margin: 0 3.5rem;
}
header .campaign_date .date img {
  width: 100%;
  aspect-ratio: 270/49;
}
header .kv_present {
  margin-top: 1rem;
}
header .kv_present img {
  width: 100%;
}

main {
  position: relative;
  z-index: 1;
}

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

.btn_wrap {
  margin-top: 1.5625rem;
}

.c-btn {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 50rem;
  max-width: 480px;
  min-height: 64px;
  margin: 0 auto;
  background: #ff76a4;
  transition: all 0.5s ease-out;
  line-height: 1.3em;
  margin-bottom: 1.25rem;
}

.c-btn .site_btn {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50rem;
  max-width: 350px;
  min-height: 64px;
  margin: 0 auto;
  background: #0b713e;
  transition: all 0.5s ease-out;
  line-height: 1.3em;
  margin-bottom: 3.75rem;
}

.c-btn:hover {
  background: #ff4482;
}
.c-btn .site_btn:hover {
  background: #97e0dd;
}

.c-btn a {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  min-height: 64px;
  color: #fff;
  padding: 0.5rem;
  transition: 0.7s;
  position: relative;
  z-index: 1;
}

.c-btn a::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 1.5rem;
  top: calc(50% - 4px);
  z-index: 1;
  transition: 0.5s;
}

.c-btn a:hover::before {
  right: 1.2rem;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

.c-btn_blank {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.c-btn_blank a {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  min-height: 64px;
  border-radius: 0.5rem;
  background: var(--bg-color);
  padding: 0.5rem;
  transition: 1s;
  position: relative;
}

.c-btn_blank a span {
  position: relative;
  z-index: 1;
}

.c-btn_blank a::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 0.928955H13.5V13.9804H0.5V0.928955Z" stroke="black"/><path d="M16 2.43631V16.4878H2" stroke="black"/></svg>');
  background-size: 100%;
  position: absolute;
  right: 1rem;
  top: calc(50% - 7px);
  z-index: 1;
  transition: 0.5s;
}

.c-btn_blank a:hover {
  background: #fff;
}

.c-title {
  color: #ff76a4;
  position: relative;
  padding: 0.8rem 1.5rem 0.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.875rem;
  border-bottom: 3px dotted;
}
.c-title::after {
  content: attr(data-text) "";
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
}
.c-title--recipe {
  background: #fff;
  color: var(--primary-color);
}
.c-title--campaign {
  background: #fff;
  color: var(--main-font-color);
}
.c-title--attention {
  background: var(--secondary-color);
  color: var(--main-font-color);
}

.lead {
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  background: #fff;
}

.lead p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}
.lead .note {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.625rem;
}

.wave_1 {
  height: 70px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 70'><path d='M 0 10 Q 8.93 10 17.86 5 Q 35.71 -5 53.57 5 Q 62.5 10 71.43 10 Q 80.36 10 89.29 5 Q 107.14 -5 125 5 Q 133.93 10 142.86 10 Q 151.79 10 160.71 5 Q 178.57 -5 196.43 5 Q 205.36 10 214.29 10 Q 223.21 10 232.14 5 Q 250 -5 267.86 5 Q 276.79 10 285.71 10 Q 294.64 10 303.57 5 Q 321.43 -5 339.29 5 Q 348.21 10 357.14 10 Q 366.07 10 375 5 Q 392.86 -5 410.71 5 Q 419.64 10 428.57 10 Q 437.5 10 446.43 5 Q 464.29 -5 482.14 5 Q 491.07 10 500 10 L 500 70 L 0 70 Z' fill='%23e5f7ff'/></svg>")
    no-repeat center bottom;
  background-size: cover;
}

.wave_2 {
  height: 70px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 70'><path d='M 0 60 Q 8.93 60 17.86 65 Q 35.71 75 53.57 65 Q 62.5 60 71.43 60 Q 80.36 60 89.29 65 Q 107.14 75 125 65 Q 133.93 60 142.86 60 Q 151.79 60 160.71 65 Q 178.57 75 196.43 65 Q 205.36 60 214.29 60 Q 223.21 60 232.14 65 Q 250 75 267.86 65 Q 276.79 60 285.71 60 Q 294.64 60 303.57 65 Q 321.43 75 339.29 65 Q 348.21 60 357.14 60 Q 366.07 60 375 65 Q 392.86 75 410.71 65 Q 419.64 60 428.57 60 Q 437.5 60 446.43 65 Q 464.29 75 482.14 65 Q 491.07 60 500 60 L 500 0 L 0 0 Z' fill='%23e5f7ff'/></svg>")
    no-repeat center bottom;
  background-size: cover;
}

span.marker {
  background: linear-gradient(transparent 50%, #ffef74 0%);
  font-weight: bold;
}

.cp_detail {
  padding: 0rem 1.5rem 0rem 1.5rem;
  background-color: var(--primary-color);
}

.cp_detail ul {
  margin-top: 0.9375rem;
  margin-bottom: 2.5rem;
}

.cp_detail ul li {
  text-indent: -0.5em;
  padding-left: 0.5em;
}

.cp_detail ul li a {
  text-decoration: underline;
}

.cp_detail p a {
  text-decoration: underline;
}

.period {
  margin-bottom: 2.5rem;
}

.method {
  margin-bottom: 2.5rem;
}

strong {
  font-size: 1.125rem;
  color: #ff76a4;
}

.present_wrap {
  background-color: #fffcd6;
  padding: 1.5625rem 0.625rem 1.5625rem 0.625rem;
  border-radius: 10px;
  border: 2px solid #fcdbad;
  margin-bottom: 1.875rem;
}

.fukidashi {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: bold;
}

.fukidashi::before,
.fukidashi::after {
  content: "";
  background-color: #008cd7;
  height: 2px;
  width: 40px;
}
.fukidashi::before {
  margin-right: 5px;
  transform: rotate(60deg);
}
.fukidashi::after {
  margin-left: 5px;
  transform: rotate(-60deg);
}

.present .present_img {
  margin: 0 auto;
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  width: 175px;
}

.present_text {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  text-align: center;
}

.present_text p {
  margin-bottom: 0px;
}

.howto_wrap {
  background-color: #fffcd6;
  padding: 1.875rem 1.25rem 1.875rem 1.25rem;
  border-radius: 10px;
  border: 2px solid #fcdbad;
  margin-bottom: 1.875rem;
  position: relative;
}

.howto_wrap p {
  font-weight: bold;
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.4em;
}

.howto_wrap ul {
  margin-bottom: 0rem;
}

.howto_img_1 {
  max-width: 210px;
  display: block;
  margin: 0 auto;
}

.howto_img_wrap {
  position: relative;
  width: 100%;
  text-align: center;
}

.howto_img_2 {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}

.howto_tag {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  margin: 0 auto;
}

.howto_img_wrap p {
  text-align: left;
}

.icon_step {
  width: 72px;
  position: absolute;
  left: -10px;
  top: -20px;
}

.cp_detail .howto_wrap p {
  margin-bottom: 1.25rem;
}

.howto_list {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
  border: 2px solid #ffb5cc;
  font-size: 0.875rem;
  max-width: 330px;
  margin: 0 auto;
  padding-left: 1.2em;
}

.howto_wrap ul li {
  text-indent: -0.5em;
  padding-left: 0.5em;
}

.completion {
  position: relative;
  width: 100%;
  text-align: center;
}

.completion p {
  border-top: 3px dotted #008cd7;
  border-bottom: 3px dotted #008cd7;
  padding: 5px;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: var(--font-zenmaru);
  text-align: center;
}

.completion_icon {
  width: 65px;
  position: absolute;
  left: 50%;
  transform: translate(-180%, -33%);
  transform-origin: center;
}

.completion_text {
  position: relative;
  left: 20px;
}

.point {
  padding: 3.75rem 1.5rem 2.5rem 1.5rem;
}

.point_text {
  display: flex;
  border-bottom: 3px dotted #008cd7;
}

.point_text:nth-child(3) {
  border-bottom: none;
}

.point_text p {
  margin: 0.9375rem 0;
}

.point_wrap {
  margin-bottom: 2.5rem;
}

.point_wrap img {
  width: 48px;
  margin-right: 15px;
}

.topic {
  padding: 3.75rem 1.5rem 3.125rem 1.5rem;
  --bg-color: #fff;
}

.topic img {
  margin-top: 0.625rem;
}

.topic p {
  margin-top: 1.875rem;
}

.topic h2 {
  line-height: 1.3em;
  padding: 8px;
  font-size: 1.375rem;
  font-family: var(--font-zenmaru);
  letter-spacing: -0.01em;
}

.info {
  padding: 0rem 1.5rem;
  background-color: var(--primary-color);
  font-family: var(--font-zenmaru);
  letter-spacing: -0.01em;
}

.info h2 {
  line-height: 1.3em;
  padding: 8px;
  font-size: 1.375rem;
  font-family: var(--font-zenmaru);
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}

.info img {
  margin-top: 1.875rem;
  border-radius: 10px;
  box-shadow: 5px 5px 8px #bfdbe7;
}

.info .balloon.first {
  margin-top: 1rem;
}

.info .balloon {
  margin-top: 2rem;
}

.app_info {
  padding: 3.75rem 1.5rem 0rem 1.5rem;
  --bg-color: #fff;
}

.app_info h2 {
  font-family: var(--font-zenmaru);
  letter-spacing: -0.05em;
  border-top: 3px dotted #008cd7;
  border-bottom: 3px dotted #008cd7;
  padding: 10px;
  background: #fff;
  padding: 0px;
  border-radius: 0px;
  box-shadow: none;
  outline: none;
  background-color: none;
  color: none;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  padding: 6px;
}

.li-app {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 90%;
  margin: 0 auto;
}
.li-app li {
  min-height: 46px;
}

.about {
  background-color: #008cd7;
  padding: 4rem 1.25rem 1.5rem 1.25rem;
}

.note_about {
  font-family: var(--font-noto-sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  font-weight: bold;
}

.about_head {
  display: flex;
  align-items: center;
  height: 50px;
}

.about img {
  margin-top: 1.25rem;
}

.about .lead,
.about .desc {
  color: #fff;
}
.about .lead {
  text-align: center;
  padding: 0;
}
.about .lead span {
  display: inline;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  border-bottom: dashed 1px;
  padding: 0 0 4px;
}
.about .desc {
  margin: 1.5rem 0 3.5rem;
}

.about .feature_h3 {
  color: var(--bg-color);
  position: relative;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 2rem;
}

.about .feature_h3 span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  font-weight: bold;
  border: 1px solid;
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
}
.about .feature_h3::before,
.about .feature_h3::after {
  content: "";
  height: 1px;
  width: 100%;
  background: var(--bg-color);
  display: inline-block;
}

.feature_list {
  display: grid;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.feature_list .feature {
  background: var(--bg-color);
  border-radius: 0.5rem;
}
.feature_list .feature .feature_title {
  display: grid;
  grid-template-columns: auto 1fr;
}
.feature_list .feature .feature_title .feature_number {
  font-family: var(--font-roboto);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--bg-color);
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 73px;
  height: 73px;
  border-radius: 0.5rem 0 0.5rem 0;
}
.feature_list .feature .feature_title .title {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--primary-color);
  padding: 1rem 1.5rem;
}
.feature_list .feature .feature_text {
  position: relative;
  min-height: 110px;
  padding: 0 1rem 1.5rem 97px;
}
.feature_list .feature .feature_text .feature_icon {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
}

.osusume {
  border-radius: 0.5rem;
  padding: 1rem;
  background-color: #fff;
  font-weight: bold;
}
.osusume h3 {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  border-bottom: 1px solid;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.osusume .copy {
  text-align: center;
  line-height: 1.5;
  margin: 1.5rem auto 1rem;
  font-size: 0.8125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 1rem;
  align-items: center;
  position: relative;
}
.osusume .copy::before,
.osusume .copy::after {
  content: "";
  width: 1px;
  height: 40px;
  display: inline-block;
  background: var(--bg-color);
}
.osusume .copy::before {
  rotate: -15deg;
}
.osusume .copy::after {
  rotate: 15deg;
}

.howto h2 {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.howto h2::before {
  content: "";
  width: 20px;
  height: 35px;
  display: inline-block;
  background: url(../images/icon_water.svg);
  background-size: cover;
}
.howto .insert_img {
  margin-top: 1.5rem;
}
.howto .insert_img img {
  border-radius: 0.5rem;
}

.recipe {
  background: #fff;
  padding: 2rem 1.5rem 7rem;
}
.recipe .recipe_list {
  display: grid;
  gap: 1.5rem;
}
.recipe .recipe_list li {
  background: var(--bg-color);
  border-radius: 0.5rem;
}
.recipe .recipe_list li figure img {
  border-radius: 0.5rem 0.5rem 0 0;
}
.recipe .recipe_list li .detail {
  padding: 1.5rem 1rem;
  display: grid;
  gap: 1rem;
}
.recipe .recipe_list li .detail h3 {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  color: var(--primary-color);
  font-weight: bold;
  margin: 0 auto;
  line-height: 1;
  padding: 0.7rem 1rem;
  border-radius: 2rem;
}
.recipe .recipe_list li .detail .howto_recipe {
  font-size: 0.75rem;
  display: grid;
  gap: 1rem;
}
.recipe .recipe_list li .detail .howto_recipe .title {
  font-weight: bold;
  line-height: 1;
  padding: 0.5rem 1rem;
  border: 1px solid;
  border-radius: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.recipe .recipe_list li .detail .howto_recipe ol li {
  list-style: decimal;
  margin-left: 1rem;
}

.campaign {
  padding: 2.5rem 1.25rem 3.75rem 1.25rem;
}

.campaign h3 {
  padding: 0.5rem 1rem;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #e2faef;
}
.campaign h3:not(:first-of-type) {
  margin-top: 2rem;
}

.campaign p {
  letter-spacing: 0;
  margin: 1rem 0 0;
}

.campaign p:nth-of-type(3) {
  margin-top: 5px;
  font-family: var(--font-noto-sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0;
  display: inline-block;
}

.campaign p:nth-of-type(5) {
  margin-top: 5px;
  font-family: var(--font-noto-sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0;
  display: inline-block;
}

.campaign p:nth-of-type(9) {
  margin-top: 5px;
  font-family: var(--font-noto-sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0;
  display: inline-block;
  line-height: 1.7em;
}

.campaign .info-confirm {
  margin-top: 2rem;
  padding: 1rem;
  background: #e2faef;
  border-radius: 0.5rem;
}
.campaign .info-confirm h3 {
  font-size: 0.8125rem;
  margin: 0 auto 0.5rem;
  border: none;
}
.campaign .info-confirm ol li {
  list-style: decimal;
  margin-left: 1.5rem;
}

.attention {
  padding: 2.5rem 1.25rem 1.25rem 1.25rem;
  --bg-color: #fff;
}

.attention a {
  text-decoration: underline;
}

.attention h2 {
  font-family: var(--font-zenmaru);
  border-top: 3px dotted #008cd7;
  border-bottom: 3px dotted #008cd7;
  padding: 10px;
  background: #fff;
  padding: 0px;
  border-radius: 0px;
  box-shadow: none;
  outline: none;
  background-color: none;
  color: none;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  padding: 6px;
}

.attention h3 {
  text-align: center;
  font-size: 1rem;
}

.attention ul {
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
}
.attention ul li {
  font-size: 0.875rem;
  line-height: 1.5;
  position: relative;
  list-style: none;
  padding-left: 1.2em;
  margin-bottom: 0.9375rem;
}

.attention ul li::before {
  content: "※";
  position: absolute;
  left: 0;
}

.attention .prohibitions li:nth-child(n + 2)::before {
  content: "・";
}

footer {
  padding: 0rem 0rem 3.75rem 0rem;
}
footer .organizer {
  font-weight: 700;
  text-align: center;
}

footer .sns {
  margin: 2.5rem 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
footer .copyright {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}

footer p {
  text-align: center;
}

footer .center {
  margin-bottom: 1.25rem;
}

.footer_link {
  margin-bottom: 2.5rem;
}

.organizer {
  text-align: center;
  margin-top: 2.5rem;
}

.contentArea {
  padding: 0.5rem 25px calc(8% + 2rem);
  margin: 0 auto;
  position: relative;
}

.texttitle {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-main);
  text-align: center;
  margin-bottom: 1.875rem;
}

.center {
  text-align: center;
}

.sns {
  display: flex;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  margin: 4rem auto 3rem;
  padding: 0;
}

.inquiry {
  display: flex;
  width: auto;
  flex-direction: column;
  flex-basis: auto;
  gap: 5px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 0.625rem;
}

.inquiry li {
  width: calc(4rem + 11em);
  margin: auto;
  background: var(--secondary-color);
  border-radius: 5px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.inquiry li a {
  display: block;
  color: var(--color-maintext);
  text-decoration: none;
  padding: 0.5rem 0.5rem 0.5rem 3.6rem;
  box-sizing: border-box;
  position: relative;
}
.inquiry .tel a::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url(../images/icon-tel.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.inquiry .mail a::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url(../images/icon-mail.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.inquiry .tel a::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url(../images/icon-tel.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.inquiry .mail a::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url(../images/icon-mail.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.about .about_wrap {
  margin-bottom: 5rem;
}

.about_wrap h2 {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.4;
  background: #8b8258;
  padding: 8px;
  clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
  margin-bottom: 2rem;
}

h2 {
  position: relative;
  padding: 2px;
  border-radius: 5px;
  box-shadow: 7px 7px #e5f7ff, 7px 7px 0 2px #008cd7;
  outline: 2px solid #008cd7;
  background-color: #fefefe;
  color: #008cd7;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.875rem;
  font-family: var(--font-zenmaru);
}

.about_wrap ul li {
  counter-increment: count;
  border-radius: 10px;
  padding: 2rem 1.25rem;
  position: relative;
  margin-bottom: 1.875rem;
  background: #fff;
}
.about_wrap ul li:last-child {
  margin-bottom: 0;
}
.about_wrap ul li .about_wrap_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 90px;
  margin: 0 auto 15px;
}

.about_wrap ul li h3 {
  font-size: 1rem;
  line-height: 1.5em;
  width: 100%;
  padding-left: 65px;
  font-weight: bold;
}

.about_wrap ul li .about_maru {
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 20px;
  top: 30px;
  width: 54px;
  height: 54px;
  line-height: 1.4;
  background-position: 0 0;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--main-font-color);
}

.about_wrap ul li .about_maru .about_point {
  font-size: 0.625rem;
  font-weight: bold;
  display: block;
  margin-top: 0.4rem;
}

.about_wrap ul li .about_maru .about_number {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  font-family: var(--font-en);
  margin-top: -0.1rem;
  margin-left: 0.2rem;
}

.about_wrap ul li .about_text p {
  color: var(--main-font-color);
  font-weight: normal;
  font-size: 0.875rem;
  margin-top: 1.25rem;
}

.about_wrap ul li .about_text .note {
  font-size: 0.625rem;
  margin-top: 0.625rem;
}

.about_note {
  font-family: var(--font-noto-sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0;
  display: inline-block;
  line-height: 1.5em;
}

.about_text span {
  margin-top: 0.625rem;
}

.kouka p:nth-of-type(1) {
  border-bottom: 1px solid;
  text-align: center;
  padding-bottom: 4px;
}

.about_wrap ul li .about_text .kouka p:nth-of-type(2) {
  margin-top: 0.625rem;
}

.content_text_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 0px 6px;
  margin: 0 auto;
  margin-top: 15px;
  word-break: keep-all;
  letter-spacing: 0.05em;
}

.product {
  padding: 1.25rem 1.25rem;
}

.product_wrap_01 {
  background-color: var(--secondary-color);
  border-radius: 10px;
}

.product_wrap_02 {
  background-color: #e9f8ee;
  border-radius: 10px;
  margin-top: 3.75rem;
}

.product_content {
  padding: 1.25rem 1.25rem 1.875rem 1.25rem;
}

.product_title {
  background-color: #f8df54;
  padding: 0.4rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: 10px 10px 0px 0px;
}

.product_wrap_02 .product_title {
  background-color: #97e0dd;
}

.product_content_text {
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
  margin-bottom: 0.3125rem;
  line-height: 1.6em;
}

.kaori_01 {
  color: #e67606;
  line-height: 1.5em;
  margin-top: 0.625rem;
}

.kaori_02 {
  color: #1a806c;
  line-height: 1.5em;
  margin-top: 0.625rem;
}

.osusume {
  margin-top: 1.25rem;
}

.osusume h4 {
  border-bottom: 1px solid;
  text-align: center;
  padding-bottom: 0.2rem;
}
.osusume ul {
  margin-top: 0.625rem;
}

.chart_img {
  margin-top: 1.25rem;
}

.hydration_title_wrap {
  position: relative;
}

.hydration_title {
  position: absolute;
  padding: 2.5rem 1.5rem;
  font-size: 1.125rem;
  font-weight: bold;
}

.hydration {
  padding-bottom: 3.75rem;
  background: var(--primary-color);
}

.hydration_text {
  padding: 2rem 1.5rem 0rem 1.5rem;
}

.hydration_note {
  font-size: 12px;
}

.end-btn {
  font-size: 1rem;
  font-weight: 700;
  min-height: 64px;
  background: darkgrey;
  color: #fff;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
  border-radius: 50px;
}

.hydration .end-btn {
  font-size: 1rem;
  font-weight: 700;
  max-width: 340px;
  min-height: 64px;
  background: darkgrey;
  color: #fff;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
  border-radius: 50px;
}

.slider {
  display: block;
  width: 100%;
  margin-top: 1.875rem;
  margin-bottom: 1rem;
}

.slider img {
  width: 90%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  margin: auto;
  padding: 6px;
}

.point .btn_wrap {
  margin-top: 2.5rem;
}

.balloon {
  position: relative;
  width: 100;
  margin: 0 auto;
  padding: 6px;
  background: #008cd7;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.05em;
  font-family: var(--font-zenmaru);
  letter-spacing: -0.02em;
}

.balloon::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  margin-left: -10px;
  border-width: 12px 10px 0;
  border-style: solid;
  border-color: transparent;
  border-top-color: #008cd7;
}

.balloon_2 {
  position: relative;
  background: #ffffff;
  border: 2px solid #ffb5cc;
  font-size: 17px;
  text-align: center;
  margin-top: 5px;
  padding: 6px;
  border-radius: 50px;
  color: #008cd7;
  font-weight: bold;
  max-width: 300px;
  margin: 0 auto;
}

.balloon_2:after,
.balloon_2:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.balloon_2:after {
  border-top-color: #ffffff;
  border-width: 9px;
  margin-left: -9px;
}

.balloon_2:before {
  border-top-color: #ffb5cc;
  border-width: 12px;
  margin-left: -12px;
}

.period p {
  margin-bottom: 1.875rem;
}

@media screen and (min-width: 600px) {
  .inquiry .tel {
    pointer-events: none;
  }
}

@media screen and (max-width: 896px) {
  .pc_bg_left,
  .pc_bg_right {
    display: none;
  }
  header .main_img {
    padding-bottom: 6.154vw;
  }
  header .main_img .icon_kv_01 img {
    width: 17.692vw;
  }
  header .campaign_date .icon_kv_02 img {
    width: 16.41vw;
  }
  header .campaign_date .date {
    text-align: center;
  }
  header .campaign_date .date img {
    width: 69.231vw;
  }
  .content {
    margin: 0 auto auto 0;
    width: 100%;
    max-width: 100%;
    position: relative;
    top: auto;
    left: unset;
    transform: unset;
  }
  .content::after {
    width: 100%;
  }
  .present .ribbon {
    max-width: 78.462vw;
  }
  .present .present_point {
    max-width: 85.128vw;
  }
}
@media screen and (max-width: 599px) {
  .sp-only {
    display: block;
  }
  .pc_bg {
    display: none;
  }
  main {
    margin: 0;
  }
  .kv img {
    border-radius: 0px;
  }
  .content {
    padding: 0px;
    border-radius: 0px;
  }
}
/*# sourceMappingURL=style.css.map */
