@charset "UTF-8";
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: none;
}

input[type=text] {
  background: #F0EDEA;
  border-radius: 5px;
  height: 38px;
  padding: 10px;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
  font-style: var(--ff_ja);
  opacity: 1;
  /* Firefox対策 */
}

input::placeholder,
textarea::placeholder {
  color: #999;
  font-style: var(--ff_ja);
  opacity: 1;
  /* Firefox対策 */
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* ============================================================
追加
============================================================== */
::-moz-selection {
  background: #7F906B;
  color: #fff;
}
::selection {
  background: #7F906B;
  color: #fff;
}

:root {
  --cl_point: #7F906B;
  --cl_txt: #6A4A31;
  --cl_back: #E6E6DC;
  --ff_en: "Bodoni Moda", sans-serif;
  --ff_hikki: "Pinyon Script", sans-serif;
  --ff_ja: "Noto Serif", serif;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #ECECE4;
  color: var(--cl_txt);
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: clamp(14px, 1.7vw, 17px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  position: relative;
  z-index: -1;
  font-optical-sizing: auto;
}

.pc_container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 135px;
}
.pc_container::after {
  content: "";
  display: inline-block;
  background-image: url(../img/natural/pc_bg.svg);
  background-size: cover;
  width: 620px;
  height: 440px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.pc_container .pc_textbox {
  font-family: var(--ff_en);
  text-align: left;
  font-weight: 500;
}
.pc_container .pc_textbox h2 {
  font-size: 44px;
  letter-spacing: 0.2em;
}
.pc_container .pc_textbox h3 {
  font-size: 56px;
  letter-spacing: 0.2em;
  margin: 25px 0 30px 0;
  background: var(--cl_point);
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 15px;
}
.pc_container .pc_textbox h4 {
  font-size: 27px;
}
.pc_container .pc_textbox h4 span {
  margin-left: 20px;
}

@media screen and (max-width: 1260px) {
  .pc_textbox {
    display: none;
  }
  #container {
    max-width: 100%;
    padding: 0;
    height: 100%;
  }
}
#container {
  width: 450px;
  height: 790px;
  position: relative;
  background-color: var(--cl_back);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
#container .flower_r {
  top: 0;
  right: 0;
}
#container .mv .flower_l {
  width: 300px;
  bottom: -120px;
  left: -25px;
  z-index: -1;
}

@media screen and (max-width: 450px) {
  .pc_container {
    display: initial;
  }
  .pc_container::after {
    content: none;
  }
  #container {
    width: 100%;
    height: 100svh;
    max-height: initial;
    border-radius: initial;
  }
  .scrollbar_container .scrollbar-text_05,
  .scrollbar_container .scrollbar_05 {
    display: none;
  }
}
.mv {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 70px;
  max-width: 410px;
  position: relative;
  z-index: 1;
}
.mv .card_himo {
  width: 122%;
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.mv .card_himo img {
  max-width: 100%;
}
.mv .cardbox {
  margin-top: 50px;
}
.mv .cardbox .card_txt h1 {
  font-size: 24px;
  font-family: var(--ff_hikki);
  letter-spacing: 0.1em;
  line-height: 1;
}
.mv .cardbox .card_txt .wedding_name {
  font-size: clamp(30px, 3.6vw, 36px);
  font-family: var(--ff_hikki);
  letter-spacing: 0.2em;
  padding: 24px 0;
}
.mv .cardbox .card_txt .wedding_name span {
  font-size: 30px;
}
.mv .cardbox .card_txt .wedding_day {
  font-family: var(--ff_en);
  font-size: 32px;
  font-weight: 400;
  margin-top: 120px;
  margin-bottom: 30px;
  letter-spacing: 0.2em;
}
.mv .cardbox .card_txt p {
  font-size: 13px;
  letter-spacing: 0.1em;
}

.countdown {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 70px;
  padding: 30px;
  background: #ffffff;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}
.countdown .countdown_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
  border-bottom: 1px solid #C7B299;
  padding-bottom: 30px;
}
.countdown h3 {
  font-size: 30px;
  font-family: var(--ff_en);
  color: var(--cl_point);
  letter-spacing: 0.1em;
  margin-top: 20px;
}
.countdown h3 span {
  font-size: 21px;
  padding-right: 5px;
}
.countdown #after_message h2 {
  font-family: var(--ff_hikki);
  font-size: 65px;
  letter-spacing: 0.075em;
  color: var(--cl_point);
  line-height: 1.5;
}
.countdown #after_message h3 {
  transform: scale(0.7);
  color: var(--cl_txt);
}

.message {
  background: #fff;
  position: relative;
  margin-bottom: 70px;
  padding: 30px 0;
}
.message::before, .message::after {
  content: "";
  display: inline-block;
  background-image: url(../img/natural/kami.svg);
  background-size: cover;
  width: 105%;
  height: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.message::before {
  top: -38px;
}
.message::after {
  transform: rotate(180deg) translateX(50%);
  bottom: -38px;
}
.message .message_wrap {
  width: 90%;
  margin: 0 auto;
}
.message .message_wrap .message_ph {
  width: 100%;
  margin: 30px 0;
}
.message .message_wrap .message_ph img {
  max-width: 100%;
}
.message .message_wrap p {
  font-size: 14px;
  line-height: 2;
}

.profile {
  position: relative;
}
.profile .pro_box {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.profile .pro_box .pro_ph {
  width: 100%;
  max-width: 250px;
}
.profile .pro_box .pro_ph img {
  max-width: 100%;
}
.profile .pro_box h3.pro_name {
  font-size: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  letter-spacing: 0.2em;
}
.profile .pro_box h3.pro_name span {
  font-size: 17px;
}
.profile .pro_box p {
  font-size: 14px;
  line-height: 1.8;
}
.profile .shinrou .flower_l {
  z-index: -1;
  top: 30px;
  left: -5px;
}
.profile .shinpu {
  margin: 70px 0;
}
.profile .shinpu .flower_c {
  z-index: -1;
  bottom: 150px;
  right: -5px;
}

.album {
  padding: 30px 0;
  background: #fff;
  position: relative;
  /*各スライドのスタイル*/
  /*サムネイルのスタイル*/
  /*矢印ボタンの色を変更*/
}
.album::before {
  content: "";
  display: inline-block;
  background-image: url(../img/nami_ue.svg);
  background-size: cover;
  width: 105%;
  height: 63px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.album::before {
  top: -60px;
}
.album::after {
  content: "";
  display: inline-block;
  background-image: url(../img/nami_shita.svg);
  background-size: cover;
  width: 105%;
  height: 37px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.album::after {
  bottom: -30px;
}
.album .swiper {
  position: relative;
  overflow: initial;
}
.album .swiper::after {
  content: "";
  display: inline-block;
  background-image: url(../img/natural/slider_flower.png);
  background-size: cover;
  width: 62px;
  height: 74px;
  position: absolute;
  top: -45px;
  left: 30px;
  z-index: 2;
}
.album .swiper-container {
  width: 100%;
  aspect-ratio: 3/2;
  margin: 0.5rem auto;
  overflow: hidden;
}
.album .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.album .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.album .slider {
  width: 90%;
  margin: 25px auto;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.album .swiper-thumbnail {
  width: 90%;
  height: 90px;
}
.album .swiper-thumbnail .swiper-slide {
  opacity: 0.2;
  transition: opacity 0.5s;
  border-radius: 8px;
  overflow: hidden;
}
.album .swiper-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.album .swiper-button-next,
.album .swiper-button-prev {
  position: absolute;
  z-index: 10;
}
.album .swiper-button-next img,
.album .swiper-button-prev img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
.album .swiper-button-next::after,
.album .swiper-button-prev::after {
  content: none;
}
.album .swiper-button-next {
  right: 15px;
}
.album .swiper-button-prev {
  left: 15px;
}

.info {
  margin-top: 70px;
  margin-bottom: 30px;
}
.info .cardbox_wrap {
  width: 90%;
  margin: 0 auto;
}
.info .cardbox_wrap .cardbox {
  border: 1px solid #ffffff;
}
.info .cardbox_wrap .cardbox .card_txt {
  background: #ffffff;
  padding: 20px;
}
.info .cardbox_wrap .cardbox .card_txt .info_weddingday {
  font-size: 28px;
  font-family: var(--ff_en);
  letter-spacing: 0.075em;
  padding: 35px 0;
}
.info .cardbox_wrap .cardbox .card_txt .info_weddingday span {
  font-size: 14px;
  font-family: var(--ff_ja);
}
.info .cardbox_wrap .cardbox .card_txt .info_box .info_day {
  font-size: 16px;
  font-family: var(--ff_ja);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 10px 0;
}
.info .cardbox_wrap .cardbox .card_txt .info_box .info_day span {
  font-size: 28px;
  font-family: var(--ff_en);
  margin-left: 10px;
  letter-spacing: 0.15em;
}
.info .cardbox_wrap .cardbox .card_txt .info_box p {
  font-size: 14px;
  margin-bottom: 30px;
}
.info .cardbox_wrap .cardbox .card_txt .info_box .info_price {
  font-size: 28px;
  margin: 20px 0 10px 0;
}
.info .cardbox_wrap .cardbox .card_txt .gmap {
  background: var(--cl_point);
  color: #fff;
  padding: 20px 20px 25px 20px;
}
.info .cardbox_wrap .cardbox .card_txt .gmap .info_ttl {
  font-size: 16px;
}
.info .cardbox_wrap .cardbox .card_txt .gmap .info_ttl::after {
  content: "";
  background: #fff;
}
.info .cardbox_wrap .cardbox .card_txt .gmap .info_ttl span {
  background: var(--cl_point);
}
.info .cardbox_wrap .cardbox .card_txt .gmap p {
  font-size: 14px;
}
.info .cardbox_wrap .cardbox .card_txt .gmap p .kaijou {
  display: block;
  font-size: 19px;
  margin: 10px 0;
}
.info .cardbox_wrap .cardbox .card_txt .gmap p .tel {
  margin: 5px 0 10px 0;
  display: block;
}
.info .cardbox_wrap .cardbox .card_txt .gmap .gmap_btn {
  position: relative;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.info .cardbox_wrap .cardbox .card_txt .gmap .gmap_btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.info .cardbox_wrap .cardbox .card_txt .gmap .gmap_btn img {
  width: 17px;
}

.rsvp {
  background: #fff;
  padding: 35px;
  padding-bottom: 100px;
  position: relative;
  /* -------------------------------
  フォーム内装飾
  --------------------------------- */
}
.rsvp::before {
  content: "";
  display: inline-block;
  background-image: url(../img/natural/rsvp_ue.png);
  background-size: cover;
  width: 242px;
  aspect-ratio: 1/0.936;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
.rsvp .alert {
  margin: 35px 0;
}
.rsvp .alert h4 {
  font-size: 17px;
  line-height: 1.8;
}
.rsvp .alert h4 span {
  font-size: 22px;
  margin-right: 5px;
  text-decoration: underline;
  font-weight: 600;
}
.rsvp .rsvp_form {
  text-align: left;
  position: relative;
  z-index: 1;
  font-size: 16px;
}
.rsvp .rsvp_form .smf-item {
  margin-bottom: 20px;
}
.rsvp .rsvp_form input[type=text] {
  background: rgba(240, 237, 234, 0.6392156863);
  border-radius: 5px;
  height: 38px;
  padding: 10px;
  width: 100%;
}
.rsvp .rsvp_form .smf-form .smf-text-control__control {
  border: none !important;
}
.rsvp .rsvp_form input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.rsvp .rsvp_form input[type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 5px;
  background: rgba(240, 237, 234, 0.6392156863);
  border-radius: 5px;
  height: 38px;
  padding: 10px;
  width: 100%;
}
.rsvp .rsvp_form input[type=radio] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid var(--cl_point);
  border-radius: 50%;
}
.rsvp .rsvp_form input[type=radio]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--cl_point);
  content: "";
}
.rsvp .rsvp_form .smf-form .smf-radio-button-control__control:checked {
  background: #fff !important;
}
.rsvp .rsvp_form input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cl_point);
  content: "";
}
.rsvp .rsvp_form textarea {
  background-color: rgba(240, 237, 234, 0.6392156863);
  border: none !important;
  width: 100%;
  height: 150px;
  border-radius: 8px;
  resize: none;
  padding: 10px;
}
.rsvp .rsvp_form select {
  width: 90%;
  padding: 5px;
  font-size: 14px;
  border: 1px solid rgba(240, 237, 234, 0.6392156863);
  border-radius: 6px;
  background-color: rgba(240, 237, 234, 0.6392156863);
  color: var(--cl_txt);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200l5%206%205-6z%22%20fill%3D%22%23333%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
}
.rsvp .rsvp_form .smf-form .smf-select-control {
  display: inline-block;
  position: relative;
  width: 90%;
}
.rsvp .rsvp_form .smf-select-control__toggle::before {
  content: none;
}
.rsvp .rsvp_form .smf-action {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rsvp .rsvp_form .smf-action .smf-button-control__control {
  font-size: 16px;
  font-family: var(--ff_ja);
  background: var(--cl_point);
  color: #fff;
  padding: 10px 30px;
  border-radius: 100px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  margin-top: 35px;
  border: none;
}
.rsvp .rsvp_form .smf-error-messages {
  font-size: 13px;
}
.rsvp .rsvp_form .smf-item__label__text {
  display: inline-block;
  font-size: 12px;
  margin-bottom: 5px;
}
.rsvp .rsvp_form .required .smf-item__label__text {
  position: relative;
}
.rsvp .rsvp_form .required .smf-item__label__text::after {
  content: "*必須";
  color: #c0392b;
  display: inline-block;
  margin-left: 10px;
}
.rsvp .rsvp_form .attendance .smf-item__col--label {
  display: none;
}
.rsvp .rsvp_form .attendance .smf-radio-buttons-control__control {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rsvp .rsvp_form .attendance .smf-label {
  margin-right: 0 !important;
}
.rsvp .rsvp_form .attendance .smf-radio-button-control__label {
  position: relative;
  text-align: center;
  font-size: 22px;
  display: inline-block;
  width: 135px;
  height: 135px;
  line-height: 110px;
  margin: 0 16px;
  border-radius: 50%;
  border: 1px solid var(--cl_point);
  color: var(--cl_txt);
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.rsvp .rsvp_form .attendance .smf-radio-button-control__label::before {
  content: "";
  background-image: url(../img/natural/attendance_flower.png);
  background-size: cover;
  width: 45px;
  aspect-ratio: 1/1.349;
  position: absolute;
  left: -15px;
  top: 5px;
  opacity: 0;
}
.rsvp .rsvp_form .attendance .smf-placeholder[data-name=attendance] input[type=radio] {
  display: none;
}
.rsvp .rsvp_form .attendance input[value=出席] + .smf-radio-button-control__label::after, .rsvp .rsvp_form .attendance input[value=欠席] + .smf-radio-button-control__label::after {
  display: block;
  font-size: 12px;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cl_txt);
}
.rsvp .rsvp_form .attendance input[value=出席] + .smf-radio-button-control__label::after {
  content: "Attend";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rsvp .rsvp_form .attendance input[value=欠席] + .smf-radio-button-control__label::after {
  content: "Decline";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rsvp .rsvp_form .attendance .smf-placeholder[data-name=attendance] input[type=radio]:checked + .smf-radio-button-control__label {
  background: var(--cl_point);
  color: #fff;
  border-color: var(--cl_point);
}
.rsvp .rsvp_form .attendance .smf-placeholder[data-name=attendance] input[type=radio]:checked + .smf-radio-button-control__label::before {
  opacity: 1;
}
.rsvp .rsvp_form .attendance .smf-placeholder[data-name=attendance] input[type=radio]:checked + .smf-radio-button-control__label::after {
  color: #fff;
}
.rsvp .rsvp_form fieldset legend {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  background: var(--cl_point);
  border-radius: 5px;
  font-size: 13px;
  padding: 0px 10px;
  color: #fff;
}
.rsvp .rsvp_form fieldset .smf-radio-button-control {
  font-size: 14px;
}
.rsvp .rsvp_form .smf-placeholder {
  position: relative;
  padding: 3px 0;
}
.rsvp .rsvp_form .smf-placeholder[data-name=bus_time] .smf-radio-buttons-control {
  margin-bottom: 20px;
}
.rsvp .rsvp_form .smf-placeholder .smf-control-description {
  display: none;
  position: absolute;
  top: -30px;
  left: 0;
}
.rsvp .rsvp_form .smf-item__controls p {
  font-size: 14px;
  margin-bottom: 20px;
}
.rsvp .rsvp_form [data-screen=confirm] .smf-item__col--label {
  display: block;
}
.rsvp .rsvp_form [data-screen=confirm] .smf-item__label {
  background: var(--cl_back);
}
.rsvp .rsvp_form [data-screen=confirm] .smf-placeholder {
  min-height: 15px;
}
.rsvp .rsvp_form [data-screen=confirm] .smf-item__controls p {
  display: none;
}
.rsvp .rsvp_form [data-screen=confirm] .smf-control-description {
  display: block !important;
}
.rsvp .rsvp_form .smf-item--divider {
  margin-top: 0;
}
.rsvp .rsvp_form .alertMes {
  width: 90%;
  margin: 30px auto;
  font-size: 14px;
  text-align: justify;
  border: 1px solid #a7a7a7;
  border-radius: 8px;
  padding: 15px 10px;
  text-align: center;
  display: none;
}
.rsvp .rsvp_form .alertMes h4 {
  text-align: center;
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: bold;
}
.rsvp .rsvp_form .alertMes p {
  position: relative;
  margin-bottom: 0;
}
.rsvp .rsvp_form .alertMes p span {
  display: block;
  text-align: center;
  font-size: 16px;
}
.rsvp .rsvp_form .alertMes p span:nth-child(1) {
  padding-bottom: 10px;
  font-size: 14px;
}
.rsvp .rsvp_form .alertMes .wp-container-core-group-is-layout-8cf370e7 {
  align-items: center;
  margin-top: 15px;
}
.rsvp .rsvp_form [data-screen=confirm] .alertMes {
  display: block;
}
.rsvp .rsvp_form [data-screen=confirm] .alertMes p {
  display: block;
}

/* bodyに追加されるクラスによるフェードアウト用 */
.smf-redirecting {
  opacity: 1;
  transition: opacity 3s ease;
  pointer-events: none;
}

/* ローディング画面用 */
#smf-loading-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  line-height: 100vh;
  font-size: 16px;
  color: #333;
}

body.smf-redirecting #smf-loading-overlay {
  display: block;
}

/* ============================================================
animationちらつき防止
============================================================== */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
}

/* ============================================================
花あしらい
============================================================= */
.flower_r,
.flower_l,
.flower_c {
  width: 300px;
  position: absolute;
}
.flower_r img,
.flower_l img,
.flower_c img {
  max-width: 100%;
}

/* ============================================================
カード枠線あしらい
============================================================== */
.cardbox {
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  padding: 20px;
}
.cardbox .card_txt {
  background: rgba(255, 255, 255, 0.5019607843);
  padding: 70px 0;
}

/* ============================================================
インフォメーション タイトル
============================================================== */
.info_ttl {
  font-size: 19px;
  letter-spacing: 0.2em;
  position: relative;
}
.info_ttl::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: var(--cl_txt);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.info_ttl span {
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

/* ============================================================
セクションタイトル
============================================================== */
.sec_ttl {
  font-family: var(--ff_en);
  font-size: 22px;
  letter-spacing: 0.1em;
  display: block;
  position: relative;
  margin-bottom: 30px;
}
.sec_ttl::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  background: var(--cl_txt);
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
}

/* ============================================================
カウントダウン
============================================================== */
.cd_days {
  display: block;
  font-family: var(--ff_en);
  font-size: 128px;
  color: var(--cl_point);
  line-height: 1.5;
}

.cd_hours,
.cd_minutes,
.cd_seconds {
  font-family: var(--ff_en);
  font-size: 48px;
  color: var(--cl_point);
  display: flex;
  flex-direction: column;
}

.cd_hours::after {
  content: "HOURS";
  display: inline-block;
  font-size: 10px;
  color: var(--cl_txt);
}

.cd_minutes::after {
  content: "MINUTES";
  display: inline-block;
  font-size: 10px;
  color: var(--cl_txt);
}

.cd_seconds {
  min-width: 1.8ch;
  text-align: left;
  font-family: var(--ff_en);
  font-feature-settings: "tnum";
}
.cd_seconds::after {
  content: "SECONDS";
  display: inline-block;
  font-size: 10px;
  color: var(--cl_txt);
}

/* ============================================================
スクロールダウン
============================================================== */
.scrollbar_container {
  position: relative;
}
.scrollbar_container .scrollbar-text_05 {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: -50px;
  padding: 10px 10px 110px;
  color: var(--cl_txt);
  font-size: 13px;
  font-family: serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
.scrollbar_container .scrollbar_05 {
  position: absolute;
  bottom: 0;
  right: -52px;
  padding: 10px 10px 110px;
  bottom: 1px;
}
.scrollbar_container .scrollbar_05::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: var(--cl_txt);
  animation: liner 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media screen and (max-width: 700px) {
  .scrollbar_container .scrollbar-text_05,
  .scrollbar_05 {
    display: none;
  }
}
/* ============================================================
ボタン系
============================================================== */
.submit_btn,
.confirm_button,
.back_button {
  font-size: 16px;
  font-family: var(--ff_ja);
  background: var(--cl_point);
  color: #fff;
  padding: 15px 50px;
  border-radius: 100px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  display: block;
  margin-top: 35px;
}
.submit_btn:hover,
.confirm_button:hover,
.back_button:hover {
  background: #98AC81;
}

.confirm_button {
  margin-left: auto;
  margin-right: auto;
  padding: 10px 30px;
}

.back_button {
  background: #7b7b7b;
  color: #fff;
}
.back_button:hover {
  background: rgb(186, 186, 186);
}

.confirm_button:disabled {
  background-color: #ccc;
  /* グレー背景 */
  color: #666;
  /* テキストも少し薄く */
  cursor: not-allowed;
  /* マウスカーソルを禁止マークに */
  opacity: 0.6;
  /* 少し薄く見せる */
}

/* ============================================================
サンクスページ
============================================================== */
.pc_container.thanksPage::after {
  content: none;
}
.pc_container.thanksPage .pc_textbox {
  display: none;
}
.pc_container.thanksPage #container.thanks {
  position: relative;
  padding: 50px 0;
  background: #fff;
}
.pc_container.thanksPage #container.thanks .thanks_mes {
  width: 90%;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(229, 228, 224, 0.56);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 50px 0;
}
.pc_container.thanksPage #container.thanks .thanks_mes .thanks_img {
  width: 160px;
  margin: 0 auto;
}
.pc_container.thanksPage #container.thanks .thanks_mes .thanks_img img {
  max-width: 100%;
}
.pc_container.thanksPage #container.thanks .thanks_mes h2 {
  font-family: "Cormorant", serif;
  font-size: 30px;
  letter-spacing: 0.2em;
  padding-bottom: 20px;
  color: #424242;
}
.pc_container.thanksPage #container.thanks .thanks_mes p {
  font-family: var(--ff_ja);
  font-size: 13px;
  margin: 30px 0;
  color: #424242;
}
.pc_container.thanksPage #container.thanks .flower_r {
  top: 0;
  right: -5px;
}
.pc_container.thanksPage #container.thanks .flower_l {
  bottom: 0;
  left: -5px;
}/*# sourceMappingURL=style.css.map */