@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 400;
  src: url("/wp/wp-content/themes/newone/fonts/NotoSansJP-Regular_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 500;
  src: url("/wp/wp-content/themes/newone/fonts/NotoSansJP-Medium_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 600;
  src: url("/wp/wp-content/themes/newone/fonts/NotoSansJP-SemiBold_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  src: url("/wp/wp-content/themes/newone/fonts/NotoSansJP-Bold_subset.woff") format("woff");
}
@media (min-width: 375px) {
  body {
    /* 375px以上 */
  }
}
@media (min-width: 601px) {
  body {
    /* WordPress601px以上 */
  }
}
@media (min-width: 783px) {
  body {
    /* WordPress783px以上 */
  }
}
@media (min-width: 768px) {
  body {
    /* タブレット以上 */
  }
}
@media (min-width: 769px) {
  body {
    /* 769px以上用 */
  }
}
@media (min-width: 1024px) {
  body {
    /* タブレットPro以上用 */
  }
}
@media (min-width: 1200px) {
  body {
    /* PC（サイトのコンテンツ幅）以上 */
  }
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  33.3333% {
    transform: translateX(-100%);
  }
  33.3334% {
    transform: translateX(200%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  66.6666% {
    transform: translateX(-200%);
  }
  66.6667% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300%);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  99.9%, to {
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  99.9%, to {
    transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
    stroke-dasharray: 464.9568;
    stroke-dashoffset: 464.9568;
  }
  99.9%, to {
    stroke-dasharray: 464.9568;
    stroke-dashoffset: 0;
  }
}
@keyframes circle02 {
  0% {
    stroke-dasharray: 238.7616;
    stroke-dashoffset: 238.7616;
  }
  99.9%, to {
    stroke-dasharray: 238.7616;
    stroke-dashoffset: 0;
  }
}
@keyframes fade-large {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(50%, -50%);
  }
  50.1% {
    opacity: 0;
    transform: translate(-70%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes fade-large-static {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0;
    transform: translateX(50%);
  }
  50.1% {
    opacity: 0;
    transform: translateX(-70%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-up {
  0% {
    opacity: 1;
    transform: translate(-50%, 0) rotate(-90deg);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  50.1% {
    transform: translate(-50%, 80%) rotate(-90deg);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0) rotate(-90deg);
  }
}
@keyframes fade-down {
  0% {
    opacity: 1;
    transform: translateY(-50%) rotate(90deg);
  }
  50% {
    opacity: 0;
    transform: translateY(20%) rotate(90deg);
  }
  50.1% {
    transform: translateY(-150%) rotate(90deg);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) rotate(90deg);
  }
}
@keyframes fade-large_45deg {
  0% {
    opacity: 1;
    transform: translate(0, -50%) rotate(-45deg);
  }
  50% {
    opacity: 0;
    transform: translate(50%, -100%) rotate(-45deg);
  }
  50.1% {
    opacity: 0;
    transform: translate(-70%, 20%) rotate(-45deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%) rotate(-45deg);
  }
}
@keyframes fade-small {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(40%, -50%);
  }
  50.1% {
    transform: translate(-40%, -50%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes fade-top-right {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(-45deg);
  }
  50% {
    opacity: 0;
    transform: translate(40%, -60%) rotate(-45deg);
  }
  50.1% {
    opacity: 0;
    transform: translate(-50%, 75%) rotate(-45deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(-45deg);
  }
}
@keyframes border_hover {
  0% {
    width: 0;
  }
  99.9%, to {
    width: 100%;
  }
}
.thanks-day_section {
  background-color: #f2f2f2;
  overflow: hidden;
}

body:not(.home) .global_contents > .thanks-day_section {
  padding-bottom: initial;
}

[data-tp-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
[data-tp-reveal]._shown {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-tp-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.thanks-day_en-heading {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.11em;
  text-align: center;
  background: linear-gradient(106deg, #b69761 21%, #e6d3a4 35.745%, #d2a868 50.49%, #937438 70.459%, #e0c088 79.261%, #c69f5c 86.454%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #b69761;
}
@media (min-width: 769px) {
  .thanks-day_en-heading {
    font-size: 32px;
  }
}

.thanks-day_hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #0a0a0a;
  overflow: hidden;
}
@media (min-width: 769px) {
  .thanks-day_hero {
    min-height: 804px;
  }
}

.thanks-day_hero_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  isolation: isolate;
}
.thanks-day_hero_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thanks-day_hero_bg .thanks-day_hero_bg_video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}

.thanks-day_hero_inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 186px 80px;
  padding-inline: 20px;
}
@media (min-width: 769px) {
  .thanks-day_hero_inner {
    padding-block: 170px 98px;
  }
}

.thanks-day_hero_badge {
  position: absolute;
  top: 17px;
  right: 19px;
  width: 141px;
  z-index: 3;
}
.thanks-day_hero_badge img {
  width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .thanks-day_hero_badge {
    top: 106px;
    top: 40px;
    right: calc((100% - 1440px) / 2 + 104px);
    width: 203px;
  }
}
@media (min-width: 769px) and (max-width: 1440px) {
  .thanks-day_hero_badge {
    right: 7.2%;
  }
}
@media (width >= 1200px) {
  .thanks-day_hero_badge {
    top: 106px;
  }
}

.thanks-day_hero_title {
  position: relative;
  width: 100%;
  max-width: 335px;
}
.thanks-day_hero_title img {
  width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .thanks-day_hero_title {
    max-width: 618px;
  }
}

.thanks-day_hero_venue {
  margin-top: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #f4ddae;
  text-align: center;
}
@media (min-width: 769px) {
  .thanks-day_hero_venue {
    margin-top: 53px;
    font-size: 24px;
    white-space: nowrap;
  }
}

.thanks-day_hero_cta-box {
  margin-top: 95px;
}
@media (min-width: 769px) {
  .thanks-day_hero_cta-box {
    margin-top: 104px;
  }
}

.thanks-day_hero_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  max-width: 100%;
  height: 56px;
  background-color: #000;
  border: 1.6px solid #efe4cf;
  border-radius: 160px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.08em;
  color: #f4ddae;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}
@media (min-width: 769px) {
  .thanks-day_hero_cta {
    width: 320px;
    height: 64px;
    font-size: 20px;
  }
}
@media (min-width: 769px) {
  .thanks-day_hero_cta:hover {
    background-color: #f4ddae;
    color: #000;
  }
}

.thanks-day_hero_notice {
  position: relative;
  z-index: 2;
  margin-top: -27px;
  width: 100%;
  background-color: #000;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  color: #e3cfb3;
  text-align: center;
  padding-block: 16.25px;
  padding-inline: 16px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (min-width: 769px) {
  .thanks-day_hero_notice {
    margin-top: auto;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.1em;
    padding-block: 14px;
  }
}

.thanks-day_intro {
  position: relative;
  background-color: #f2f2f2;
  padding-block: 20px 15px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .thanks-day_intro {
    padding-top: 63px;
    min-height: 835px;
  }
}

.thanks-day_intro_outer {
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
}

.thanks-day_intro_inner {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}
@media (min-width: 769px) {
  .thanks-day_intro_inner {
    max-width: 900px;
    padding-inline: 20px;
  }
}

.thanks-day_intro_dots {
  display: block;
  width: 12px;
  height: 68px;
  margin-top: 98px;
  margin-inline: auto;
}
@media (min-width: 769px) {
  .thanks-day_intro_dots {
    margin-top: 41px;
  }
}
.thanks-day_intro_dots svg {
  display: block;
  width: 100%;
  height: 100%;
}

.thanks-day_intro_text-box {
  margin-top: 18px;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 688px;
}
@media (min-width: 769px) {
  .thanks-day_intro_text-box {
    max-width: 100%;
    background-color: rgba(242, 242, 242, 0.6);
    border-radius: 8px;
  }
}
.thanks-day_intro_text-box--mt {
  margin-top: 2em;
}
@media (min-width: 769px) {
  .thanks-day_intro_text-box--mt {
    margin-top: 2.6em;
  }
}
.thanks-day_intro_text-box .thanks-day_intro_text {
  margin-top: 1.2em;
}
.thanks-day_intro_text-box .thanks-day_intro_text:first-child {
  margin-top: 0;
}

@media (min-width: 769px) {
  .thanks-day_intro_text-box--last {
    margin-top: initial;
  }
}

.thanks-day_intro_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #323232;
}
@media (min-width: 769px) {
  .thanks-day_intro_text {
    font-size: 16px;
    line-height: 2.7;
    text-align: center;
  }
}

.thanks-day_intro_gap {
  margin-top: 1.5em !important;
}
@media (min-width: 769px) {
  .thanks-day_intro_gap {
    margin-top: 2.6em !important;
  }
}

.thanks-day_intro_strong {
  font-weight: 700;
}

.thanks-day_intro_photo {
  margin-inline: auto;
  width: 84%;
  max-width: 320px;
}
.thanks-day_intro_photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 769px) {
  .thanks-day_intro_photo {
    position: absolute;
    margin: 0;
  }
}

.thanks-day_intro_photo--03._under-769,
.thanks-day_intro_photo--06._under-769 {
  margin-inline: 0 auto;
}

.thanks-day_intro_photo--02._under-769 {
  margin-inline: auto 0;
}

@media (min-width: 769px) {
  .thanks-day_intro_photo--01 {
    top: -27px;
    left: 0;
    max-width: 235px;
  }
}
.thanks-day_intro_photo--01 img {
  aspect-ratio: 235/220;
}

.thanks-day_intro_photo--02 {
  margin-top: 7px;
  display: block;
  width: 100%;
  max-width: 273px;
}
@media (min-width: 769px) {
  .thanks-day_intro_photo--02 {
    top: -31px;
    right: 0;
    max-width: 287px;
  }
}
.thanks-day_intro_photo--02 img {
  aspect-ratio: 287/191;
}

.thanks-day_intro_photo--03 {
  display: block;
  width: 100%;
  max-width: 304px;
}
@media (min-width: 769px) {
  .thanks-day_intro_photo--03 {
    top: 261px;
    left: 0;
    max-width: 279px;
  }
}
.thanks-day_intro_photo--03 img {
  aspect-ratio: 279/173;
}

@media (min-width: 769px) {
  .thanks-day_intro_photo--04 {
    top: 250px;
    right: 0;
    max-width: 226px;
  }
}
.thanks-day_intro_photo--04 img {
  aspect-ratio: 226/212;
}

@media (min-width: 769px) {
  .thanks-day_intro_photo--05 {
    top: 552px;
    left: 0;
    max-width: 204px;
  }
}
.thanks-day_intro_photo--05 img {
  aspect-ratio: 204/256;
}

.thanks-day_intro_photo--06 {
  margin-top: 16px;
  display: block;
  width: 100%;
  max-width: 270px;
}
@media (min-width: 769px) {
  .thanks-day_intro_photo--06 {
    top: 564px;
    right: 0;
    max-width: 267px;
  }
}
.thanks-day_intro_photo--06 img {
  aspect-ratio: 267/202;
}

.thanks-day_program {
  position: relative;
  background-color: #f2f2f2;
  overflow: hidden;
}
@media (min-width: 769px) {
  .thanks-day_program {
    padding-top: 18px;
  }
}

.thanks-day_program_swirl {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: max(1084px, 100vw);
  height: max(264px, 24.32vw);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (min-width: 769px) {
  .thanks-day_program_swirl {
    width: max(2167px, 100vw);
    height: max(527px, 24.32vw);
  }
}
.thanks-day_program_swirl canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.thanks-day_program_inner {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  padding-inline: 9px;
  max-width: 666px;
}
@media (min-width: 769px) {
  .thanks-day_program_inner {
    max-width: 1200px;
  }
}

.thanks-day_program_card {
  background-color: rgba(18, 18, 18, 0.9);
  border: 3px solid #989898;
  border-radius: 16px;
}
@media (min-width: 769px) {
  .thanks-day_program_card {
    border-radius: 24px;
  }
}
.thanks-day_program_card {
  max-width: 880px;
  margin-inline: auto;
  padding-block: 20px;
  padding-inline: 20px;
}
@media (min-width: 769px) {
  .thanks-day_program_card {
    margin-top: 29px;
    padding-block: 14px 36px;
    padding-inline: 154.5px 20px;
  }
}

.thanks-day_program_card-heading {
  margin-top: 12px;
  margin-bottom: 34px;
}

@media (min-width: 769px) {
  .thanks-day_program_table {
    max-width: 582.5px;
  }
}

.thanks-day_program_row {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}
.thanks-day_program_row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
@media (min-width: 769px) {
  .thanks-day_program_row {
    flex-direction: row;
    align-items: baseline;
    gap: 36px;
    padding-block: 35px 2px;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
  }
  .thanks-day_program_row:first-child {
    border-top: none;
  }
}

.thanks-day_program_time {
  flex-shrink: 0;
  font-feature-settings: "tnum";
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #fff;
}
@media (min-width: 769px) {
  .thanks-day_program_time {
    width: 125px;
  }
}

.thanks-day_program_item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #fff;
}
@media (min-width: 769px) {
  .thanks-day_program_item {
    flex: 1;
    min-width: 0;
  }
}

.thanks-day_program_note {
  margin-top: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #fff;
  padding-left: 1em;
  text-indent: -1em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (width >= 375px) {
  .thanks-day_program_note {
    font-size: 13px;
  }
}
@media (min-width: 769px) {
  .thanks-day_program_note {
    margin-top: 10px;
    text-align: left;
  }
}

.thanks-day_speaker {
  position: relative;
  background-color: #f2f2f2;
  padding-top: 51px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .thanks-day_speaker {
    padding-top: 105px;
  }
}

.thanks-day_speaker_inner {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}
@media (min-width: 769px) {
  .thanks-day_speaker_inner {
    max-width: 1440px;
  }
}

.thanks-day_speaker_list {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (min-width: 769px) {
  .thanks-day_speaker_list {
    margin-top: -37px;
    gap: initial;
  }
}

.thanks-day_speaker_item {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .thanks-day_speaker_item {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

@media (min-width: 769px) {
  .thanks-day_speaker_item:nth-child(odd) {
    padding-right: 25px;
  }
}

@media (min-width: 769px) {
  .thanks-day_speaker_item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: 25px;
  }
}

@media (min-width: 769px) {
  .thanks-day_speaker_item:nth-child(2) {
    margin-top: 6px;
  }
}

@media (min-width: 769px) {
  .thanks-day_speaker_item:nth-child(3) {
    align-items: initial;
    margin-top: 69px;
  }
}

.thanks-day_speaker_photo {
  max-width: 335px;
}
@media (min-width: 769px) {
  .thanks-day_speaker_photo {
    flex-shrink: 0;
    max-width: 410px;
  }
}
.thanks-day_speaker_photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 670/910;
}
@media (min-width: 769px) {
  .thanks-day_speaker_photo img {
    aspect-ratio: 410/394;
  }
}

.thanks-day_speaker_item:nth-child(even) .thanks-day_speaker_photo {
  margin-left: auto;
}
@media (min-width: 769px) {
  .thanks-day_speaker_item:nth-child(even) .thanks-day_speaker_photo {
    margin-left: initial;
  }
}

@media (min-width: 769px) {
  .thanks-day_speaker_item:nth-child(3) .thanks-day_speaker_photo {
    margin-top: 46px;
  }
}

.thanks-day_speaker_body {
  flex: 1;
  width: 100%;
  text-align: left;
  margin-top: -56px;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 688px;
}
@media (min-width: 769px) {
  .thanks-day_speaker_body {
    margin-top: initial;
    margin-inline: initial;
    padding-inline: initial;
    max-width: 800px;
  }
}

.thanks-day_speaker_item:nth-child(even) .thanks-day_speaker_body {
  margin-top: -35px;
}

.thanks-day_speaker_role,
.thanks-day_speaker_name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.7;
  color: #323232;
}

.thanks-day_speaker_bio {
  margin-top: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #323232;
}
@media (min-width: 769px) {
  .thanks-day_speaker_bio {
    margin-top: 18px;
  }
}
.thanks-day_speaker_bio + .thanks-day_speaker_bio {
  margin-top: 1.6em;
}

.thanks-day_event {
  position: relative;
  background-color: #f2f2f2;
  padding-top: 59px;
}
@media (min-width: 769px) {
  .thanks-day_event {
    padding-top: 75px;
  }
}

.thanks-day_event_inner {
  margin-inline: auto;
  padding-inline: 9px;
  max-width: 666px;
}
@media (min-width: 769px) {
  .thanks-day_event_inner {
    padding-inline: 25px;
    max-width: 930px;
  }
}

.thanks-day_event_card {
  background-color: rgba(18, 18, 18, 0.9);
  border: 3px solid #989898;
  border-radius: 16px;
}
@media (min-width: 769px) {
  .thanks-day_event_card {
    border-radius: 24px;
  }
}
.thanks-day_event_card {
  padding-block: 28px;
  padding-inline: 24px;
}
@media (min-width: 769px) {
  .thanks-day_event_card {
    margin-top: 45px;
    padding-block: 44px 49px;
    padding-inline: 117px 20px;
  }
}

.thanks-day_event_card-heading {
  margin-bottom: 28px;
  font-size: 27px;
}
@media (width >= 375px) {
  .thanks-day_event_card-heading {
    font-size: 28px;
  }
}

.thanks-day_event_dl {
  display: flex;
  flex-direction: column;
}

.thanks-day_event_row {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 29px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.thanks-day_event_row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
@media (min-width: 769px) {
  .thanks-day_event_row:last-child {
    border-bottom: none;
  }
}
@media (min-width: 769px) {
  .thanks-day_event_row {
    flex-direction: row;
    align-items: baseline;
    gap: 40px;
    padding-block: initial;
    border-top: none;
  }
}

.thanks-day_event_label {
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
}
@media (width >= 375px) {
  .thanks-day_event_label {
    font-size: 18px;
  }
}
@media (min-width: 769px) {
  .thanks-day_event_label {
    width: 104px;
    font-size: 16px;
    line-height: 2.5;
    letter-spacing: 0.1em;
    text-align: right;
    white-space: nowrap;
  }
}

.thanks-day_event_value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
}
@media (width >= 375px) {
  .thanks-day_event_value {
    font-size: 18px;
  }
}
@media (min-width: 769px) {
  .thanks-day_event_value {
    flex: 1;
    min-width: 0;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-align: left;
  }
}

@media (min-width: 769px) {
  .thanks-day_event_value--access {
    line-height: 1.6;
  }
}

.thanks-day_welcome {
  margin-top: 37px;
  background-color: #000;
}
@media (min-width: 769px) {
  .thanks-day_welcome {
    margin-top: 57px;
  }
}

.thanks-day_welcome_inner {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thanks-day_welcome_notice {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  color: #e3cfb3;
  text-align: center;
  padding-block: 11px 10px;
  padding-inline: 16px;
}
@media (min-width: 769px) {
  .thanks-day_welcome_notice {
    padding-block: 17px 19px;
    padding-inline: 20px;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}

.thanks-day_welcome_photo {
  width: 100%;
}
.thanks-day_welcome_photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 375/211;
}
@media (min-width: 769px) {
  .thanks-day_welcome_photo img {
    aspect-ratio: 2880/1298;
  }
}

.thanks-day_welcome_message {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #e3cfb3;
  text-align: center;
  padding-block: 20px 24px;
  padding-inline: 10px;
}
@media (min-width: 769px) {
  .thanks-day_welcome_message {
    padding-block: 13px 16px;
    padding-inline: 20px;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
}

.thanks-day_form {
  background-color: #f2f2f2;
  padding-block: 49px 100px;
}
@media (min-width: 769px) {
  .thanks-day_form {
    padding-block: 100px 94px;
  }
}

.thanks-day_form_inner {
  margin-inline: auto;
  padding-inline: 20px;
}

.thanks-day_form_heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  background: linear-gradient(103.34deg, #dcbf8e 21%, #c5ab80 35.745%, #e1bc83 50.49%, #bb9657 69.911%, #c69f5c 86.454%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #c69f5c;
}
@media (min-width: 769px) {
  .thanks-day_form_heading {
    font-size: 32px;
  }
}

@media (width >= 375px) {
  .thanks-day_form_box-outer {
    margin-inline: auto;
    padding-inline: 25px;
  }
}
@media (min-width: 769px) {
  .thanks-day_form_box-outer {
    max-width: 1049px;
  }
}

.thanks-day_form_box {
  margin-top: 37px;
  margin-inline: auto;
  padding-block: 36px;
  padding-inline: 16px;
  background-color: #fff;
}
@media (width >= 375px) {
  .thanks-day_form_box {
    padding-inline: 24px;
  }
}
@media (min-width: 769px) {
  .thanks-day_form_box {
    margin-top: 48px;
    padding-block: 56px;
    padding-inline: 48px;
  }
}

.thanks-day_form_embed {
  min-height: 344px;
}
@media (min-width: 769px) {
  .thanks-day_form_embed {
    min-height: 1060px;
  }
}

/*# sourceMappingURL=thanks-day.css.map */
