@charset "UTF-8";
/** @format */
:root {
  --inline-size: min(1200px, 100% - 2rem);
  --font-size: clamp(1rem, 0.886rem + 0.485vw, 1.125rem);
  --font-size-md: clamp(1.4rem, 0.977rem + 1.36vw, 2rem);
  --font-size-lg: clamp(3rem, 2.636rem + 1.82vw, 5rem);
  --main-color-red: #d7000f;
  --sub-color-red: #bd141b;
  --main-color-green: #004526;
  --color-off-white: #f3f3ec;
  --text-shadow-red: 0 0 2px var(--sub-color-red), 0 0 2px var(--sub-color-red),
    0 0 2px var(--sub-color-red), 0 0 5px var(--sub-color-red),
    0 0 10px var(--sub-color-red), 0 0 20px var(--sub-color-red);
  --text-shadow-title: 0 0 6px #dbac54,
    0 0 30px color-mix(in srgb, #dbac54, #dbac54 50%),
    0 0 12px color-mix(in srgb, #dbac54, #dbac54 40%),
    0 0 21px color-mix(in srgb, #dbac54, #dbac54 30%),
    0 0 34px color-mix(in srgb, #dbac54, #dbac54 20%),
    0 0 54px color-mix(in srgb, #dbac54, #dbac54 10%);
  --gradation: linear-gradient(
    #956a26 0%,
    #dbb061 30%,
    #f1e187 64%,
    #dbb061 84%,
    #956a26 100%
  );
  --bg-gradation: linear-gradient(
    -45deg,
    #dfdcc5,
    #f4f4f5,
    #dfd9ce,
    #fdfceb,
    #ebeced
  );
  --border-image: linear-gradient(
    90deg,
    #956a26 0%,
    #dbb061 30%,
    #f1e187 64%,
    #dbb061 84%,
    #956a26 100%
  );
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #1b2026;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button:not([disabled]):not([aria-hidden]):not([aria-selected]) {
  cursor: pointer;
}

.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: block;
}
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.header {
  font-size: var(--font-size);
  font-weight: 700;
  background-image: url(../img/bg.svg);
  background-position: top center;
  background-size: contain;
  padding-bottom: 3rem;
}
.header h1 {
  background-image: url(../img/bg_bulr.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.header .sponcer img,
.header h1 img {
  margin-inline: auto;
}
.header-mv {
  background-image: url(../img/decoration_ribbon_left.svg), url(../img/decoration_ribbon_right.svg);
  background-position: top -7% left, top -20% right;
  background-size: 27%, 18%;
  background-repeat: no-repeat;
  width: min(1000px, 100%);
  margin-inline: auto;
  padding: 0.5rem 0.5rem 0;
}
@media (min-width: 768px) {
  .header-mv {
    padding: 1rem 1rem 0;
  }
}
.header-mv * {
  margin-bottom: 1rem;
}
.header-deadline {
  margin-inline: 1rem;
  margin-bottom: 3rem;
}
.header-deadline dl {
  display: grid;
  place-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  color: #956a26;
  font-size: 1.1em;
  line-height: 1.5;
  border-radius: 8px;
  background: var(--bg-gradation);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 1rem;
}
@media (min-width: 768px) {
  .header-deadline dl {
    grid-template-columns: repeat(2, auto);
    font-size: 1.4em;
    padding: 1rem 2rem;
    line-height: revert;
  }
}
.header-deadline dt {
  text-align: center;
  color: var(--color-off-white);
  border-radius: 4px;
  background-color: var(--main-color-red);
  padding-inline: 0.5rem;
}
.header-deadline .receipt,
.header-deadline span {
  font-size: 0.75em;
}
.header-present {
  color: #fff;
  font-size: 1.1em;
}
@media (min-width: 768px) {
  .header-present {
    text-align: center;
    font-size: 1.4em;
  }
}
.header .present-text {
  width: min(1000px, 100%);
  margin-inline: auto;
  margin-bottom: 1rem;
}
.header .present-text h2 {
  text-align: center;
  font-size: 1.5em;
  text-shadow: var(--text-shadow-title);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.header .tenmaya-group {
  display: block;
  font-size: 1.15em;
}
.header .present-image {
  display: grid;
  justify-content: center;
  align-items: end;
  grid-template-columns: auto fit-content(3rem) auto;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .header .present-image {
    display: grid;
    grid-template-columns: auto fit-content(2rem) auto;
  }
}
.header .present-image .present01 {
  grid-area: 1/1/1/span 2;
}
.header .present-image .present02 {
  grid-area: 1/span 2/1/4;
  z-index: 1;
}
@media (max-width: 767px) {
  .header .present-image .present02 img {
    max-width: 90%;
    margin-left: auto;
  }
}
.header .present-text,
.header .text-smaller {
  --text-shadow: 0 0 2px #cca65f, 0 0 2px #cca65f, 0 0 2px #cca65f,
    0 0 5px #cca65f, 0 0 10px #cca65f, 0 0 20px #cca65f;
  color: currentColor;
  text-shadow: var(--text-shadow-red);
  padding-inline: 1rem;
}
.header .text-smaller {
  text-align: center;
}

main {
  border-top: 18px solid;
  -o-border-image: var(--border-image);
     border-image: var(--border-image);
  border-image-slice: 1;
  background: url(../img/bg_main.png), var(--bg-gradation);
  padding-block: 3rem;
}
main section {
  width: var(--inline-size);
  margin-inline: auto;
}

.how-to hgroup {
  color: #fff;
  font-size: var(--font-size-lg);
  text-align: center;
  text-shadow: var(--text-shadow-title);
  line-height: 1.3;
  margin-bottom: 3rem;
}
.how-to hgroup h2 {
  font-family: "Limelight", sans-serif;
}
.how-to hgroup p {
  font-size: 0.35em;
  font-weight: 700;
  letter-spacing: 2px;
}
.how-to .text-main {
  --text-shadow-offwhite: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff,
    0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff;
  text-shadow: var(--text-shadow-offwhite);
  font-size: var(--font-size-md);
  font-weight: 700;
  margin-bottom: 1rem;
}
.how-to .text-main h3 {
  color: #fff;
  text-shadow: var(--text-shadow-red);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.how-to .text-main .h3-number {
  font-size: 1.1em;
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  text-shadow: initial;
  text-box-trim: trim-both;
  background: linear-gradient(color-mix(in srgb, var(--main-color-red), #fff 20%), 50%, var(--main-color-red) 50%);
  -webkit-clip-path: polygon(100% 0%, 94% 50%, 100% 100%, 0 100%, 6% 50%, 0 0);
          clip-path: polygon(100% 0%, 94% 50%, 100% 100%, 0 100%, 6% 50%, 0 0);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 2rem;
}
.how-to .text-main p {
  font-size: 0.8em;
}

.list-how-to {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: var(--font-size);
}
.list-how-to__item {
  border-radius: 1.5rem;
}

.link-btn {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  background-color: var(--main-color-red);
  border-radius: 8px;
  padding: 0.5rem;
  margin-block: 1rem;
}

.form {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-size: 28px;
  box-shadow: 0px 5px 2px -1px rgba(0, 0, 0, 0.5019607843);
  transition: box-shadow 0.2s, translate 0.2s;
}
@media screen and (max-width: 768px) {
  .form {
    font-size: 20px;
  }
}
@media (any-hover: hover) {
  .form:hover {
    box-shadow: none;
    translate: 0 2px;
  }
}
.form:focus-visible {
  box-shadow: none;
  translate: 0 2px;
}

.wrap-apply .form {
  background: var(--main-color-red);
}
.wrap-apply .form::before, .wrap-apply .form::after {
  content: "";
  inset: 0;
  margin: auto;
  width: 30px;
  aspect-ratio: 43/50;
  background-image: url(../img/icon_star.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.wrap-apply .form::before {
  -webkit-animation: rotate-left 1s linear infinite alternate;
          animation: rotate-left 1s linear infinite alternate;
}
.wrap-apply .form::after {
  -webkit-animation: rotate-right 1s linear infinite alternate;
          animation: rotate-right 1s linear infinite alternate;
}

@-webkit-keyframes rotate-left {
  0% {
    scale: 0.7;
    rotate: -20deg;
  }
  100% {
    scale: 1;
    rotate: 20deg;
  }
}

@keyframes rotate-left {
  0% {
    scale: 0.7;
    rotate: -20deg;
  }
  100% {
    scale: 1;
    rotate: 20deg;
  }
}
@-webkit-keyframes rotate-right {
  0% {
    scale: 1;
    rotate: -20deg;
  }
  100% {
    scale: 0.7;
    rotate: 20deg;
  }
}
@keyframes rotate-right {
  0% {
    scale: 1;
    rotate: -20deg;
  }
  100% {
    scale: 0.7;
    rotate: 20deg;
  }
}
.private .form {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  font-size: 18px;
  background-color: var(--main-color-green);
}
.private .form::after {
  content: "";
  inset: 0;
  margin: auto;
  width: 8px;
  aspect-ratio: 1/1.5;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #fff;
}

.wrap-subject,
.wrap-apply {
  border-block: 7px solid;
  -o-border-image: var(--border-image);
     border-image: var(--border-image);
  border-image-slice: 1;
  background-color: #fff;
}

.wrap-subject {
  margin-bottom: 1rem;
}
.wrap-subject__head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 100%;
  align-items: center;
  border-bottom: 2px solid;
  -o-border-image: var(--border-image);
     border-image: var(--border-image);
  border-image-slice: 1;
}
.wrap-subject__head__title, .wrap-subject__head__description {
  align-self: stretch;
  font-weight: 700;
  font-size: 24px;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .wrap-subject__head__title, .wrap-subject__head__description {
    font-size: 18px;
  }
}
.wrap-subject__head__title {
  display: grid;
  place-items: center;
  color: var(--color-off-white);
  text-shadow: var(--text-shadow-title);
  background: var(--gradation);
}
.wrap-subject__head__title:only-child {
  grid-column: span 2;
}
.wrap-subject__head__description {
  color: var(--main-color-red);
}
.wrap-subject__head__description > span {
  display: inline-block;
}
.wrap-subject__body {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .wrap-subject__body {
    padding: 3rem;
  }
}
.wrap-subject__body .img-product-list img {
  margin-inline: auto;
}
.wrap-subject .group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}
@media (max-width: 767px) {
  .wrap-subject .group img {
    width: 150px;
  }
}

.wrap-tabs__tablist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-size: var(--font-size);
}
.wrap-tabs__tablist__item {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .wrap-tabs__tablist__item {
    font-size: 1.4em;
    padding: 1rem;
  }
}
.wrap-tabs__tablist__item[aria-selected=true] {
  background-color: var(--main-color-red);
  display: grid;
}
.wrap-tabs__tablist__item[aria-selected=true]::after {
  content: "";
  inset: 0;
  margin: auto;
  width: 15px;
  aspect-ratio: 1.5/1;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #fff;
}
.wrap-tabs__tablist__item[aria-selected=false] {
  cursor: pointer;
  background-color: color-mix(in srgb, #000 40%, var(--main-color-red));
  margin-top: 1rem;
  transition: background-color 0.2s;
}
@media (any-hover: hover) {
  .wrap-tabs__tablist__item[aria-selected=false]:hover {
    background-color: color-mix(in srgb, #000 15%, var(--main-color-red));
  }
}
.wrap-tabs__tablist__item[aria-selected=false]:focus-visible {
  background-color: color-mix(in srgb, #000 15%, var(--main-color-red));
}

.wrap-apply {
  color: var(--color-text);
  border-top: none;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .wrap-apply {
    padding: 3rem;
  }
}

.text-heading {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.list-important {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.7em;
       column-gap: 1.7em;
  color: red;
  font-size: 1.1em;
  font-weight: 700;
  list-style-type: none;
}

.list-hagaki-subject {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1em;
}
.list-hagaki-subject > dt {
  align-self: stretch;
  font-weight: 700;
  padding: 1em;
  border: 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .list-hagaki-subject > dt {
    writing-mode: vertical-rl;
  }
}

.img-hagaki-sample {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 0.5rem;
}
.img-hagaki-sample > figcaption {
  grid-column: span 2;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}
.img-hagaki-sample > figcaption::before {
  content: "▼";
}

.text-smaller {
  font-size: 0.9em;
}

.list-notes {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  list-style: "※";
  padding-left: 1em;
}
@media (max-width: 767px) {
  .list-notes {
    line-height: 1.6;
  }
}

.private-heading {
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  -webkit-text-decoration: underline 2px;
          text-decoration: underline 2px;
}

#footer {
  justify-items: center;
  text-align: center;
  border-top: 18px solid;
  -o-border-image: var(--border-image);
     border-image: var(--border-image);
  border-image-slice: 1;
  background-color: var(--color-off-white);
  overflow: hidden;
  padding: 2rem 1rem;
}

.list-organization {
  font-size: 20px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 576px) {
  .list-organization {
    grid-template-columns: 100%;
  }
}
.list-organization > dt {
  align-self: stretch;
  border: 1px solid;
  padding: 0.25em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-organization > dd {
  word-break: keep-all;
}

.text-phone-number {
  font-size: 1.5em;
}
.text-phone-number::before {
  content: "";
  display: inline-block;
  vertical-align: text-bottom;
  width: 1em;
  aspect-ratio: 1;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z' /%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z' /%3E%3C/svg%3E");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}

.wrap-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  filter: drop-shadow(0px 0px 5px var(--color-off-white));
}

.link-rsk-top {
  display: block;
  width: 6rem;
  transition: opacity 0.2s;
}
@media (any-hover: hover) {
  .link-rsk-top:hover {
    opacity: 0.7;
  }
}
.link-rsk-top:focus-visible {
  outline: solid;
  outline-offset: 0.2em;
}

.wrap-thanks {
  text-align: center;
  color: #fff;
}
.wrap-thanks__heading {
  font-weight: 700;
  font-size: 32px;
}
.wrap-thanks .link-btn {
  color: var(--main-color-red);
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 2rem;
  -moz-column-gap: 0.3rem;
       column-gap: 0.3rem;
}
.wrap-thanks .link-btn::after {
  content: "";
  inset: 0;
  margin: auto;
  width: 10px;
  aspect-ratio: 1/1.5;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: var(--main-color-red);
}
/*# sourceMappingURL=style.css.map */