@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
:root {
  --base-col: #FFF;
  --primary-col: #4E7192;
  --black-col: #000000;
  --gray-col: #878788;
  --light-gray-col: #B4B4B4;
  --blown-col: #C5C5BF;
  --light-blown-col: #DDDDD9;
  --font-primary: "Noto Serif JP",serif;
  --font-secondary: "Crimson Pro", serif;
  --font-nsj: "Noto Sans JP", sans-serif;
  --font-size: 15px;
}

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

html,
body {
  height: 100%;
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: normal;
  font-size: var(--font-size);
}

@media screen and (max-width: 767px) {
  html,
  body {
    font-size: 1.6666666667vw;
  }
}
body {
  padding: 0;
  color: var(--txt-col);
  letter-spacing: 1px;
  -webkit-text-size-adjust: 100%;
  background-color: #ffffff;
}

body, button, input, textarea {
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: underline;
  color: var(--link-col);
  background-color: transparent;
  transition: all 0.1s linear;
}

a:active {
  outline: 0;
}

a:hover {
  color: var(--link-hov-col);
  outline: 0;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul li,
ol li {
  padding: 0;
  margin: 0;
  list-style: none;
}

ol li {
  list-style: decimal;
  margin-left: 20px;
}

input[type=checkbox] {
  display: inline-block;
  width: auto;
  margin-right: 5px;
}

summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

/* ----------------------------------------------------------------
header
-------------------------------------------------------------------*/
.header {
  box-sizing: border-box;
  z-index: 102;
  transition: height 0.3s ease, padding 0.3s ease;
  width: 100%;
  padding: 0;
}

.header .header__logo {
  width: 60px;
  flex-shrink: 0;
  transition: width 0.3s ease, padding 0.3s ease;
}

@media screen and (min-width: 1080px) {
  .header .header__logo {
    width: 80px;
  }
}
.header .header__logo a {
  display: flex;
  align-items: center;
}

.header .header__logo a img {
  width: 100%;
  height: auto;
}

.header .header__menu {
  --header_menu-width: 60px;
  --header-icon__bar-height: 3.47px;
  --header-header__open-height: 20px;
  width: var(--header_menu-width);
  transition: all 0.3s ease;
  /* --- ハンバーガーボタン（三本線） --- */
}

.header .header__menu .header__open {
  display: block;
  width: var(--header_menu-width);
  height: var(--header-header__open-height);
  position: relative;
  z-index: 101;
  transition: all 0.3s ease;
}

.header .header__menu .header__open .header-icon__bar {
  background: #878788;
  display: block;
  position: absolute;
  width: var(--header_menu-width);
  height: var(--header-icon__bar-height);
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}

.header .header__menu .header__open .header-icon__bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header .header__menu .header__open .header-icon__bar:nth-of-type(3) {
  top: auto;
  bottom: 0;
}

.header__inner {
  transition: height 0.3s ease, padding 0.3s ease;
  width: 100%;
  position: relative;
  z-index: 103;
  padding: 10px 0 0;
}

.header-left {
  text-align: center;
}

.header-left .lead-text {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.header-left .title-sub {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
}

.header-left .title-main {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: #e40045;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
}

.header-right {
  text-align: center;
  margin-top: 30px;
  padding-bottom: 10px;
}

.header-right-main {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: #e40045;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.header-right-sub {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.header-mv {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.drawer-icon.is-open .header-icon__bar:nth-of-type(1) {
  transform-origin: left top;
  transform: rotate(15.74deg);
}

.drawer-icon.is-open .header-icon__bar:nth-of-type(2) {
  opacity: 0;
}

.drawer-icon.is-open .header-icon__bar:nth-of-type(3) {
  transform-origin: left bottom;
  transform: rotate(-15.75deg);
}

/* --- ドロワーメニュー本体 --- */
.header__contents {
  display: block;
  background: var(--base-col);
  padding: 90px 20px 40px 68px;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 102;
  bottom: 0;
  overflow: auto;
  width: 450px;
  transform: translateX(100%); /* 自身の幅（320px）分、右に移動 */
  transition: transform 0.3s ease-in-out; /* アニメーション設定 */
  box-shadow: 0px 16px 32px -4px rgba(12, 12, 13, 0.1), 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
}

.header__contents.is-open {
  transform: translateX(0); /* 元の位置に戻す（320px分スライドイン） */
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .header__contents {
    display: block;
    background: var(--base-col);
    padding: 90px 20px 40px;
    position: fixed;
    top: 0px;
    right: 0;
    width: 45%;
    z-index: 101;
    /* 初期状態（画面右外に隠す） */
    transform: translateX(100%); /* 自身の幅（320px）分、右に移動 */
    transition: transform 0.3s ease-in-out; /* アニメーション設定 */
  }
  .header__contents.is-open {
    transform: translateX(0); /* 元の位置に戻す（320px分スライドイン） */
  }
}
@media screen and (max-width: 767px) {
  .header__contents {
    display: block;
    background: var(--base-col);
    padding: 30px 20px 40px;
    position: fixed;
    top: 55px;
    right: 0;
    width: 100vw;
    z-index: 101;
    /* 初期状態（画面右外に隠す） */
    transform: translateX(100%); /* 自身の幅（320px）分、右に移動 */
    transition: transform 0.3s ease-in-out; /* アニメーション設定 */
  }
  .header__contents.is-open {
    transform: translateX(0); /* 元の位置に戻す（320px分スライドイン） */
  }
}
.header.small + .header__contents {
  top: 30px;
}

.header__contents-img {
  width: 92px;
  height: 102px;
  opacity: 0.4;
}

.header__contents-img img {
  width: 100%;
}

.header__contents-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  margin-top: 30px;
}

.header__contents-item.is-sub {
  padding-left: 8px;
}

.header__link {
  font-size: 19.8px;
  font-weight: 400;
  font-family: var(--font-secondary);
  line-height: 2;
  letter-spacing: 0.08em;
  min-width: 150px;
  text-decoration: none;
  color: var(--black-col);
}

.header__link span {
  font-size: 12px;
  margin-left: 16px;
  font-family: var(--font-primary);
}

.drawer__footer {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.drawer__footer-info p {
  font-size: 10px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: var(--light-gray-col);
}

.drawer__footer-sns {
  width: 16px;
  height: 16px;
}

.drawer__footer-sns img {
  width: 100%;
}

.footer {
  padding: 3.5714285714cqi;
}

.footer__container {
  text-align: center;
  color: var(--black-col);
}

.footer__container-top h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 3.5714285714cqi;
  line-height: 2.4;
  letter-spacing: 0.1em;
  font-feature-settings: "halt" on;
}

.footer__container-top p {
  font-style: normal;
  font-weight: 500;
  font-size: 3.2142857143cqi;
  line-height: 2;
  letter-spacing: 0.1em;
  font-feature-settings: "halt" on;
}

.footer__container-img {
  width: 22.8571428571cqi;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1080px) {
  .footer__container-img {
    width: 26.4285714286cqi;
  }
}
.footer__container-img img {
  width: 100%;
}

.footer__container-name {
  font-size: 2.5714285714cqi;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-top: 6.0714285714cqi;
}

@media screen and (min-width: 1080px) {
  .footer__container-name {
    font-size: 3.5714285714cqi;
    line-height: 230cqi;
    margin-top: 8.0357142857cqi;
  }
}
.footer__container-address {
  font-size: 2.1428571429cqi;
  font-style: normal;
  font-weight: 500;
  line-height: 280cqi;
  letter-spacing: 0.16em;
}

@media screen and (min-width: 1080px) {
  .footer__container-address {
    font-size: 3.0357142857cqi;
  }
}
.footer__container-tel {
  font-size: 2.7428571429cqi;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.25em;
}

@media screen and (min-width: 1080px) {
  .footer__container-tel {
    font-size: 3.75cqi;
  }
}
.footer__container-tel span {
  font-size: 2.1428571429cqi;
  letter-spacing: 0.01em;
  margin-right: 0.1785714286cqi;
}

@media screen and (min-width: 1080px) {
  .footer__container-tel span {
    font-size: 3.0357142857cqi;
  }
}
.footer__container-tel a[href^="tel:"] {
  /* 全体（SP含む）では有効にする */
  pointer-events: auto;
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

@media screen and (min-width: 1080px) {
  .footer__container-tel a[href^="tel:"] {
    pointer-events: none;
    color: inherit;
  }
}
.footer__container-bottom {
  display: flex;
  gap: 0;
  align-items: center;
  width: 100%;
  position: relative;
  margin-top: 17.8571428571cqi;
}

@media screen and (min-width: 391px) and (max-width: 600px) {
  .footer__container-bottom {
    margin-top: 17.8571428571cqi;
  }
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .footer__container-bottom {
    margin-top: -8.9285714286cqi;
  }
}
.footer__container-bottom-img {
  width: 12.6785714286cqi;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .footer__container-bottom-img {
    margin: 0;
    width: 16.25cqi;
  }
}
.footer__container-bottom-sns {
  width: 2.8571428571cqi;
  height: 2.8571428571cqi;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .footer__container-bottom-sns {
    width: 3.9285714286cqi;
    height: 3.9285714286cqi;
  }
}
.footer__container-bottom-sns img {
  width: 100%;
}

.footer-copy {
  margin-top: 3.5714285714cqi;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--light-gray-col);
  width: 100%;
  padding-top: 3.5714285714cqi;
}

.footer-copyright {
  width: fit-content;
}

.footer-copyright-text {
  font-size: 2.1428571429cqi;
  font-weight: 500;
  line-height: 2; /* 280% */
}

@media (min-width: 560px) {
  body::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: calc(50% + 187.5px);
    z-index: -1;
    background: url(../img/bg-left.webp) left center/cover no-repeat;
  }
  body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: calc(50% + 187.5px);
    z-index: -1;
    background: url(../img/bg-right.webp) left center/cover no-repeat;
  }
}
main {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  container-type: inline-size;
  background-color: #fdf6ed;
}

.badges-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.5714285714cqi;
  padding: 0 3.5714285714cqi;
  margin-bottom: 5.3571428571cqi;
}

.badges-row-item {
  text-align: center;
  padding: 3.5714285714cqi 1.7857142857cqi 5.3571428571cqi;
  border: solid 2px #f58d38;
  border-radius: 50%;
}

.badges-row-item-icon img {
  border-radius: 1.7857142857cqi;
}

.badges-row-item p {
  font-size: 18px;
  font-size: 3.2142857143cqi;
  font-weight: 500;
}

.info-row {
  background-color: #fdf3e5;
  padding: 5.3571428571cqi;
}

.info-row .date-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5714285714cqi;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 5.3571428571cqi;
}

.info-row .date-block .date-year {
  font-size: 5.3571428571cqi;
  font-weight: 700;
  line-height: 1;
  text-shadow: 1px 1px 10px rgb(255, 255, 255);
}

.info-row .date-block .date-big {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.info-row .date-block .date-big .num {
  font-size: 14.2857142857cqi;
  font-weight: 700;
  line-height: 1;
  text-shadow: 1px 1px 10px rgb(255, 255, 255);
}

.info-row .date-block .date-big .dow {
  background-color: #e40045;
  width: 10.7142857143cqi;
  height: 10.7142857143cqi;
  border-radius: 5.3571428571cqi;
  color: #FFFFFF;
  font-size: 5.3571428571cqi;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-row .time-block .time-text {
  font-size: 5.3571428571cqi;
  font-weight: 700;
  line-height: 1;
  text-shadow: 1px 1px 10px rgb(255, 255, 255);
  margin-bottom: 1.7857142857cqi;
}

.info-row .time-block .time-text2 {
  font-size: 4.2857142857cqi;
  font-weight: 700;
  line-height: 1;
  text-shadow: 1px 1px 10px rgb(255, 255, 255);
  margin-bottom: 1.7857142857cqi;
}

.info-row .side-info .info-line {
  display: grid;
  grid-template-columns: 100px auto;
  gap: 3.5714285714cqi;
  align-items: flex-start;
  padding-bottom: 3.5714285714cqi;
}

.info-row .side-info .info-line .flag-tag {
  background-color: #f9e3c5;
  border: solid 1px #f58d38;
  border-radius: 5px;
  font-size: 14px;
  padding: 1.7857142857cqi;
  font-weight: 600;
  text-align: center;
}

.info-row .side-info .info-line .info-body p {
  font-size: 3.2142857143cqi;
  font-weight: 500;
}

.info-row .side-info .info-line .info-body p span {
  color: #e40045;
  font-weight: 700;
}

.info-row .side-info .info-line .info-body .main {
  font-size: 3.9285714286cqi;
  font-weight: 700;
}

.main-cols {
  padding: 5.3571428571cqi 3.5714285714cqi;
  background-color: #FFFFFF;
}

.main-cols .col-right {
  background-color: #fdf6ed;
  border-radius: 1.7857142857cqi;
  padding: 3.5714285714cqi;
  margin-bottom: 5.3571428571cqi;
  border: solid 1px #f58d38;
}

.main-cols .col-left {
  background-color: #fdf6ed;
  border-radius: 1.7857142857cqi;
  padding: 3.5714285714cqi;
  margin-bottom: 5.3571428571cqi;
  border: solid 1px #f58d38;
}

.main-cols .price-boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-cols .price-boxes .price-box {
  padding-bottom: 3.5714285714cqi;
}

.main-cols .price-boxes .price-tag {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3.5714285714cqi;
}

.main-cols .price-boxes .price-tag .label {
  background-color: #e40045;
  border-radius: 5px;
  font-size: 3.2142857143cqi;
  padding: 1.7857142857cqi 3.5714285714cqi;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
}

.main-cols .price-boxes .price-tag.male .label {
  background-color: #0052c4;
}

.main-cols .price-boxes .price-tag .amount {
  font-size: 5.3571428571cqi;
  font-weight: 700;
  line-height: 1;
  text-shadow: 1px 1px 10px rgb(255, 255, 255);
}

.main-cols .price-ttl {
  font-size: 3.5714285714cqi;
  font-weight: 500;
  margin-bottom: 1.7857142857cqi;
}

.main-cols .price-note {
  font-size: 3.2142857143cqi;
  font-weight: 500;
  line-height: 1.6;
}

.main-cols .deadline-box {
  border: solid 2px #e40045;
  color: #e40045;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5714285714cqi;
  margin: 3.5714285714cqi 0;
  padding: 1.7857142857cqi;
  border-radius: 1.7857142857cqi;
  background-color: #FFF;
}

.main-cols .deadline-box .dl-label {
  font-size: 3.5714285714cqi;
  font-weight: 700;
}

.main-cols .deadline-box .dl-date {
  font-size: 5.3571428571cqi;
  font-weight: 700;
}

.main-cols .deadline-box .dl-date span {
  font-size: 3.5714285714cqi;
}

.main-cols .buffet-txt {
  color: #e40045;
  font-size: 3.5714285714cqi;
  font-weight: 700;
  margin-bottom: 1.7857142857cqi;
  text-align: center;
}

.main-cols .buffet-illustration {
  width: 100%;
  height: auto;
}

.main-cols .apply-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5714285714cqi;
  flex-direction: column;
}

.main-cols .timeline {
  position: relative;
}

.main-cols .timeline:before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  left: 0.8928571429cqi;
  top: 1.0714285714cqi;
  bottom: 1.0714285714cqi;
  background-color: #e40045;
  display: block;
}

.main-cols .timeline .tl-item {
  margin-bottom: 3.5714285714cqi;
  padding-left: 5.3571428571cqi;
  position: relative;
}

.main-cols .timeline .tl-item:before {
  content: "";
  width: 2.1428571429cqi;
  height: 2.1428571429cqi;
  border-radius: 1.0714285714cqi;
  background-color: #e40045;
  position: absolute;
  left: 0;
  top: 1.0714285714cqi;
  display: block;
}

.main-cols .timeline .tl-item .tl-time {
  font-size: 3.5714285714cqi;
  font-weight: 600;
}

.main-cols .timeline .tl-item .tl-note {
  font-size: 3.2142857143cqi;
  font-weight: 500;
  margin-top: 1.7857142857cqi;
}

.main-cols .timeline .tl-item .highlight-box {
  font-size: 3.2142857143cqi;
  font-weight: 700;
  margin-top: 1.7857142857cqi;
  color: #e40045;
}

.main-cols .timeline .lecture-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5714285714cqi;
  margin-top: 3.5714285714cqi;
}

.main-cols .timeline .lecture-boxes .lecture-box {
  background-color: #FFFFFF;
  border-radius: 1.7857142857cqi;
  padding: 2.6785714286cqi;
  --lecture-col: #e40045;
  border: solid 1px var(--lecture-col);
}

.main-cols .timeline .lecture-boxes .lecture-box.male {
  --lecture-col: #0052c4;
}

.main-cols .timeline .lecture-boxes .lecture-box .tag {
  background-color: var(--lecture-col);
  border-radius: 0.8928571429cqi;
  font-size: 2.8571428571cqi;
  padding: 0.8928571429cqi 3.5714285714cqi;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
}

.main-cols .timeline .lecture-boxes .lecture-box .lb-lebel {
  margin-bottom: 3.5714285714cqi;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-cols .timeline .lecture-boxes .lecture-box .lb-ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.7857142857cqi;
  color: var(--lecture-col);
  font-size: 3.2142857143cqi;
  font-weight: 700;
}

.main-cols .timeline .lecture-boxes .lecture-box .lb-text {
  font-size: 3.2142857143cqi;
  font-weight: 500;
  margin-top: 1.7857142857cqi;
}

.main-cols .timeline .lecture-boxes .lecture-box .lb-text.teacher {
  font-weight: 700;
}

.main-cols .timeline .lecture-boxes .lecture-box .lb-text + .lb-ttl {
  margin-top: 3.5714285714cqi;
}

.main-cols .concept-box {
  border: double 3px #f58d38;
  border-radius: 1.7857142857cqi;
  padding: 3.5714285714cqi;
  text-align: center;
  margin-bottom: 5.3571428571cqi;
}

.main-cols .concept-box .concept-title {
  color: #e40045;
  font-size: 3.5714285714cqi;
  font-weight: 700;
  margin-bottom: 1.7857142857cqi;
  text-align: center;
}

.main-cols .concept-box h3 {
  font-size: 3.5714285714cqi;
  font-weight: 700;
  margin-bottom: 1.7857142857cqi;
}

.main-cols .concept-box p {
  font-size: 3.2142857143cqi;
  font-weight: 500;
  margin-bottom: 3.5714285714cqi;
}

.main-cols .concept-box .support {
  background-color: #e40045;
  color: #FFFFFF;
  font-size: 3.2142857143cqi;
  font-weight: 600;
  padding: 1.7857142857cqi;
  border-radius: 3.5714285714cqi;
}

.main-cols .dress-col {
  margin-bottom: 3.5714285714cqi;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3.5714285714cqi;
}

.main-cols .dress-col h4 {
  font-size: 3.2142857143cqi;
  font-weight: 700;
  margin-bottom: 1.7857142857cqi;
}

.main-cols .dress-col p {
  font-size: 3.2142857143cqi;
  font-weight: 500;
}

.main-cols .access-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5714285714cqi;
  align-items: center;
}

.main-cols .access-map {
  margin-top: 5.3571428571cqi;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.main-cols .access-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.ttl {
  background-image: url(../img/ttl_bg.webp);
  width: 43.2142857143cqi;
  height: 8.3928571429cqi;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 3.5714285714cqi;
}

.ttl h3 {
  color: #FFFFFF;
  font-size: 3.2142857143cqi;
  font-weight: bold;
  text-align: center;
  padding: 0.8928571429cqi 0 0;
}

.btn {
  height: 10.7142857143cqi;
  width: 100%;
  font-size: 3.5714285714cqi;
  font-weight: 700;
  border-radius: 5.3571428571cqi;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn.btn-primary {
  background-color: #e40045;
  color: #FFFFFF;
}