@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100..900&display=swap");
/* mixin setting */
:root {
  --primary-color: #ebf7ff;
  --secondary-color: #fff4d5;
  --bg-color: #fff;
  --main-font-color: #0e3b9f;
  --font-defalt: "Noto Sans JP", sans-serif;
  --font-lato: "Lato", sans-serif;
  --font-roboto: "roboto", 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);
  font-family: var(--font-lato);
  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;
}

.note_btn {
  font-family: var(--font-noto-sans);
  font-size: 0.75rem;
  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-top: 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 1.2s;
  transform: translateY(1.5rem);
}

.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);
  }
}

.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.985, 0.94) translate(0, 3px);
  }
  30% {
    transform: scale(1.015, 1) translate(0, 6px);
  }
  50% {
    transform: scale(0.985, 1.03) translate(0, -6px);
  }
  70% {
    transform: scale(1, 0.94) translate(0, 3px);
  }
  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.985, 0.94) translate(0, 3px);
  }
  30% {
    transform: scale(1.015, 1) translate(0, 6px);
  }
  50% {
    transform: scale(0.985, 1.03) translate(0, -6px);
  }
  70% {
    transform: scale(1, 0.94) translate(0, 3px);
  }
  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: linear-gradient(180deg, rgb(161, 229, 213) 0%, rgb(172, 229, 218) 35%, rgb(252, 217, 128) 100%); */
  background-color: #cae4fe;
}

.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) no-repeat center center;
  background-size: cover;
}
.pc_bg__left {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(50% - 207px);
  background: url(../images/pc-bg_left.jpg);
  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 .qr {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  text-align: left;
  margin-right: 2rem;
}
.pc_bg .qr img {
  max-width: 100px;
}

.pc_bg .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(50% - 207px);
  background: url(../images/pc-bg_right.png) no-repeat center center;
  background-size: contain;
}

.content {
  height: auto;
  transition: 0.5s;
  max-width: 520px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  box-shadow: 0px 0px 20px 0px rgba(6, 131, 226, 0.3);
  overflow-x: hidden;
  background: var(--bg-color);
  border-radius: 2.5rem 2.5rem 0rem 0rem;
  padding: 0.9375rem;
}

.content-wrapper {
  margin-top: 2.5rem;
}

header .main_img {
  position: relative;
  padding: 2rem 2rem 1.5rem;
}

.fuwafuwa {
  -webkit-animation: 2.2s fuwafuwa infinite;
  animation: 2.2s fuwafuwa infinite;
}

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

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

.kv-area {
  position: relative;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}

.kv-wrap {
  position: relative;
  width: 100%;
}

.kv img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px 20px 0px 0px;
}

.sub_copy {
  position: absolute;
  top: 29%;
  left: 72%;
  width: 23vw;
  max-width: 115px;
  transform: translate(-50%, -50%);
}
.sub_copy img {
  width: 100%;
  height: auto;
}

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;
}

.c-btn {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50rem;
  max-width: 520px;
  min-height: 64px;
  margin: 0 auto;
  background: #ea7510;
  transition: all 0.5s ease-out;
}

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

.c-btn:hover {
  background: #f8cb00;
}
.c-btn .site_btn:hover {
  background: #2c9658;
}
.c-btn .pw_site_btn:hover {
  background: #00a1f2;
}

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

.c-btn a {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  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 {
  color: #fff;
}

.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: 520px;
  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-title {
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 2px dashed #0e3b9f;
  border-bottom: 2px dashed #0e3b9f;
  font-size: 1.75rem;
  font-weight: bold;
  padding: 0.375rem;
  margin-bottom: 2.5rem;
}

.c-title::after {
  content: attr(data-text) "";
  display: block;
  font-family: var(--font-en);
  font-size: 1rem;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-top: -0.5rem;
}

.c-title--recipe {
  background: #fff;
  color: var(--primary-color);
}
.c-title--campaign {
  background-color: var(--secondary-color);
  color: var(--main-font-color);
}
.c-title--attention {
  background: var(--primary-color);
  color: var(--main-font-color);
}

.lead {
  padding: 2.5rem 1.5rem 3.75rem 1.5rem;
  background: var(--primary-color);
}

.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;
}

.btn_wrap {
  margin-top: 2.5rem;
}

.present {
  padding: 3.75rem 1.25rem 3.75rem 1.25rem;
  background-color: var(--secondary-color);
}
.present .ribbon {
  max-width: 306px;
  margin: 0 auto;
}
.present .ribbon img {
  width: 100%;
}
.present .present_point {
  margin: 1rem auto 0;
}
.present .present_point img {
  width: 100%;
  aspect-ratio: 332/75;
}

.present_wrap {
  padding: 0rem 1.25rem 0rem 1.25rem;
}
.present_img {
  border-radius: 20px;
  background-color: #fff;
  text-align: center;
  padding: 1.875rem;
}

.present_img_bowl img {
  width: 20%;
}

.present_img img {
  width: 75%;
  display: block;
  margin: 0 auto;
  margin-bottom: 0.9375rem;
}

.present_img .present_img_bowl {
  width: 60%;
}

.present_name {
  color: var(--main-font-color);
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5em;
  margin-bottom: 3px;
}

.present_title {
  color: var(--main-font-color);
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-bottom: 3px;
  text-align: center;
  margin-top: 0.9375rem;
}

.present_quantity {
  color: #ef7342;
  font-weight: bold;
  font-size: 1.125rem;
  margin-top: 5px;
}

.present_quantity_note {
  font-size: 0.875rem;
}

.plus img {
  width: 15%;
  display: block;
  margin: 0 auto;
  margin-top: 1.25rem;
  margin-bottom: 0.9375rem;
}
.about {
  background-color: var(--primary-color);
  padding: 4rem 1.25rem 3.75rem 1.25rem;
}

.balloon {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 4px;
  background: #00b1a3;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  margin-top: 1.5625rem;
  font-weight: bold;
}

.balloon::before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  margin-left: -14px;
  border: 14px solid transparent;
  border-top-color: #00b1a3;
}

.fukidashi_wrap .point_img_wrap img {
  margin-top: 0.9375rem;
}

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

.point_img_wrap {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
}

.point_img_wrap img {
  width: 48%;
}

.point_01_img_wrap {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

.point_01_img_wrap img {
  width: 150px;
}

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

.point_3 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
}

.point_3 h3 {
  letter-spacing: 0.06em;
}

.about_label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -3.5rem;
}

.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%);
}

.howto {
  padding: 3.5rem 1.5rem;
}
.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: 3.75rem 1.25rem 3.75rem 1.25rem;
  background-color: var(--secondary-color);
}

.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: #fff;
}
.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: 2px;
  font-family: var(--font-noto-sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0;
  display: inline-block;
}

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

.campaign .info-confirm {
  margin-top: 2rem;
  padding: 1rem;
  background: #fff;
  border-radius: 1.25rem;
}

.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: 3.75rem 1.25rem 3.75rem 1.25rem;
  background-color: var(--primary-color);
}

.attention ul {
  margin: 2rem 0 0;
}
.attention ul li {
  font-size: 0.75rem;
  line-height: 1.5;
  position: relative;
}
.attention ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.attention ul li::before {
  content: "※";
  display: inline-block;
}
.attention ul li a {
  text-decoration: underline;
}
.attention ul li ol {
  margin: 0.5rem 1rem 0;
}
.attention ul li ol li::before {
  content: none;
}
.attention ul li ol li:not(:last-child) {
  margin-bottom: 0.2rem;
}

footer {
  background-color: var(--primary-color);
  padding-bottom: 2.5rem;
}
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;
}

/* .end-btn {
  padding: 1.2rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.5rem;
  max-width: 360px;
  min-height: 64px;
  margin: 0 auto;
  background-color: darkgrey;
  color: #fff;
} */

.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-top: 3.5rem;
}

.about img {
  border-radius: 20px;
}

.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;
}

.about_wrap ul li {
  counter-increment: count;
  border-radius: 20px;
  padding: 2rem 1.25rem;
  position: relative;
  margin-bottom: 4rem;
  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: 1.25rem;
  line-height: 1.5em;
  width: 100%;
  font-weight: bold;
  text-align: center;
  margin-top: 1.5rem;
}

.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_wrap ul img {
  margin-top: 1.25rem;
}

.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;
}

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

.recommend {
  padding: 3.75rem 1.25rem 3.75rem 1.25rem;
  background-color: #e8f8dc;
  color: #6e4b2d;
}

.logo {
  display: block;
  margin: 0 auto;
  width: 40%;
  margin-bottom: 2.5rem;
}

.recommend p {
  margin-top: 1.25rem;
}

.recommend h3 {
  background-color: #6e4b2d;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0.6rem;
  border-radius: 1.25rem 1.25rem 0rem 0rem;
}

.recommend h4 {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-align: center;
  background-image: linear-gradient(to right, #6e4b2d 6px, transparent 6px);
  background-size: 10px 1.5px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 0.4rem;
}

.recommend img {
  border-radius: 1.25rem;
}

.recommend_wrap {
  padding: 1.875rem 1.25rem 1.875rem 1.25rem;
  background-color: #fff;
  border-radius: 0rem 0rem 1.25rem 1.25rem;
}

.recommend_inner {
  background-color: #f5f5f5;
  padding: 1.875rem 1.25rem;
  border-radius: 1.25rem;
  margin-top: 1.875rem;
}

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

.point {
  background-color: var(--primary-color);
  padding: 3.75rem 1.25rem 3.75rem 1.25rem;
}

.point_wrap {
  border-radius: 1.25rem;
  padding: 1.875rem 1.25rem;
  background-color: #fff;
}

.ice_img {
  display: block;
  margin: 0 auto;
  margin-left: -6px;
}

.point h3 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5em;
  margin-top: 0.9375rem;
  margin-bottom: 1.25rem;
}

.point_heading {
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, #0e3b9f 6px, transparent 6px);
  background-size: 10px 1.5px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 0.625rem;
  margin-bottom: 0.625rem;
}

.point_heading img {
  width: 43px;
}

.point_heading h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-left: 0.9375rem;
  margin-top: 0.5rem;
}

.point .point_text_wrap:nth-of-type(1) {
  margin-bottom: 1.25rem;
}

.point .c-title {
  font-size: 1.375rem;
}

.campaign .c-title {
  font-size: 1.375rem;
}

.attention .c-title {
  font-size: 1.375rem;
}

.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;
}

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

  .content {
    margin: 0;
    margin-left: auto;
    margin-right: 100px;
  }

  .point_1_img {
    display: flex;
    width: 150px;
    gap: 0.625rem;
    justify-content: center;
    margin: 0 auto;
  }

  .fukidashi_wrap {
    width: 90%;
    margin: 0 auto;
  }
}

@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;
  }

  .content-wrapper {
    margin-top: 0px;
  }

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

  .content {
    border-radius: 0px;
    padding: 0rem;
  }

  .pc_bg {
    display: none;
  }

  .kv-area {
    max-width: 100%;
  }

  .sub_copy {
    max-width: 180px;
  }
}

@media screen and (max-width: 599px) {
  .sp-only {
    display: block;
  }
  .pc_bg {
    display: none;
  }
  main {
    margin: 0;
  }
}

/*# sourceMappingURL=style.css.map */
