@charset "UTF-8";
:root {
  --color-text: #313131;
  --color-blue: #009de1;
  --color-pink: #ea6172;
  --color-brown: #754333;
  --color-green: #5bb64b;
  --color-orange-ligthen: #ffe6ce;
  --inline-size: min(1024px, 100% - 2rem);
}

*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc(
    (var(--clamp-max) - var(--clamp-min)) /
      (var(--clamp-viewport-max) - var(--clamp-viewport-min))
  );
  --clamp-y-axis-intersection: calc(
    var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min))
  );
  --clamp-preffered-value: calc(
    var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) +
      (var(--clamp-slope) * 100vw)
  );
  --clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--clamp-preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );
  font-size: var(--clamp);
}

body {
  --clamp-viewport-min: 375;
  --clamp-viewport-max: 1200;
  --clamp-min: 16;
  --clamp-max: 18;
  font-family: "Satoshi", "Kosugi Maru", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.7;
  color: var(--color-text);
  font-weight: 400;
  font-size: 16px;
  background: url(../img/bg.png), linear-gradient(#f9c587, #ea6272 55%);
  position: relative;
  z-index: 1;
}
body::before {
  content: "";
  position: absolute;
  inset: 0;
  aspect-ratio: 179/39;
  background-image: url(../img/bg_green.png);
  background-position: top 0 right 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  body::before {
    background-position: top -80px right 0;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.header {
  container: header-layout/inline-size;
  background-image: url(../img/header_bruschetta.png), url(../img/header_fried.png), url(../img/header_salad.png), url(../img/header_soup.png), url(../img/bg_main-left.svg), url(../img/bg_main-right.svg);
  background-position-x: -5%, 105%, 25%, right, left, right;
  background-position-y: 41%, -1%, -4%, 41%, top, top, top;
  background-size: 25%, 22%, 15%, 16%, 15%, 25%;
  background-repeat: no-repeat;
  padding-block: 2rem;
}
@media screen and (min-width: 768px) {
  .header {
    background-position-x: -5%, 105%, 25%, 90%, left, right;
    background-position-y: 30%, -10%, -5%, 70%, top, top, top;
    margin-bottom: 5rem;
  }
}
.header-sponsor img {
  width: min(600px, 80%);
  margin-inline: auto;
}
.header .main-title img {
  width: min(1100px, 100%);
  margin: 0 auto 2rem;
}
.header-details {
  --clamp-min: 20;
  --clamp-max: 32;
  display: grid;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.5;
  padding-inline: 0.5rem;
}
@media screen and (min-width: 768px) {
  .header-details {
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 1em;
    font-size: 1.5em;
  }
}
.header-details dl {
  display: grid;
  gap: 0.2em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header-details dl {
    align-items: center;
    grid-template-columns: minmax(100px, 180px) auto;
    gap: 0.5em;
    text-align: left;
  }
}
.header-details dl dt {
  --clamp-min: 16;
  display: grid;
  place-items: center;
  color: #fff;
  background-color: var(--color-brown);
  border-radius: 100svh;
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .header-details dl dt {
    width: 90%;
  }
}
.header-details dl dd {
  color: #fff;
  font-weight: bold;
  filter: drop-shadow(1px 2px 0 #000);
  line-height: 1.1;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .header-details dl dd {
    filter: drop-shadow(3px 2px 0 #000);
  }
}
@media screen and (max-width: 767px) {
  .header-details dl dd {
    padding-inline: 0.2em;
    padding-bottom: 0.2em;
  }
}
.header-details .join {
  color: #fff;
  font-weight: bold;
  filter: drop-shadow(1px 2px 0 #000);
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border: solid 1px;
  padding: 0.3em;
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .header-details .join {
    filter: drop-shadow(3px 2px 0 #000);
    width: 100%;
  }
}
.header-details .join .person {
  border-bottom: dotted 1px;
  letter-spacing: 0.05em;
}
.header-details .text-large {
  font-size: 1.6em;
}
.header-details .text-small {
  font-size: 0.7em;
}

main {
  overflow-x: hidden;
  position: relative;
}
main::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/bg_main-left.svg), url(../img/bg_main-right.svg);
  background-repeat: repeat-y;
  background-position: left, right;
  background-size: 25%;
  z-index: -1;
}

section:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  section:not(:last-of-type) {
    margin-bottom: 5rem;
  }
}

.container {
  width: var(--inline-size);
  margin-inline: auto;
}

.section-header {
  margin-bottom: 2rem;
}
.section-header .title {
  --clamp-min: 24;
  --clamp-max: 36;
  text-align: center;
}

.theme {
  container: theme-layout/inline-size;
  padding-top: 3rem;
  padding-inline: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .theme {
    padding-top: 4rem;
  }
}
.theme::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 200px;
  aspect-ratio: 2/1.5;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  background-color: var(--color-orange-ligthen);
  margin-inline: auto;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .theme::before {
    width: 300px;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
  }
}
.theme .section-header {
  text-align: center;
  border-image-source: linear-gradient(var(--color-orange-ligthen) 0 0);
  border-image-slice: 0 fill;
  border-image-outset: 0 100vi;
  padding-block: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: revert;
}
.theme .section-header .title {
  color: var(--color-brown);
  font-weight: bold;
  letter-spacing: 2px;
  border-block: thick double currentColor;
  padding: 1rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .theme .section-header .title {
    padding: 1.5rem 2rem;
  }
}
.theme .section-header .title .title-sub {
  --clamp-min: 18;
  --clamp-max: 30;
  position: absolute;
  display: block;
  inset: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  top: -1.5rem;
  padding-inline: 1rem;
  background-color: var(--color-orange-ligthen);
}
@media screen and (min-width: 768px) {
  .theme .section-header .title .title-sub {
    top: -2rem;
    padding-inline: 2rem;
  }
}
.theme .section-header .title .title-main {
  color: #fff;
  white-space: nowrap;
  text-shadow: 1px 1px 0 var(--color-brown), -1px 0 0 var(--color-brown), 1px 1px 0 var(--color-brown), 0 -1px 0 var(--color-brown), 0 1px 0 var(--color-brown), 1px -1px 0 var(--color-brown), 1px 0 0 var(--color-brown), 1px 1px 0 var(--color-brown), 1px 0px 0 var(--color-brown), 0px 1px 0 var(--color-brown), 1px 1px 0 var(--color-brown);
  filter: drop-shadow(2px 2px 0 var(--color-brown));
}
.theme .section-header .title .rotate01,
.theme .section-header .title .rotate02,
.theme .section-header .title .rotate03 {
  font-size: 1.1em;
}
@media screen and (min-width: 768px) {
  .theme .section-header .title .rotate01,
.theme .section-header .title .rotate02,
.theme .section-header .title .rotate03 {
    font-size: 1.2em;
  }
}
.theme .section-header .title .rotate01 {
  display: inline-block;
  rotate: -4deg;
}
.theme .section-header .title .rotate02 {
  display: inline-block;
  rotate: 4deg;
}
.theme .section-header .title .rotate03 {
  display: inline-block;
  rotate: -4deg;
}
.theme-contents {
  border-image-source: linear-gradient(var(--color-orange-ligthen) 0 0);
  border-image-slice: 0 fill;
  border-image-outset: 0 100vi;
  padding-bottom: 2rem;
}
.theme-contents .heading {
  --clamp-min: 18;
  --clamp-max: 28;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  -moz-column-gap: 3px;
       column-gap: 3px;
  color: var(--color-brown);
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-decoration-thickness: 0.2em;
  text-underline-offset: 0.1em;
  -webkit-text-decoration-color: color-mix(in srgb, #fff 50%, #b2d262 100%);
          text-decoration-color: color-mix(in srgb, #fff 50%, #b2d262 100%);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .theme-contents .heading {
    letter-spacing: 2px;
    text-decoration-thickness: 8px;
    text-underline-offset: -0.05em;
  }
}
.theme-contents .heading::before {
  content: "";
  width: 2em;
  aspect-ratio: 56/43;
  background-image: url(../img/icon_leaf.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
}
.theme-contents .theme-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
}
@container theme-layout (min-width: 1024px) {
  .theme-contents .theme-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.theme-contents .theme-list li:nth-child(1) {
  rotate: -1deg;
}
.theme-contents .theme-list li:nth-child(2) {
  rotate: 1deg;
}
.theme-contents .theme-list li:nth-child(3) {
  rotate: 1deg;
  margin-top: 5px;
}
.theme-contents .theme-list li:nth-child(4) {
  rotate: -1deg;
}
.theme-contents .theme-list li:nth-child(even) {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .theme-contents .theme-list li:nth-child(odd) {
    rotate: -1deg;
  }
  .theme-contents .theme-list li:nth-child(even) {
    rotate: 1deg;
  }
}
.theme-contents figure {
  display: grid;
  align-items: end;
  justify-items: end;
}
.theme-contents figure img {
  grid-area: -1/1;
  border: solid 5px #fff;
  filter: drop-shadow(3px 3px 3px #614b3d);
}
.theme-contents figure figcaption {
  --clamp-max: 22;
  text-align: center;
  line-height: 1.3;
  background-color: #fff;
  padding: 0.2rem 0.5rem;
  position: relative;
  width: 100%;
  margin-top: 5px;
}
@container theme-layout (min-width: 620px) {
  .theme-contents figure figcaption {
    grid-area: -1/1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: revert;
    padding: 0.2rem 1.5rem;
  }
}
.theme-contents figure figcaption::before, .theme-contents figure figcaption::after {
  position: absolute;
  content: "";
  width: 1em;
  aspect-ratio: 1;
  background-color: var(--color-brown);
}
.theme-contents figure figcaption::before {
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  padding-right: 0.5em;
}
.theme-contents figure figcaption::after {
  bottom: 0;
  right: 0;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  margin-left: 0.5em;
}
.theme-contents .caution {
  --clamp-min: 14;
  --clamp-max: 16;
  text-align: right;
}

.instructor {
  padding-top: 2rem;
}
.instructor .title {
  --clamp-min: 20;
  --clamp-max: 24;
  color: #fff;
  text-align: center;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  margin-bottom: 2rem;
  position: relative;
}
.instructor .title::after {
  content: "";
  position: absolute;
  width: 3em;
  top: -1.5em;
  right: -1em;
  aspect-ratio: 77/58;
  -webkit-mask-image: url(../img/icon_title.svg);
          mask-image: url(../img/icon_title.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  rotate: 24deg;
}
@media (min-width: 768px) {
  .instructor .title::after {
    margin-left: -2.5em;
    right: revert;
    top: -2em;
    width: 4em;
  }
}
.instructor .instructor-contents {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  position: relative;
  z-index: 1;
}
.instructor .instructor-contents::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  width: 1.1rem;
  aspect-ratio: 1;
  background-color: #f29791;
  border-radius: 50%;
}
.instructor .instructor-contents::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-orange-ligthen);
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 94%, 91% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 94%, 91% 100%, 0 100%);
}
@media (min-width: 768px) {
  .instructor .instructor-contents::after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 88%, 95% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 88%, 95% 100%, 0 100%);
  }
}
@media (min-width: 768px) {
  .instructor .instructor-contents {
    grid-template-columns: repeat(2, auto);
  }
}
.instructor .instructor-contents .comment {
  line-height: 2;
}
.instructor .instructor-contents .comment p {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.instructor .profile img {
  width: min(400px, 100%);
  margin-inline: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  aspect-ratio: 4/3;
}

.present {
  padding-top: 1rem;
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .present {
    padding-top: 4rem;
  }
}
.present-contents {
  display: grid;
  grid-template-columns: 0.6fr 2fr;
  align-items: center;
  place-content: center;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-decoration-thickness: 0.3em;
  text-underline-offset: 0.1em;
  -webkit-text-decoration-color: color-mix(in srgb, #fff 50%, var(--color-pink) 50%);
          text-decoration-color: color-mix(in srgb, #fff 50%, var(--color-pink) 50%);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .present-contents {
    grid-template-columns: repeat(2, auto);
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    align-items: revert;
    margin-bottom: 10rem;
    text-decoration-thickness: 8px;
    text-underline-offset: -0.05em;
  }
}
.present-contents .present-image {
  padding-top: 7em;
}
@media screen and (min-width: 768px) {
  .present-contents .present-image {
    padding-top: revert;
  }
}
.present-contents .title {
  --clamp-min: 20;
  --clamp-max: 22;
  text-align: center;
  position: relative;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .present-contents .title {
    padding-inline: 2rem;
  }
}
.present-contents .title::before {
  position: absolute;
  content: "";
  inset: 0;
  margin: auto;
  width: 105%;
  aspect-ratio: 279/154;
  background-image: url(../img/image_fukidashi.svg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .present-contents .title::before {
    top: -59px;
    width: 100%;
  }
}

.about {
  padding-inline: 1rem;
  padding-bottom: 5rem;
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-orange-ligthen);
  z-index: -1;
  width: 90%;
  top: -3rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about::before {
    top: -5rem;
  }
}
.about::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-orange-ligthen);
  z-index: -2;
}
.about .section-header {
  position: relative;
  z-index: 2;
}
.about .section-header .title {
  letter-spacing: 2rem;
  margin-right: -2rem;
}
.about-contents {
  --clamp-max: 20;
}
@media screen and (min-width: 768px) {
  .about-contents dl {
    display: grid;
    grid-template-columns: auto 1fr;
  }
}
.about-contents dl dt,
.about-contents dl dd {
  padding-block: 0.5rem;
}
@media screen and (min-width: 768px) {
  .about-contents dl dt,
.about-contents dl dd {
    padding-block: 2rem;
  }
}
.about-contents dl dt {
  font-weight: 400;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .about-contents dl dt:not(:last-of-type) {
    border-bottom: 1px solid;
  }
}
.about-contents dl dd:not(:last-of-type) {
  border-bottom: 1px solid;
}
@media screen and (min-width: 768px) {
  .about-contents dl dd:not(:last-of-type) {
    border-bottom: 1px solid;
  }
}
.about-contents .place .place-name {
  margin-bottom: 1rem;
}
.about-contents .place .map {
  width: min(600px, 100%);
  aspect-ratio: 16/9;
}
.about-contents .place .map iframe {
  width: 100%;
  height: 100%;
}
.about-contents li {
  text-indent: -1em;
  padding-left: 1em;
}
.about-contents .list li::before {
  content: "・";
}
.about-contents .caution li::before {
  content: "※";
}
.about-contents .app-contents *:not(:last-child) {
  margin-bottom: 1rem;
}
.about-contents .app-contents .form,
.about-contents .app-contents .link-end {
  --clamp-min: 20;
  --clamp-max: 26;
  display: block;
  text-align: center;
  color: var(--color-orange-ligthen);
  border-radius: 100svh;
  box-shadow: 3px 3px 0 var(--color-text);
  background-color: var(--color-pink);
  padding: 0.5rem 1rem;
  transition: box-shadow 0.3s, translate 0.3s;
}
@media (any-hover: hover) {
  .about-contents .app-contents .form:hover,
.about-contents .app-contents .link-end:hover {
    translate: 2px 2px;
    box-shadow: initial;
  }
}
.about-contents .app-contents .form:focus-visible,
.about-contents .app-contents .link-end:focus-visible {
  translate: 2px 2px;
  box-shadow: initial;
}
.about-contents .app-contents .link-end {
  background-color: var(--color-text);
  box-shadow: revert;
  padding: revert;
}
.about-contents .app-contents .deadline {
  text-align: center;
}

/* sponsor */
.sponsor {
  position: relative;
  padding-top: revert;
  padding-bottom: 5rem;
}
.sponsor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-orange-ligthen);
  z-index: -1;
}
.sponsor dl {
  display: grid;
  justify-items: center;
  justify-content: center;
  row-gap: 1rem;
  border: solid 1px;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .sponsor dl {
    grid-template-columns: auto auto;
    justify-items: revert;
    gap: 1.5rem 1rem;
    padding: 2rem;
  }
}
.sponsor dd {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .sponsor dd {
    justify-content: revert;
  }
  .sponsor dd::before {
    content: "";
    height: 2rem;
    inline-size: 1ex;
    aspect-ratio: 1;
    -webkit-border-end: 1px solid;
            border-inline-end: 1px solid;
    rotate: 40deg;
  }
}
.sponsor dd a {
  display: block;
}

footer {
  font-size: 0.9em;
  background-image: url(../img/bg.png);
  background-color: var(--color-green);
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .pc-footer {
    display: grid;
    grid-template-columns: repeat(3, auto);
    place-content: center;
  }
  .pc-footer li {
    text-indent: -1em;
    padding-left: 1.3em;
  }
  .pc-footer li:not(:first-child)::before {
    content: "";
    display: inline-block;
    inline-size: 1ex;
    aspect-ratio: 1;
    -webkit-border-before: 1px solid;
            border-block-start: 1px solid;
    -webkit-border-end: 1px solid;
            border-inline-end: 1px solid;
    rotate: 45deg;
    margin: auto 0.3em 0.1em;
  }
}

@media screen and (max-width: 767px) {
  .sp-footer {
    display: flex;
    justify-content: center;
  }
  .sp-footer li {
    padding: 0.8em;
  }
  .sp-footer a {
    display: grid;
    grid-template-rows: 1fr auto;
    place-items: center;
  }
  .sp-footer a::before {
    content: "";
    width: 45px;
    aspect-ratio: 1;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: currentColor;
  }
  .sp-footer a span {
    display: block;
    font-size: 0.9rem;
  }
  .sp-footer .home::before {
    -webkit-mask-image: url(../img/link-home.svg);
            mask-image: url(../img/link-home.svg);
  }
  .sp-footer .radio::before {
    -webkit-mask-image: url(../img/link-radio.svg);
            mask-image: url(../img/link-radio.svg);
  }
}

.snsbtn {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-block: 1rem;
}
.snsbtn a {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.copyright {
  font-size: 0.9em;
  text-align: center;
}

.thanks {
  margin-bottom: 3rem;
}
.thanks .title {
  color: #fff;
  text-underline-offset: 0.4em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
}
.thanks-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 1rem;
  position: relative;
  padding: 2rem;
}
.thanks-text::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  width: 1.1rem;
  aspect-ratio: 1;
  background-color: #f29791;
  border-radius: 50%;
}
.thanks-text::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-orange-ligthen);
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 94%, 91% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 94%, 91% 100%, 0 100%);
}
@media (min-width: 768px) {
  .thanks-text::after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 88%, 95% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 88%, 95% 100%, 0 100%);
  }
}
.thanks-text p {
  margin-bottom: 1rem;
}
.thanks .back {
  --clamp-min: 20;
  --clamp-max: 28;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.3rem;
       column-gap: 0.3rem;
  font-size: 1.2em;
  line-height: 1.3;
  border-bottom: solid 2px currentColor;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.thanks .back::after {
  content: "";
  inset: 0;
  width: 0.7rem;
  aspect-ratio: 1.5/2;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.thanks .back a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .thanks .back a:hover {
    opacity: 0.8;
  }
}
.thanks .back a:focus-visible {
  opacity: 0.8;
}
.thanks .caution li::before {
  content: "※";
}
/*# sourceMappingURL=style.css.map */