:root {
  font-size: 16px;
}

@media (min-width: 1024px) {
  :root {
    font-size: 25px;
  }
}
html, body {
  background: -webkit-linear-gradient(#698497, #154465, #1C0038);
  background: linear-gradient(#698497, #154465, #1C0038);
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFFFFF;
  font-size: 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

ul,
ol {
  list-style: none;
}

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

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.ttl {
  font-size: 1.4rem;
  text-align: center;
  color: #C0C0C0;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #C2B4E1;
  border-radius: 30px;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
}

.subttl {
  font-size: 1.2rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #C2B4E1;
  border-radius: 30px;
}

.btn {
  background-color: #C0C0C0;
  border: 2px solid #C2B4E1;
  border-radius: 30px;
  padding: 0.3rem 1rem;
}

.notif-success {
  color: #00AD34;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  margin: 0 0 2rem 1rem;
}

.notif-error {
  color: #FF0000;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  margin: 0 0 2rem 1rem;
}

.password__container {
  display: flex;
  gap: 0.5rem;
}
.password__img {
  width: 100%;
}
.password__icon {
  width: 5%;
}

input, textarea, select {
  background-color: #FFFFFF;
  color: #000000;
}

/* COMPONENTS */
.footer {
  margin: 0.94rem 0.62rem 0.62rem 0.62rem;
}
.footer__copyright {
  text-align: center;
}
@media (max-width: 767px) {
  .footer__copyright {
    margin: 0 3rem;
  }
}
.footer__separation {
  border-bottom: 2px solid #FFFFFF;
  margin: 0.94rem 0.62rem 1.43rem 0.62rem;
  padding-bottom: 1.43rem;
}
.footer__background {
  display: flex;
  justify-content: space-evenly;
  padding: 2rem 0 2rem 0;
}
@media (min-width: 1024px) {
  .footer__background {
    height: 100%;
    align-items: center;
  }
}
.footer__txt {
  color: #FFFFFF;
  text-align: center;
  font-size: 0.75rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .footer__txt {
    font-size: 0.84rem;
  }
}

.header {
  position: relative;
}
.header__separation {
  border-bottom: 2px solid #FFFFFF;
  margin-bottom: 1.43rem;
  padding-bottom: 1.43rem;
}
.header__img {
  position: relative;
  background-image: url(../img/header.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 25rem;
}
@media (min-width: 1024px) {
  .header__img {
    background-image: url(/img/header.webp);
  }
}
.header__ttl {
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
  color: #C0C0C0;
  font-size: 1rem;
  text-align: center;
  padding: 0.8rem;
}
@media (min-width: 1024px) {
  .header__ttl {
    border-radius: 30px;
    margin: 0 1.5rem;
  }
}
.header__logo {
  position: absolute;
  width: 11rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
  .header__logo {
    width: 12rem;
  }
}
@media (min-width: 1024px) {
  .header__nav {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}
.header .nav {
  display: flex;
  align-items: start;
}
.header .nav__burger {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  cursor: pointer;
  background: #C0C0C0;
  border: 1px solid #C2B4E1;
  border-radius: 20%;
  padding: 0.625rem;
}
@media (min-width: 768px) {
  .header .nav__burger {
    display: none;
  }
}
.header .nav__burger-line {
  width: 1.875rem;
  height: 0.1875rem;
  background-color: #000000;
}
.header .nav__list {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 7.5rem;
  left: 0;
  padding: 1.25rem;
  text-align: start;
}
@media (min-width: 768px) {
  .header .nav__list {
    flex-direction: row;
    bottom: 0;
    top: auto;
  }
}
.header .nav__list.active {
  display: flex;
}
.header .nav__item .nav__link {
  color: #C0C0C0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
.header .nav__item .nav__link:hover, .header .nav__item .nav__link.active {
  color: #C2B4E1;
}
@media (min-width: 768px) {
  .header .nav .nav__list {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    text-align: center;
    align-items: center;
  }
}
.header__rank {
  position: absolute;
  top: 5rem;
  left: 1rem;
  padding: 0 0.25rem 0.3rem 0.25rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 30px;
}
@media (max-width: 767px) {
  .header__rank {
    top: 22rem;
    left: 0;
  }
}

.login {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem;
}
@media (max-width: 767px) {
  .login {
    justify-content: space-around;
    gap: 10rem;
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
    padding: 0;
  }
}

.login__itm {
  background-color: #C0C0C0;
  color: #000000;
  border: 1px solid #C2B4E1;
  border-radius: 30px;
  padding: 0 0.25rem 0.3rem 0.25rem;
}

.logout {
  position: absolute;
  top: 5rem;
  right: 1rem;
}

.contact {
  background: linear-gradient(#698497, #154465, #1C0038);
}
.contact__ttl {
  padding: 0.31rem 0 0.31rem 0;
  margin: 0.94rem 0 0.94rem 0;
}
@media (min-width: 1024px) {
  .contact__ttl {
    text-align: center;
    margin: 1.2rem 0 1.2rem 0;
  }
}
.contact__txt {
  padding: 0 1rem 1rem 1rem;
}
.contact__social-networks {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0.62rem 0 0.62rem 0;
  margin: 0.94rem 0 0.94rem 0;
}
.contact__social-networks__img {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 20px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.contact__form-mail {
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .contact__form-mail {
    margin-bottom: 0;
  }
}
.contact__btn {
  margin-top: 0.94rem;
}
@media (min-width: 1024px) {
  .contact__btn {
    margin: 0 3rem 0 0;
    align-self: start;
  }
}
@media (min-width: 768px) {
  .contact__container {
    display: flex;
    gap: 1rem;
  }
}

.index {
  height: 100%;
  background: -webkit-linear-gradient(#698497, #154465, #1C0038);
  background-repeat: no-repeat;
  background-size: cover;
}
.index__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index__calendar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.index__calendar-img {
  background-color: #C0C0C0;
  width: 50%;
}
@media (min-width: 768px) {
  .index__calendar-img {
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .index__calendar-img {
    width: 80%;
  }
}
.index__date {
  text-align: center;
  margin-bottom: 1rem;
}
.index__date-ttl {
  color: #000000;
  background-color: #C0C0C0;
  font-size: 1rem;
  border: 1px solid #C2B4E1;
  border-radius: 30px;
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
}
.index__subttl {
  font-size: 1.1rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .index__content-group {
    display: flex;
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .index__group {
    width: 50%;
  }
}
.index__container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.index__container > section {
  width: calc(50% - 1rem);
}
@media (min-width: 768px) {
  .index__container > section {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .index__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.index__container-img {
  position: relative;
  margin-bottom: 0.62rem;
}
@media (min-width: 768px) {
  .index__container-img {
    width: 100%;
  }
}
.index__mantra-container {
  position: relative;
  margin-bottom: 0.62rem;
}
@media (min-width: 768px) {
  .index__mantra-container {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .index__mantra {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
  }
}
.index__mantra-lnk {
  display: flex;
  justify-content: center;
}
.index__mantra-img {
  width: 45%;
  display: block;
  height: auto;
}
@media (min-width: 768px) {
  .index__mantra-img {
    width: 60%;
  }
}
@media (min-width: 1024px) {
  .index__mantra-img {
    width: 75%;
  }
}
.index__mantra-overlay {
  font-size: 1.4rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 45%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #C0C0C0;
  padding: 0.62rem 0;
}
@media (min-width: 768px) {
  .index__mantra-overlay {
    width: 60%;
  }
}
@media (min-width: 1024px) {
  .index__mantra-overlay {
    width: 75%;
  }
}
.index__img-overlay {
  font-size: 1.4rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #C0C0C0;
  padding: 0.62rem 0;
}
.index__mantra-txt {
  text-align: center;
  font-style: italic;
  font-size: 0.94rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .index__mantra-txt {
    width: 50%;
  }
}
.index__txt {
  font-style: italic;
  font-size: 0.94rem;
}
.index__itm {
  margin-bottom: 1rem;
}
.index__lst--variant {
  text-align: center;
  margin-bottom: 1rem;
}
.index__lst {
  list-style: disc;
  margin: 1rem 2rem;
}
.index__lst-itm {
  margin-left: -1.2rem;
}
.index__legendary {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.index__ritual-list {
  list-style: disc;
  margin: 1rem 2rem;
}

@media (min-width: 768px) {
  .login__ttl {
    max-width: 450px;
    margin: 2rem auto;
  }
}
@media (min-width: 1024px) {
  .login__ttl {
    max-width: 500px;
  }
}
.login__form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .login__form {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #C2B4E1;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6);
  }
}
@media (min-width: 1024px) {
  .login__form {
    max-width: 500px;
  }
}
.login__form-itm {
  margin-bottom: 1rem;
  width: 100%;
}
.login__form-txt {
  text-align: center;
  margin: 2rem 0 1rem 0;
}
.login__form-lnk {
  color: #000000;
  display: flex;
  justify-content: center;
  margin: 0 5.5rem 0 5.5rem;
}
@media (min-width: 768px) {
  .login__form-lnk {
    max-width: 300px;
    margin: 2rem auto;
  }
}
@media (min-width: 1024px) {
  .login__form-lnk {
    max-width: 400px;
  }
}
.login__container {
  display: flex;
  justify-content: space-between;
}
.login__lnk {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .register__ttl {
    max-width: 450px;
    margin: 2rem auto;
  }
}
@media (min-width: 1024px) {
  .register__ttl {
    max-width: 500px;
  }
}
.register__form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .register__form {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #C2B4E1;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6);
  }
}
@media (min-width: 1024px) {
  .register__form {
    max-width: 450px;
  }
}
.register__form-itm {
  margin-bottom: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .new-password__ttl {
    max-width: 450px;
    margin: 2rem auto;
  }
}
@media (min-width: 1024px) {
  .new-password__ttl {
    max-width: 650px;
  }
}
.new-password__txt {
  margin-top: 1.56rem;
  font-style: italic;
  font-size: 0.94rem;
}
@media (min-width: 768px) {
  .new-password__txt {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .new-password__txt {
    max-width: 500px;
  }
}
.new-password__form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 1.56rem;
}
@media (min-width: 768px) {
  .new-password__form {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #C2B4E1;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6);
  }
}
@media (min-width: 1024px) {
  .new-password__form {
    max-width: 500px;
  }
}
.new-password__itm {
  width: 100%;
  margin-bottom: 1rem;
}
.new-password__btn {
  margin-top: 1.56rem;
}

@media (min-width: 768px) {
  .password-reset__ttl {
    max-width: 500px;
    margin: 2rem auto;
  }
}
@media (min-width: 1024px) {
  .password-reset__ttl {
    max-width: 600px;
  }
}
.password-reset__form {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  margin-top: 1.56rem;
}
@media (min-width: 768px) {
  .password-reset__form {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #C2B4E1;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6);
  }
}
@media (min-width: 1024px) {
  .password-reset__form {
    max-width: 500px;
  }
}
.password-reset__itm {
  width: 100%;
}
.password-reset__btn {
  margin-top: 1rem;
}

.notices__container {
  width: 100%;
}
@media (min-width: 768px) {
  .notices__container {
    width: 50%;
  }
}
.notices__content-group {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .notices__content-group {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.notices__ttl {
  color: #C0C0C0;
  font-size: 1.37rem;
  text-align: center;
}
.notices__sub-ttl {
  color: #C0C0C0;
  margin: 2rem 10rem 1.25rem 0;
  padding: 0 1rem;
  width: clamp(250px, 100%, 300px);
}
@media (min-width: 768px) {
  .notices__sub-ttl {
    margin: 2rem 30rem 1.25rem 0;
  }
}
@media (min-width: 1024px) {
  .notices__sub-ttl {
    margin: 2rem 25rem 1.25rem 0;
    width: clamp(350px, 100%, 450px);
  }
}
.notices__lst {
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}
.notices__txt {
  color: #FFFFFF;
  padding-bottom: 1rem;
}

.grimoire__msg {
  text-align: center;
  margin-bottom: 1.5rem;
}
.grimoire__lst {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .grimoire__lst {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grimoire__lst-itm {
  list-style: disc;
  margin: 0 0 0.6rem 1.5rem;
}
.grimoire__form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.grimoire__container {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .grimoire__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grimoire__group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.grimoire__itm {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .grimoire__form-container {
    margin-left: 25rem;
  }
}

@media (min-width: 768px) {
  .ritual {
    display: flex;
    gap: 6rem;
  }
}
.ritual__container {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .ritual__container {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .ritual__container {
    margin-bottom: 1.2rem;
  }
}
@media (min-width: 768px) {
  .ritual__container--itm {
    width: 50%;
  }
}
.ritual__subttl {
  color: #C0C0C0;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.6rem;
}
.ritual__txt {
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .ritual__txt {
    margin-left: 1rem;
  }
}
.ritual__actions {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .ritual__actions {
    margin-top: 2.5rem;
  }
}
.ritual__btn {
  color: #000000;
  background-color: #C0C0C0;
  font-size: 1rem;
  border: 2px solid #C2B4E1;
  border-radius: 30px;
  padding: 0.3rem 0.5rem;
}
.ritual__pop-in-container {
  display: flex;
  justify-content: space-around;
}
.ritual__pop-in-txt {
  color: rgba(0, 0, 0, 0.6);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}
.ritual__pop-in {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(230, 238, 255);
  border: 1px solid #C2B4E1;
  border-radius: 30px;
  padding: 2rem;
  z-index: 1000;
}
.ritual__pop-in.hidden {
  display: none;
}
.ritual__pop-in.active {
  display: block;
}
.ritual__warning {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 1rem;
  font-style: italic;
  font-size: 0.93rem;
}

.notebook__msg {
  text-align: center;
  margin-bottom: 1.5rem;
}
.notebook__lst {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .notebook__lst {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 0;
  }
}
.notebook__lst-itm {
  list-style: disc;
  margin: 0 0 0.6rem 1.5rem;
}
.notebook__form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.notebook__container {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .notebook__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.notebook__group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.notebook__itm {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .message {
    display: flex;
    justify-content: space-evenly;
    gap: 6rem;
  }
}
.message__container {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .message__container {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .message__container {
    margin-bottom: 1.2rem;
  }
}
.message__container--itm {
  display: flex;
  gap: 1rem;
}
.message__subttl {
  font-size: 1.1rem;
  font-weight: bold;
  color: #C0C0C0;
  margin-bottom: 0.6rem;
}
.message__txt {
  font-size: 1rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .message__txt {
    margin-left: 1rem;
  }
}
.message__actions {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .message__actions {
    margin-top: 2.5rem;
  }
}
.message__btn {
  color: #000000;
  background-color: #C0C0C0;
  font-size: 1rem;
  border: 2px solid #C2B4E1;
  border-radius: 30px;
  padding: 0.3rem 1rem;
}
@media (min-width: 768px) {
  .message__btn {
    font-size: 1.2rem;
  }
}
.message__pop-in-container {
  display: flex;
  justify-content: space-around;
}
.message__pop-in-txt {
  color: rgba(0, 0, 0, 0.6);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}
.message__pop-in {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(230, 238, 255);
  border: 1px solid #C2B4E1;
  border-radius: 30px;
  padding: 2rem;
  z-index: 1000;
}
.message__pop-in.hidden {
  display: none;
}
.message__pop-in.active {
  display: block;
}

.fc-col-header-cell {
  color: #000000;
}

.fc-event-title,
.fc-event-time,
.fc-event {
  white-space: normal !important;
  overflow-wrap: break-word;
  word-break: break-word;
  cursor: pointer;
}

.fc-list-day-text,
.fc-list-day-side-text {
  color: #000000;
}

.calendar-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.calendar-modal.hidden {
  display: none;
}
.calendar-modal-content {
  background-color: rgb(230, 238, 255);
  padding: 2rem;
  border: 1px solid #C2B4E1;
  border-radius: 30px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  text-align: center;
}
.calendar-modal-title {
  color: #000000;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.calendar-modal-description {
  color: #000000;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.calendar-modal-btn {
  display: flex;
  justify-content: space-evenly;
}
.calendar-modal-close {
  background-color: #6b46c1;
  color: #FFFFFF;
  font-size: 1rem;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .guided {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.guided__container {
  text-align: center;
}
@media (min-width: 768px) {
  .guided__container {
    width: calc(50% - 0.5rem);
  }
}
.guided__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #C2B4E1;
  border-radius: 50%;
  font-weight: bold;
  margin: 1rem 0 0.5rem 0;
}
@media (min-width: 768px) {
  .guided__day {
    margin: 1.2rem 0 0.8rem 0;
  }
}
@media (min-width: 1024px) {
  .guided__day {
    width: 65px;
    height: 65px;
  }
}
.guided__ttl {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #C2B4E1;
  border-radius: 50px;
  font-weight: normal;
  padding: 0.4rem 1rem;
  margin: 0 0 0.5rem 1rem;
}
.guided__container-txt {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #C2B4E1;
  border-radius: 50px;
  padding: 1rem 0.5rem 0.5rem 1rem;
}
.guided__subttl {
  text-align: left;
  font-weight: normal;
  margin-bottom: 0.5rem;
}
.guided__txt {
  text-align: left;
  margin-bottom: 1rem;
}
.guided__group {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .guided__group {
    justify-content: center;
  }
}

.forthcoming__container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.forthcoming__img {
  width: 30%;
  filter: hue-rotate(315deg);
}

@media (min-width: 768px) {
  .created {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.created__itm {
  text-align: center;
}
.created__container {
  text-align: center;
}
@media (min-width: 768px) {
  .created__container {
    width: calc(50% - 0.5rem);
  }
}
.created__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #C2B4E1;
  border-radius: 50%;
  font-weight: bold;
  margin: 1rem 0 0.5rem 0;
}
@media (min-width: 768px) {
  .created__day {
    margin: 1.2rem 0 0.8rem 0;
  }
}
@media (min-width: 1024px) {
  .created__day {
    width: 65px;
    height: 65px;
  }
}
.created__ttl {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #C2B4E1;
  border-radius: 50px;
  font-weight: normal;
  padding: 0.4rem 1rem;
  margin: 0 0 0.5rem 1rem;
}
.created__txt {
  text-align: left;
  margin-bottom: 1rem;
}
.created__textarea {
  width: 100%;
}
.created__btn {
  margin-top: 1rem;
}

/*# sourceMappingURL=style.css.map */
