@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
html {
  font-size: 2.1333333333vw;
}
@media screen and (min-width: 751px) {
  html {
    font-size: 1.4897579143vw;
  }
}
@media (min-width: 1074px) {
  html {
    font-size: 100%;
  }
}

body {
  color: #333;
  font-family: "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 751px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 751px) {
  .l-inner {
    max-width: 1074px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.c-balloon {
  padding: 1.875rem 0.5rem 1.1875rem;
  border-radius: 50%;
  width: 11.3125rem;
  height: auto;
  aspect-ratio: 1;
  background-color: #DE8344;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 751px) {
  .c-balloon {
    width: 7.375rem;
    padding: 1.1875rem 0.25rem;
  }
}
.c-balloon::after {
  content: "";
  display: block;
  width: 3.375rem;
  height: 3.375rem;
  background-color: #DE8344;
  position: absolute;
  bottom: -1.375rem;
  left: 50%;
  translate: -50% 0;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: -1;
}
@media screen and (min-width: 751px) {
  .c-balloon::after {
    width: 2.1875rem;
    height: 2.6875rem;
    bottom: -0.875rem;
  }
}
.c-balloon.--blue {
  background-color: #6A99D0;
}
.c-balloon.--blue::after {
  background-color: #6A99D0;
}
.c-balloon.--lightgreen {
  background-color: #BFECC8;
}
.c-balloon.--lightgreen::after {
  background-color: #BFECC8;
}
.c-balloon.--darkgreen {
  background-color: #8DD2BF;
}
.c-balloon.--darkgreen::after {
  background-color: #8DD2BF;
}
.c-balloon.--sm {
  width: 7rem;
}
@media screen and (min-width: 751px) {
  .c-balloon.--sm {
    width: 3.3125rem;
    padding: 0;
    display: grid;
    place-content: center;
  }
}
.c-balloon.--sm::after {
  width: 2.0625rem;
  height: 2.625rem;
  bottom: -0.875rem;
}
@media screen and (min-width: 751px) {
  .c-balloon.--sm::after {
    width: 0.9375rem;
    height: 1.125rem;
    bottom: auto;
    bottom: initial;
    left: auto;
    left: initial;
    right: -0.375rem;
    top: 50%;
    translate: 0 -50%;
    rotate: -90deg;
  }
}
@media screen and (min-width: 751px) {
  .c-balloon.--sm .c-balloon__text {
    font-size: 0.875rem;
    margin: 0;
  }
}
.c-balloon.--textBlack .c-balloon__text {
  color: #333;
}

.c-balloon__img {
  width: 5rem;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  .c-balloon__img {
    width: 3.25rem;
    height: 1.9375rem;
  }
}

.c-balloon__text {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (min-width: 751px) {
  .c-balloon__text {
    font-size: 1.1875rem;
    margin-top: 0.375rem;
  }
}
.c-balloon__text .u-sm {
  font-size: 1.5rem;
}
@media screen and (min-width: 751px) {
  .c-balloon__text .u-sm {
    font-size: 0.9375rem;
  }
}

.c-btn1 {
  font-size: 2.875rem;
  font-weight: 900;
  line-height: 1.1739130435;
  letter-spacing: 0.05em;
  background-color: #D00F31;
  color: #fff;
  padding: 1.375rem;
  border-radius: 100vmax;
  display: inline-block;
  min-width: 32.4375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  -webkit-box-shadow: 0.5rem 0.5rem 0.875rem #cccccc;
          box-shadow: 0.5rem 0.5rem 0.875rem #cccccc;
}
@media screen and (min-width: 751px) {
  .c-btn1 {
    font-size: 2rem;
    min-width: 24.6875rem;
    padding: 0.875rem;
  }
}
.c-btn1 .sm {
  font-size: 2.25rem;
}
@media screen and (min-width: 751px) {
  .c-btn1 .sm {
    font-size: 1.5625rem;
  }
}

.c-btn1.--sm {
  font-size: 1.3125rem;
  line-height: 1.2;
  min-width: 15.625rem;
  padding: 0.75rem;
}
@media screen and (min-width: 751px) {
  .c-btn1.--sm {
    font-size: 1.75rem;
    line-height: 1.1428571429;
    min-width: 21.0625rem;
    padding: 1.0625rem;
  }
}

.c-note {
  font-size: 1.25rem;
  line-height: 1.45;
  margin-top: 1.875rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 751px) {
  .c-note {
    font-size: 0.875rem;
    margin-top: 0.9375rem;
  }
}
.c-note + .c-note {
  margin-top: 0.625rem;
}

.c-note.--indent {
  text-indent: -1.7em;
  padding-left: 1.7em;
}

@media screen and (min-width: 751px) {
  .c-note.--pcCenter {
    text-align: center;
  }
}

.c-pagetop {
  position: sticky;
  bottom: 2.5rem;
  z-index: 1;
  padding-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .c-pagetop {
    padding-top: 1.25rem;
  }
}
.c-pagetop a {
  background-color: #009682;
  width: 5.25rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: 0.625rem;
}
@media screen and (min-width: 751px) {
  .c-pagetop a {
    width: 3.1875rem;
  }
}
.c-pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.625rem;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1.625rem;
  height: 1.625rem;
  rotate: 45deg;
  -webkit-transition: translate 0.3s;
  transition: translate 0.3s;
  border-left: 0.0625rem solid #fff;
  border-top: 0.0625rem solid #fff;
}
@media screen and (min-width: 751px) {
  .c-pagetop a::before {
    width: 0.8125rem;
    height: 0.8125rem;
    border-width: 0.125rem;
    top: 0.3125rem;
  }
}
@media (any-hover: hover) {
  .c-pagetop a:hover {
    opacity: 1;
  }
  .c-pagetop a:hover::before {
    translate: 0 -0.1875rem;
  }
}

.c-text {
  font-size: 1.875rem;
  line-height: 1.4333333333;
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .c-text {
    font-size: 1.25rem;
    margin-top: 0.875rem;
  }
}
.c-text .sm {
  font-size: 1rem;
}
.c-text.--pink {
  font-size: 2rem;
  color: #D65A6F;
  font-weight: 900;
}
@media screen and (min-width: 751px) {
  .c-text.--pink {
    font-size: 1.25rem;
    text-align: center;
    margin-top: 0.8125rem;
  }
}

.c-title1 {
  font-size: 3.125rem;
  font-weight: 900;
  line-height: 1.44;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  padding: 1.5625rem;
  background-color: #009682;
}
.c-title1 .u-sm {
  font-size: 2.25rem;
}
.c-title1.--fz46 {
  font-size: 2.875rem;
  letter-spacing: 0;
}

.c-title2 {
  padding: 1.9375rem;
  position: relative;
}
@media screen and (min-width: 751px) {
  .c-title2 {
    padding: 1.375rem;
  }
}
.c-title2::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  pointer-events: none;
}

.c-title2__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-title2__main {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 0.25rem 0.25rem #000;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .c-title2__main {
    font-size: 1.75rem;
  }
}
.c-title2__main .u-sm {
  font-size: 2rem;
}
@media screen and (min-width: 751px) {
  .c-title2__main .u-sm {
    font-size: 1.375rem;
  }
}

.p-buy {
  margin-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 751px) {
  .p-buy {
    margin-top: 0;
    padding-bottom: 6.25rem;
  }
}

.p-buy__inner {
  padding: 0 2.375rem;
}
@media screen and (min-width: 751px) {
  .p-buy__inner {
    padding: 0 1.5625rem;
    max-width: 53.375rem;
  }
}

@media screen and (min-width: 751px) {
  .p-buy__title {
    font-size: 2.875rem;
  }
}
.p-buy__title .u-sm {
  font-size: 2.125rem;
}

/* タブ */
.p-buy__tabList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5625rem;
  margin-top: 4.375rem;
}
@media screen and (min-width: 751px) {
  .p-buy__tabList {
    gap: 0.75rem;
    margin-top: 2.75rem;
  }
}

.p-buy__tabItem {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.4444444444;
  padding: 0.25rem 0.625rem;
  border-radius: 1.875rem 1.875rem 0 0;
  background-color: #969696;
  color: #fff;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
@media screen and (min-width: 751px) {
  .p-buy__tabItem {
    font-size: 1.75rem;
    border-radius: 1.5rem 1.5rem 0 0;
  }
}
.p-buy__tabItem.is-active {
  background-color: #D65A6F;
}

/* パネル */
.p-buy__panelList {
  background-color: #fff;
  border: 0.5625rem solid #D65A6F;
}
@media screen and (min-width: 751px) {
  .p-buy__panelList {
    border-width: 0.4375rem;
  }
}

.p-buy__panelItem {
  display: none;
  width: 100%;
}

.p-buy__panelItem.is-active {
  display: block;
  -webkit-animation: panel-show 0.9s ease-in-out forwards;
          animation: panel-show 0.9s ease-in-out forwards;
}

/* コンテンツ */
.p-buy__contents {
  counter-reset: num;
}

.p-buy__contentItem {
  font-size: 1.875rem;
  line-height: 1.4333333333;
  display: grid;
  grid-template-columns: 60fr 100fr 297fr 203fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-increment: num;
  min-height: 5rem;
}
@media screen and (min-width: 751px) {
  .p-buy__contentItem {
    font-size: 1.5rem;
    grid-template-columns: 60fr 120fr 461fr 149fr;
    min-height: 4rem;
  }
}
.p-buy__contentItem::before {
  content: counter(num);
  font-weight: bold;
  display: grid;
  place-items: center;
}

.p-buy__contentItem:nth-child(even) {
  background-color: #f1f0ef;
}

.p-buy__contentItem > * {
  padding: 0 0.8125rem;
}

.p-buy__name.--sm {
  font-size: 1.5rem;
  line-height: 1.1666666667;
}
@media screen and (min-width: 751px) {
  .p-buy__name.--sm {
    font-size: 1.25rem;
  }
}
.p-buy__name.--xsm {
  font-size: 1.25rem;
  line-height: 1.2;
}

.p-buy__price {
  display: grid;
  justify-self: flex-end;
}

/* パネル切り替えのアニメーション */
@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-buy__note {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #000;
  text-indent: -1em;
  padding-left: 1em;
  margin: 1.875rem 0.75rem 0;
}
@media screen and (min-width: 751px) {
  .p-buy__note {
    font-size: 1rem;
    margin-top: 2.75rem;
  }
}

.p-buy__note + .p-buy__note {
  margin-top: 0.625rem;
}

.p-campaign {
  padding-top: 2.75rem;
}
@media screen and (min-width: 751px) {
  .p-campaign {
    padding-top: 0;
  }
}

@media screen and (min-width: 751px) {
  .p-campaign__img {
    max-width: 53.375rem;
    width: 100%;
    margin: 0 auto;
  }
}
.p-campaign__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-campaign__note {
  font-size: 1.125rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-campaign__note {
    font-size: 1.1875rem;
  }
}

.p-campaign__wrap {
  background-color: #FAEBEE;
  padding: 3.125rem 2.6875rem 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-campaign__wrap {
    max-width: 53.375rem;
    width: 100%;
    margin: 0 auto;
    padding: 1.875rem 4.3125rem 1.875rem;
  }
}

.p-campaign__btnWrap {
  text-align: center;
}

.p-campaign__btn {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4375;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #D65A6F;
  border-radius: 100vmax;
  padding: 0.4375rem;
  min-width: 37.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.75rem;
}
@media screen and (min-width: 751px) {
  .p-campaign__btn {
    font-size: 1.75rem;
  }
}
.p-campaign__btn::after {
  content: "";
  display: block;
  width: 2.125rem;
  height: 1.0625rem;
  background: url(../images/campaign-arrow.svg) no-repeat center center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
}

.p-campaign__btn.active::after {
  rotate: 180deg;
}

.p-campaign__box {
  background-color: #fff;
  padding: 1.875rem 2.1875rem;
  margin-top: 1.25rem;
  display: none;
}
@media screen and (min-width: 751px) {
  .p-campaign__box {
    max-width: 41.5rem;
    width: 100%;
    margin: 1.25rem auto 0;
  }
}

.p-campaign__boxText {
  font-size: 1.375rem;
  line-height: 1.6363636364;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 751px) {
  .p-campaign__boxText {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.p-campaign__boxText span {
  font-weight: 900;
}

.p-campaign__logo {
  margin-top: 1.875rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-can {
  padding-top: 5rem;
}
@media screen and (min-width: 751px) {
  .p-can {
    padding-top: 0;
  }
}

.p-can__text {
  font-size: 2rem;
  line-height: 1.4375;
  margin-top: 1.875rem;
  padding: 0 0.6875rem;
}
@media screen and (min-width: 751px) {
  .p-can__text {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.p-can__img {
  padding: 0 1.75rem;
  margin-top: 3.625rem;
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-can__img {
    margin-top: 2.1875rem;
  }
}
.p-can__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-chance {
  padding-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-chance {
    padding-top: 0;
  }
}

.p-chance__text {
  font-size: 2rem;
  line-height: 1.4375;
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-chance__text {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.p-chance__img {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-chance__img {
    margin-top: 1.3125rem;
  }
}
.p-chance__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-charm {
  margin-top: 3.75rem;
}

@media screen and (min-width: 751px) {
  .p-charm__inner {
    max-width: 65.625rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 6.25rem;
       -moz-column-gap: 6.25rem;
            column-gap: 6.25rem;
    row-gap: 3.25rem;
    margin-top: 3.125rem;
  }
}

.p-contact {
  padding: 10rem 0;
}
@media screen and (min-width: 751px) {
  .p-contact {
    padding: 7.5rem 0;
  }
}

.p-contact__inner {
  padding: 0 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-contact__inner {
    padding: 0 1.5625rem;
    max-width: 60.625rem;
  }
}

.p-contact__title {
  text-align: center;
  font-size: 3.25rem;
  font-weight: bold;
  display: block;
  margin-top: 0.625rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 751px) {
  .p-contact__title {
    font-size: 2.5rem;
  }
}

.p-contact__text {
  margin-top: 3.75rem;
  font-size: 1.75rem;
  line-height: 2;
}
@media screen and (min-width: 751px) {
  .p-contact__text {
    font-size: 1rem;
    text-align: center;
  }
}

.p-contact__list {
  margin-top: 5rem;
  display: grid;
  gap: 3.75rem;
}
@media screen and (min-width: 751px) {
  .p-contact__list {
    margin-top: 3.75rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
  }
}

.p-contact__item {
  padding: 2.5rem;
  border-radius: 2.5rem;
  background-color: #f8f7ec;
}
@media screen and (min-width: 751px) {
  .p-contact__item {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }
}

.p-contact__itemTitle {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-contact__itemTitle {
    font-size: 1.25rem;
  }
}

.p-contact__link {
  color: #009682;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-contact__link {
    font-size: 1.625rem;
    margin-top: 0;
  }
}

.p-contact__link a {
  position: relative;
  font-weight: bold;
  color: inherit;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.p-contact__link.--tel a {
  padding-left: 3.75rem;
}
@media screen and (min-width: 751px) {
  .p-contact__link.--tel a {
    padding-left: 1.875rem;
  }
}
.p-contact__link.--tel a::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: auto;
  aspect-ratio: 1;
  background: url(/event/affusstock02/yasakabu/index-02/images/ico-tel.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 751px) {
  .p-contact__link.--tel a::before {
    width: 1.25rem;
  }
}

.p-contact__link.--chat a {
  padding-right: 2.5rem;
  display: block;
}
@media screen and (min-width: 751px) {
  .p-contact__link.--chat a {
    padding-right: 1.875rem;
  }
}
.p-contact__link.--chat a::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  background: url(/event/affusstock02/yasakabu/index-02/images/chat-arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 751px) {
  .p-contact__link.--chat a::after {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-contact__time {
  background-color: #fff;
  border-radius: 1.25rem;
  margin-top: 0.625rem;
  padding: 0.625rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 751px) {
  .p-contact__time {
    margin-top: 0.9375rem;
    border-radius: 0.625rem;
    padding: 0.3125rem 1.5625rem;
    display: block;
  }
}

.p-contact__timeTitle {
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-contact__timeTitle {
    font-size: 1rem;
  }
}

.p-contact__timeText {
  font-size: 1.75rem;
  text-align: center;
  font-weight: 400;
  display: grid;
  gap: 0.625rem;
}
@media screen and (min-width: 751px) {
  .p-contact__timeText {
    font-size: 1rem;
    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;
  }
}

.p-contact__timeItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-contact__timeItem {
    gap: 0.625rem;
  }
}

.p-contact__timeLabel {
  display: inline-block;
  width: 4.75rem;
  font-size: 1.5rem;
  color: #747259;
  border-radius: 1.875rem;
  text-align: center;
  background-color: #f8f7ec;
}
@media screen and (min-width: 751px) {
  .p-contact__timeLabel {
    font-size: 0.75rem;
    width: 2.375rem;
    border-radius: 0.9375rem;
  }
}

.p-contact__note {
  font-size: 1.25rem;
  margin-top: 1.25rem;
  text-indent: -1em;
  padding-left: 1em;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-contact__note {
    font-size: 0.75rem;
    margin-top: 0.9375rem;
  }
}

.p-fixBtn {
  position: fixed;
  bottom: 1.25rem;
  padding: 0.625rem;
  z-index: 1;
  width: 100%;
}

.p-fixBtn__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: block;
}

.p-flow {
  background-color: #e9f4f1;
  padding: 7.5rem 0;
}
@media screen and (min-width: 751px) {
  .p-flow {
    padding: 5rem 0;
  }
}

@media screen and (min-width: 751px) {
  .p-flow__inner {
    max-width: 72.5rem;
  }
}

.p-flow__subTitle {
  font-size: 2.25rem;
  line-height: 1.7;
  font-weight: bold;
  padding: 0 5rem;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  .p-flow__subTitle {
    font-size: 1.625rem;
    padding: 0 3.4375rem;
  }
}
.p-flow__subTitle::before, .p-flow__subTitle::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3.375rem;
  position: absolute;
  top: 0;
  bottom: 0;
}
@media screen and (min-width: 751px) {
  .p-flow__subTitle::before, .p-flow__subTitle::after {
    width: 2.1875rem;
    height: 2.0625rem;
    margin: auto;
  }
}
.p-flow__subTitle::before {
  background: url("/event/affusstock02/yasakabu/index-02/images/ttl_l_gr.png") no-repeat center center/contain;
  left: 0;
}
.p-flow__subTitle::after {
  background: url("/event/affusstock02/yasakabu/index-02/images/ttl_r_gr.png") no-repeat center center/contain;
  right: 0;
}

.p-flow__title {
  text-align: center;
  font-size: 3.25rem;
  font-weight: bold;
  margin-top: 0.625rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
@media screen and (min-width: 751px) {
  .p-flow__title {
    font-size: 2.5rem;
    margin-top: 0.3125rem;
  }
}

.p-flow__list {
  margin-top: 5rem;
  display: grid;
  gap: 6.25rem;
}
@media screen and (min-width: 751px) {
  .p-flow__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125rem;
    margin-top: 3.75rem;
  }
}

.p-flow__item {
  padding: 2.5rem;
  position: relative;
  border-radius: 2.5rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0.375rem rgba(0, 0, 0, .16);
          box-shadow: 0 0 0.375rem rgba(0, 0, 0, .16);
  z-index: 1;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-flow__item {
    padding: 1.875rem;
    border-radius: 1.25rem;
  }
}
.p-flow__item::after {
  content: "";
  display: block;
  width: 3.75rem;
  height: 1.25rem;
  background: url("/event/affusstock02/yasakabu/index-02/images/arrow.svg") no-repeat center center/contain;
  position: absolute;
  bottom: -3.75rem;
  left: 50%;
  translate: -50% 0;
  rotate: 90deg;
}
@media screen and (min-width: 751px) {
  .p-flow__item::after {
    width: 1.875rem;
    height: 0.625rem;
    right: -2.5rem;
    left: auto;
    left: initial;
    bottom: 50%;
    translate: 0 50%;
    rotate: 0deg;
  }
}

.p-flow__item:nth-child(3) {
  margin-top: 10rem;
}
@media screen and (min-width: 751px) {
  .p-flow__item:nth-child(3) {
    margin-top: 0;
  }
}
.p-flow__item:nth-child(3)::after {
  display: none;
}

.p-flow__itemNum {
  font-size: 1.75rem;
  font-weight: bold;
  color: #009682;
  display: block;
}
@media screen and (min-width: 751px) {
  .p-flow__itemNum {
    font-size: 1rem;
  }
}

.p-flow__itemImage {
  margin: 2.5rem auto 0;
  max-width: 28rem;
}
@media screen and (min-width: 751px) {
  .p-flow__itemImage {
    margin-top: 1.25rem;
  }
}
.p-flow__itemImage img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-flow__itemText {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.7;
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-flow__itemText {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.p-flow__balloon {
  padding: 1.25rem 3.75rem;
  margin-bottom: 5rem;
  position: absolute;
  top: -10rem;
  left: 50%;
  translate: -50% 0;
  display: inline-block;
  width: 33.75rem;
  background-color: #009682;
  border-radius: 6.25rem;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
}
@media screen and (min-width: 751px) {
  .p-flow__balloon {
    width: 16.875rem;
    top: -6.25rem;
    padding: 0.9375rem 1.875rem;
    font-size: 1rem;
  }
}
.p-flow__balloon::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2.5rem;
  background: url(/event/affusstock02/yasakabu/index-02/images/balloon_triangle_gr.svg) no-repeat left top/100% auto;
  position: absolute;
  bottom: -1.875rem;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 751px) {
  .p-flow__balloon::after {
    width: 1.5rem;
    height: 1.25rem;
    bottom: -0.9375rem;
  }
}

.p-flow__note {
  font-size: 1.25rem;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 1.25rem;
  line-height: 1.7;
}
@media screen and (min-width: 751px) {
  .p-flow__note {
    font-size: 0.75rem;
  }
}

.p-flow__note + .p-flow__note {
  margin-top: 0;
}

.p-footer {
  text-align: center;
  padding: 5.5rem 0 3.25rem;
  background-color: #009682;
  color: #fff;
}
@media screen and (min-width: 751px) {
  .p-footer {
    text-align: left;
    padding: 2.5rem 0;
  }
}

@media screen and (min-width: 751px) {
  .p-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 72.5rem;
  }
}

.p-footer__info {
  font-size: 1.5rem;
}
@media screen and (min-width: 751px) {
  .p-footer__info {
    font-size: 0.75rem;
  }
}

.copyright {
  font-size: 1.25rem;
  margin-top: 5rem;
}
@media screen and (min-width: 751px) {
  .copyright {
    font-size: 0.75rem;
    margin-top: 1.625rem;
  }
}

.p-header__inner {
  padding: 1.75rem 0.625rem 1.75rem 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 751px) {
  .p-header__inner {
    padding: 1.5rem 4.375rem;
  }
}

.p-header__logo {
  width: 10.125rem;
/*  width: 8.125rem; */
  display: block;
  position: absolute;
  left: 3%;
}

.p-merit {
  margin-top: 1.875rem;
  background-color: #C7E3DD;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 751px) {
  .p-merit {
    margin-top: 0;
  }
}

@media screen and (min-width: 751px) {
  .p-merit__inner {
    max-width: 84.75rem;
  }
}

.p-merit__items {
  counter-reset: num;
  margin-top: 8.5rem;
  display: grid;
  gap: 9.125rem;
}
@media screen and (min-width: 751px) {
  .p-merit__items {
    gap: 8.6875rem;
  }
}

/* ========================================================
# POINT 01
======================================================== */
.p-merit__item {
  counter-increment: num;
  padding: 4.375rem 2.5rem 3.75rem;
  background-color: #fff;
  border-radius: 3.75rem;
  position: relative;
}
@media screen and (min-width: 751px) {
  .p-merit__item {
    padding: 4.375rem 1.25rem 3.75rem;
  }
}

@media screen and (min-width: 751px) {
  .p-merit__itemInner {
    max-width: 62.25rem;
    width: 100%;
    margin: 0 auto;
  }
}

.p-merit__count {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: #217063;
  text-align: center;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: -5.375rem;
  left: 3.4375rem;
}
@media screen and (min-width: 751px) {
  .p-merit__count {
    left: 17%;
  }
}
.p-merit__count::after {
  content: counter(num, decimal-leading-zero);
  display: block;
  font-size: 6.875rem;
  line-height: 1;
  margin-top: -1rem;
}

.p-merit__subTitle {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.4583333333;
  color: #217063;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  .p-merit__subTitle {
    font-size: 2.5rem;
  }
}
.p-merit__subTitle .sm {
  font-size: 1rem;
}

@media screen and (min-width: 751px) {
  .p-merit__lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 62.25rem;
    width: 100%;
    margin: 0 auto;
  }
}

.p-merit__list + .p-merit__list {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-merit__list + .p-merit__list {
    margin-top: 0;
  }
}

.p-merit__lead {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
  padding: 0.75rem;
  background-color: #C7E3DD;
  border-radius: 100vmax;
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-merit__lead {
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.5rem;
  }
}
.p-merit__lead .u-sm {
  font-size: 1rem;
}
.p-merit__lead.--sm {
  font-size: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-merit__lead.--sm {
    font-size: 1.25rem;
    padding: 1rem;
  }
}

.p-merit__listBody {
  padding: 0 0.5625rem;
}
@media screen and (min-width: 751px) {
  .p-merit__listBody {
    padding: 0;
  }
}

.p-merit__free {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-merit__free {
    margin-top: 0.9375rem;
  }
}
.p-merit__free img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-merit__boxItems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375rem;
  margin-top: 6.875rem;
}
@media screen and (min-width: 751px) {
  .p-merit__boxItems {
    grid-template-columns: 1fr;
    gap: 0.4375rem;
    margin-top: 0;
  }
}

.p-merit__boxItem {
  padding: 3.9375rem 0.3125rem 1.3125rem;
  border: 0.625rem solid #bfecc8;
  border-radius: 2.1875rem;
  position: relative;
}
@media screen and (min-width: 751px) {
  .p-merit__boxItem {
    border-radius: 1rem;
    border-width: 0.3125rem;
    padding: 0.125rem 0.4375rem 0.125rem 0.4375rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-merit__boxItem:nth-child(2) {
  border-color: #8dd2bf;
}

.p-merit__balloon {
  position: absolute;
  top: -4.0625rem;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 751px) {
  .p-merit__balloon {
    position: relative;
    inset: initial;
    translate: initial;
  }
}

.p-merit__boxText {
  font-size: 2rem;
  line-height: 1.4375;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-merit__boxText {
    font-size: 0.9375rem;
  }
}
.p-merit__boxText .sm {
  font-size: 1rem;
}
@media screen and (min-width: 751px) {
  .p-merit__boxText .sm {
    font-size: 0.6875rem;
  }
}
.p-merit__boxText .--position {
  display: block;
}
@media screen and (min-width: 751px) {
  .p-merit__boxText .--position {
    display: inline;
  }
}

.p-merit__text {
  font-size: 1.875rem;
  line-height: 1.4333333333;
  letter-spacing: 0.05em;
  margin-top: 1.875rem;
  padding: 0 0.625rem;
}
@media screen and (min-width: 751px) {
  .p-merit__text {
    font-size: 1.25rem;
    margin-top: 1.625rem;
    text-align: center;
    padding: 0;
  }
}
.p-merit__text.--ls0 {
  letter-spacing: 0;
}

.p-merit__note {
  font-size: 1.25rem;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-merit__note {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
}

/* ========================================================
# POINT 02
======================================================== */
.p-merit__img1 {
  margin-top: 1.875rem;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 751px) {
  .p-merit__img1 {
    width: 25rem;
    margin: 1.625rem auto 0;
  }
}

.p-mv {
  position: relative;
  overflow: clip;
  padding-bottom: 1.4375rem;
  z-index: 1;
  background: linear-gradient(343.39deg, #ffc8d1 7.51%, #fdeaee 34.81%, #fdedf0 60.98%, #ffffff 103.08%);
}
@media screen and (min-width: 751px) {
  .p-mv {
    height: 41.1875rem;
    padding-bottom: 0;
  }
}

.p-mv__inner {
  padding: 0 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 751px) {
  .p-mv__inner {
    max-width: 82.75rem;
    padding: 0 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-mv__body {
  display: contents;
}
@media screen and (min-width: 751px) {
  .p-mv__body {
    display: block;
    max-width: 53.125rem;
    width: 70%;
    margin-top: 4.375rem;
  }
}

.p-mv__title {
  font-size: 6.625rem;
  font-weight: 900;
  line-height: 1.0566037736;
  letter-spacing: 0.1em;
  color: #4d4d4d;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-mv__title {
    font-size: 5.8125rem;
    text-align: left;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-mv__title .lg {
  font-size: 3.6875rem;
  font-weight: bold;
  letter-spacing: 0;
}
@media screen and (min-width: 751px) {
  .p-mv__title .lg {
    font-size: 2.8125rem;
  }
}
.p-mv__title .md {
  font-size: 4.25rem;
  font-weight: bold;
  letter-spacing: 0;
}
@media screen and (min-width: 751px) {
  .p-mv__title .md {
    font-size: 3.25rem;
  }
}
.p-mv__title .sm {
  font-size: 2.375rem;
  font-weight: bold;
  letter-spacing: 0;
}
@media screen and (min-width: 751px) {
  .p-mv__title .sm {
    font-size: 1.8125rem;
  }
}

.p-mv__btn {
  text-align: center;
  margin-top: -8.125rem;
  position: relative;
  z-index: 1;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 751px) {
  .p-mv__btn {
    margin-top: 2.25rem;
    margin-left: auto;
    margin-right: 5.0625rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-mv__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  padding: 0 0.75rem;
  position: relative;
  z-index: 1;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 751px) {
  .p-mv__items {
    max-width: 37.6875rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 1rem;
    padding: 0 1.5rem;
    margin-left: auto;
  }
}

.p-mv__item {
  width: 13.5rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #009682;
  display: grid;
  place-content: center;
  gap: 1.125rem;
  text-align: center;
  color: #fff;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.1333333333;
  letter-spacing: 0.05em;
  padding: 3.1875rem 0.9375rem 0.9375rem;
  -webkit-box-shadow: 0.375rem 0.375rem 0.625rem #aeaeae;
          box-shadow: 0.375rem 0.375rem 0.625rem #aeaeae;
}
@media screen and (min-width: 751px) {
  .p-mv__item {
    width: 10.8125rem;
    font-size: 1.5rem;
    padding: 3.1875rem 0.9375rem 1.875rem;
  }
}
.p-mv__item::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  margin: 0 auto;
}

.p-mv__img {
  width: 100%;
  height: 43.8125rem;
  z-index: -2;
  margin: 0.625rem auto 0;
}
@media screen and (min-width: 751px) {
  .p-mv__img {
    width: 31.75rem;
    height: 47.5rem;
    z-index: 0;
    margin-left: -4.625rem;
  }
}
@media (min-width: 751px) and (max-width: 1200px) {
  .p-mv__img {
    margin-left: -2.5rem;
  }
}
.p-mv__img img {
  max-width: none;
  max-width: initial;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__ellipse {
  width: 66.125rem;
  height: 26.25rem;
  border-radius: 50% 50% 0 0;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 751px) {
  .p-mv__ellipse {
    width: 100.4375rem;
    height: 19.5rem;
    bottom: -9.375rem;
  }
}
@media (min-width: 1441px) {
  .p-mv__ellipse {
    width: 111.5972222222vw;
    height: 21.6666666667vw;
    bottom: auto;
    bottom: initial;
    top: 31.0625rem;
  }
}

@media screen and (min-width: 751px) {
  .p-possible {
    display: grid;
    grid-template-columns: 373fr 596fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.875rem;
    margin-top: 1.875rem;
  }
}

.p-possible__img {
  width: 32rem;
  margin: 1.875rem auto 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 751px) {
  .p-possible__img {
    margin-top: 0;
  }
}

.p-question {
  display: grid;
  gap: 0.8125rem;
  margin-top: 2.875rem;
  padding: 0 0.625rem;
}
@media screen and (min-width: 751px) {
  .p-question {
    margin-top: 1.625rem;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4375rem;
  }
}

.p-question__item {
  display: grid;
  grid-template-columns: 7.1875rem 1fr;
  gap: 0.625rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 751px) {
  .p-question__item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 750px) {
  .p-merit__questionItem:nth-child(even) {
    grid-template-columns: 1fr 7.1875rem;
  }
  .p-merit__questionItem:nth-child(even) .p-question__head {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 750px) and (min-width: 751px) {
  .p-merit__questionItem:nth-child(even) .p-question__head {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}
@media (max-width: 750px) {
  .p-merit__questionItem:nth-child(even) .p-question__body::before {
    left: auto;
    right: -2.0625rem;
    scale: -1 1;
  }
}
@media screen and (min-width: 751px) {
  .p-question__head {
    margin-left: -1.875rem;
  }
}

.p-question__img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1;
}
@media screen and (min-width: 751px) {
  .p-question__img {
    width: 5.4375rem;
    margin: 0 auto;
  }
}

.p-question__caption {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.45;
  color: #000;
  display: block;
  text-align: center;
  margin-top: 0.375rem;
}
@media screen and (min-width: 751px) {
  .p-question__caption {
    font-size: 0.9375rem;
  }
}

.p-question__body {
  padding: 1.25rem;
  background-color: #e0e0e0;
  border-radius: 100vmax;
  position: relative;
}
@media screen and (min-width: 751px) {
  .p-question__body {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding: 1.25rem;
  }
}
.p-question__body::before {
  content: "";
  display: block;
  width: 3.25rem;
  height: 1.5rem;
  background: url(../images/question-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: -2.0625rem;
  translate: 0 -50%;
}
@media screen and (min-width: 751px) {
  .p-question__body::before {
    width: 2.4375rem;
    height: 0.9375rem;
    top: auto;
    top: initial;
    bottom: -1.375rem;
    left: 6.4375rem;
    translate: initial;
    rotate: -102deg;
  }
}

.p-question__text {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4583333333;
  color: #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  .p-question__text {
    font-size: 0.9375rem;
  }
}

@media screen and (min-width: 751px) {
  .p-question__bottom {
    display: block;
    gap: 1.6875rem;
    margin-top: 1.625rem;
  }
}

.p-question__banner {
  display: block;
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-question__banner {
    max-width: 43.75rem;
    width: 100%;
    margin: 0 auto;
  }
}
.p-question__banner img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-risk {
  padding: 3.75rem 0 7.5rem;
}

.p-risk__title {
  font-size: 3.25rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 751px) {
  .p-risk__title {
    font-size: 2.5rem;
  }
}

.p-risk__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-risk__list {
	  /*
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	  */
	  grid-template-columns: repeat(4, 1fr);
    margin-top: 3.75rem;
    gap: 0.5rem;
  }
}

.p-risk__link {
  display: inline-block;
  padding: 0.875rem;
  text-align: center;
  width: 100%;
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  border: 0.0625rem solid #009682;
  color: #009682;
  border-radius: 100vmax;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 751px) {
  .p-risk__link {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5625rem;
    min-width: 15.3125rem;
  }
}
@media (any-hover: hover) {
  .p-risk__link:hover {
    opacity: 1;
    background-color: #009682;
    color: #fff;
  }
}

.p-security {
  padding: 7.5rem 0;
  background-color: #f7f7f7;
}
@media screen and (min-width: 751px) {
  .p-security {
    padding: 5rem 0;
  }
}

.p-security__title {
  font-size: 3.25rem;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
@media screen and (min-width: 751px) {
  .p-security__title {
    font-size: 2.5rem;
  }
}

.p-security__text {
  margin-top: 3.75rem;
  font-size: 1.75rem;
  line-height: 2;
}
@media screen and (min-width: 751px) {
  .p-security__text {
    font-size: 1rem;
    text-align: center;
  }
}

.p-security__list {
  display: grid;
  margin-top: 5rem;
  gap: 3.75rem;
}
@media screen and (min-width: 751px) {
  .p-security__list {
    gap: 3.125rem;
    margin-top: 3.75rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-security__item {
  padding: 2.5rem;
  position: relative;
  border-radius: 2.5rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0.75rem rgba(0, 0, 0, .16);
          box-shadow: 0 0 0.75rem rgba(0, 0, 0, .16);
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 751px) {
  .p-security__item {
    padding: 1.875rem;
    border-radius: 1.25rem;
  }
}

.p-security__itemImg {
  width: 13.75rem;
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  .p-security__itemImg {
    width: 7.5rem;
  }
}
.p-security__itemImg img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-security__itemTitle {
  line-height: 1.7;
  font-weight: bold;
  margin-top: 2.5rem;
  font-size: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-security__itemTitle {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.p-security__itemText {
  margin-top: 2.5rem;
  font-size: 1.75rem;
  line-height: 2;
}
@media screen and (min-width: 751px) {
  .p-security__itemText {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.p-start {
  padding-top: 3.125rem;
}
@media screen and (min-width: 751px) {
  .p-start {
    padding-top: 0;
  }
}

.p-start__text {
  font-size: 2rem;
  line-height: 1.4375;
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-start__text {
    font-size: 1.25rem;
    margin-top: 1.5625rem;
  }
}

.p-start__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  margin-top: 8.25rem;
}
@media screen and (min-width: 751px) {
  .p-start__items {
    margin-top: 5.6875rem;
    gap: 0.375rem;
  }
}

.p-start__item {
  padding: 6.625rem 0.3125rem 1.9375rem;
  border: 0.625rem solid #DE8344;
  border-radius: 2.1875rem;
  position: relative;
}
@media screen and (min-width: 751px) {
  .p-start__item {
    padding: 4.3125rem 0.1875rem 0.625rem;
    border-radius: 1.375rem;
    border-width: 0.375rem;
  }
}

.p-start__item:nth-child(2) {
  border-color: #6A99D0;
}
.p-start__item:nth-child(2) .p-start__itemNum {
  color: #6A99D0;
}

.p-start__itemText {
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.1538461538;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-start__itemText {
    font-size: 1rem;
  }
}

.p-start__itemLead {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.1071428571;
  letter-spacing: 0.07em;
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-start__itemLead {
    font-size: 1.125rem;
    margin-top: 0.8125rem;
  }
}

.p-start__itemNum {
  margin-top: 0.5rem;
  font-size: 3.125rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.07em;
  color: #E36964;
  display: block;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-start__itemNum {
    margin-top: 0.8125rem;
    font-size: 2rem;
  }
}
.p-start__itemNum .u-sm {
  font-size: 2rem;
}
@media screen and (min-width: 751px) {
  .p-start__itemNum .u-sm {
    font-size: 1.25rem;
  }
}

.p-start__itemLead2 {
  font-size: 1.625rem;
  font-weight: 900;
  line-height: 1.1923076923;
  letter-spacing: 0.07em;
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (min-width: 751px) {
  .p-start__itemLead2 {
    font-size: 1rem;
  }
}

.p-start__itemNote {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
  text-align: center;
  margin-top: 1.875rem;
  min-height: 3.75rem;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 751px) {
  .p-start__itemNote {
    font-size: 0.8125rem;
    margin-top: 0.8125rem;
    min-height: 2.5rem;
  }
}

.p-start__balloon {
  position: absolute;
  top: -6.375rem;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 751px) {
  .p-start__balloon {
    top: -4.125rem;
  }
}

.p-tool {
  display: grid;
  gap: 4.375rem;
  margin-top: 4.375rem;
}
@media screen and (min-width: 751px) {
  .p-tool {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125rem;
    margin-top: 3rem;
  }
}

.p-tool__logo {
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  .p-tool__logo {
    min-height: 4.375rem;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-tool__logo.--youtube {
  width: 18.75rem;
}
@media screen and (min-width: 751px) {
  .p-tool__logo.--youtube {
    width: 10rem;
  }
}
.p-tool__logo.--money {
  width: 28.25rem;
}
@media screen and (min-width: 751px) {
  .p-tool__logo.--money {
    width: 12rem;
  }
}
.p-tool__logo.--matsui {
  width: 9.9375rem;
}
@media screen and (min-width: 751px) {
  .p-tool__logo.--matsui {
    width: 4.375rem;
  }
}
.p-tool__logo.--matsui img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, .25));
          filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, .25));
}
.p-tool__logo img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-tool__name {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4375;
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-tool__name {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
}

.p-tool__iframe {
  width: 31.25rem;
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 751px) {
  .p-tool__iframe {
    width: 100%;
    margin-top: 1rem;
  }
}
.p-tool__iframe iframe {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 500/280;
}
@media screen and (min-width: 751px) {
  .p-tool__iframe iframe {
    aspect-ratio: 300/168;
  }
}

.p-tool__link {
  display: block;
  margin: 1.875rem auto 0;
  width: 31.25rem;
}
@media screen and (min-width: 751px) {
  .p-tool__link {
    width: 100%;
    margin-top: 1rem;
  }
}
.p-tool__link img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 751px) {
  .p-tool__link img {
    aspect-ratio: 300/168;
  }
}

.p-tool__link.--lg {
  width: 35.5rem;
}
@media screen and (min-width: 751px) {
  .p-tool__link.--lg {
    width: 100%;
  }
}

.p-tool__text {
  font-size: 1.875rem;
  line-height: 1.4333333333;
  letter-spacing: 0.05em;
  margin-top: 1.875rem;
  padding: 0 0.625rem;
}
@media screen and (min-width: 751px) {
  .p-tool__text {
    font-size: 1.25rem;
    margin-top: 1.625rem;
    padding: 0;
  }
}

.p-trend {
  padding-top: 5rem;
}
@media screen and (min-width: 751px) {
  .p-trend {
    padding-top: 0;
  }
}

.p-trend__text {
  font-size: 2rem;
  line-height: 1.4375;
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-trend__text {
    font-size: 1.25rem;
  }
}

.p-trend__img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 696/496;
}
@media screen and (min-width: 751px) {
  .p-trend__img {
    aspect-ratio: 450/320;
  }
}

.p-trend__note {
  font-size: 1.25rem;
  line-height: 1.45;
  margin: 0 0.9375rem;
}
@media screen and (min-width: 751px) {
  .p-trend__note {
    font-size: 0.875rem;
    margin: 0;
  }
}

.p-trend__note:nth-child(2 of .p-trend__note) {
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 751px) {
  .p-trend__note:nth-child(2 of .p-trend__note) {
    margin-top: 0.625rem;
  }
}

.u-border {
  border-bottom: 0.0625rem solid #C7E3DD;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 751px) {
  .u-desktop {
    display: block;
  }
}

.u-green {
  color: #009682;
}

.u-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #FF9496));
  background: linear-gradient(transparent 70%, #FF9496 70%);
}

@media screen and (min-width: 751px) {
  .u-mobile {
    display: none;
  }
}

.u-pink {
  color: #D65A6F;
}
/*# sourceMappingURL=styles.css.map */



/*----------------------------------------------------------------------
index-02.html - css
----------------------------------------------------------------------*/
/*    Display
=====================================================*/
.u_sp {
  display: none !important;
}
.u_pc {
  display: block !important;
}
.u_pc.u_inlineB {
  display: inline-block !important;
}
.u_pc.u_inline {
  display: inline !important;
}
/*-- SP --*/
@media (max-width: 750px) {
  .u_pc {
    display: none !important;
  }
  .u_sp {
    display: block !important;
  }
  .u_sp.u_inlineB {
    display: inline-block !important;
  }
  .u_sp.u_inline {
    display: inline !important;
  }
}

/*    l_wrap
=====================================================*/
.l_wrap {
  width: 100%;
  margin: auto;
}
.l_wrap_inr {
  max-width: 1110px;
  /* width: 92vw; */
  margin: auto;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
/* Large devices (desktops, 992px and under) */
@media (max-width: 1040px) {
  .l_wrap_inr {
  }
}
/* Small devices (landscape phones, 750px and under) */
@media (max-width: 750px) {
  .l_wrap_inr {
  }
}

/*    intro
=====================================================*/
.intro {
  margin: 50px 0;
}
@media only screen and (max-width: 750px) {
  .intro {
    margin: 40px 0 30px;
  }
}

/*    green-title
=====================================================*/
.green-title {
  text-align: center;
  background-color: #128271;
  border-radius: 30px;
  font-size: 2rem;
  color: #fff;
  padding: 6px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
  .green-title {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}

/*    stockaff-table
=====================================================*/
.stockaff-table {
  width: 100%;
  font-size: 1.875rem;
  line-height: 1.4333333333;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 751px) {
.stockaff-table {
    font-size: 1.25rem;
    margin-top: 1.625rem;
  }
}
table.stockaff-table {
    border-collapse: collapse;
}
@media only screen and (max-width: 750px) {
  .stockaff-table tr {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
  }
}
@media only screen and (max-width: 750px) {
  .stockaff-table tr:last-child td {
    border-bottom: 1px solid #ccc;
  }
}
.stockaff-table th,
.stockaff-table td {
  padding: 12px 20px;
}
@media only screen and (min-width: 751px) {
  .stockaff-table th,
  .stockaff-table td {
    border: 1px solid #ccc;
  }
}
@media only screen and (max-width: 750px) {
  .stockaff-table th,
  .stockaff-table td {
    width: 100%;
    display: block;
    padding: 6px 16px;
  }
}
.stockaff-table th {
  background-color: #e9f4f1;
  text-align: left;
}
@media only screen and (min-width: 751px) {
  .stockaff-table th {
    width: 24%;
  }
}
@media only screen and (max-width: 750px) {
  .stockaff-table th {
    border-bottom: 1px solid #ccc;
  }
}
.stockaff-table td {
  background-color: var(--white);
}
.stockaff-table .bg-gray {
  background-color: #f7f7f7;
  font-weight: bold;
}
@media only screen and (min-width: 751px) {
  .stockaff-table .bg-gray {
    width: 24%;
  }
}
@media only screen and (max-width: 750px) {
  .stockaff-table .bg-gray {
    display: inline-block;
    width: 28%;
    padding: 8px 6px;
    border: none;
  }
}
@media only screen and (max-width: 750px) {
  .stockaff-table .next-bg-gray {
    display: inline-block;
    width: 72%;
    padding: 8px 6px;
    border: none;
  }
}
.stockaff-table .red {
  font-size: 2rem;
  color: #e83a3a;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .stockaff-table .red {
    margin: 2px 0;
  }
}
.stockaff-table .notice {
  font-size: 1.2rem;
}
@media only screen and (min-width: 751px) {
  .stockaff-table .notice {
    margin-top: 1em;
  }
}

/*    link-box
=====================================================*/
@media only screen and (min-width: 751px) {
  .link-box {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 750px) {
  .link-box {
    margin-top: 40px;
  }
}

/*    link-text
=====================================================*/
.link-text {
  margin-bottom: 1em;
}

/*    link-tab
=====================================================*/
.link-tab {
  display: block;
  position: relative;
  transition: color var(--transition);
}
@media only screen and (min-width: 751px) {
  .link-tab {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 750px) {
  .link-tab {
    padding-left: 24px;
  }
}
.link-tab::before {
  content: "";
  position: absolute;
  background: url(/event/stockaff/image/icon_tab.svg) no-repeat center/contain;
  width: 22px;
  height: 22px;
  left: 0;
  top: 4px;
}
@media only screen and (max-width: 750px) {
  .link-tab::before {
    width: 15px;
    height: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.link-tab:hover {
  color: #009682;
}
.link-tab + .link-tab {
  margin-top: 1em;
}
.link-tab.no-icon {
  padding-left: 0;
}
.link-tab.no-icon::before {
  content: none;
}
.link-tab.no-icon:hover {
  color: inherit;
}

/*↓20250605追加分↓*/

.p-merit__item_mb{
  margin-bottom: -120px;
}

@media screen and (max-width: 940px) {
.p-merit__item_mb{
  margin-bottom: -80px;
  }
}

.p-merit__items_att_pc {
  max-width: 980px !important;
  margin-left: auto;
  margin-right: auto;
}

/*↑20250605追加分↑*/
