@charset "UTF-8";
.l-header {
  position: relative;
  background: linear-gradient(180deg, #2b5bc3 0%, #1536AD 100%);
  text-align: center;
  color: #ffffff;
  height: 260px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 240px;
  }
}
.l-header::after {
  content: "";
  position: absolute;
  width: 857.143px;
  height: 857.143px;
  aspect-ratio: 1/1;
  border-radius: 857.143px;
  opacity: 0.1;
  background: #ffffff;
  top: -754px;
  left: -384px;
}
@media screen and (min-width: 768px) {
  .l-header::after {
    width: 1289px;
    height: 1289px;
    border-radius: 1289px;
    top: -985px;
    left: -588px;
  }
}
.l-header::before {
  content: "";
  position: absolute;
  width: 1178.571px;
  height: 1178.571px;
  aspect-ratio: 1/1;
  border-radius: 1178.571px;
  opacity: 0.1;
  background: #ffffff;
  top: -970px;
  left: -540px;
}
@media screen and (min-width: 768px) {
  .l-header::before {
    width: 1697px;
    height: 1697px;
    border-radius: 1697px;
    top: -1213px;
    left: -632px;
  }
}
.l-header.is-result-active {
  height: 200px;
}
@media screen and (min-width: 768px) {
  .l-header.is-result-active {
    height: 180px;
  }
}

.l-main {
  padding: 0 15px 40px;
  background-color: #d5e4ff;
}

.l-container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.l-section {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .l-section {
    margin-bottom: 40px;
  }
}

.l-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px 16px;
}
.l-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.l-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.l-modal__close {
  position: absolute;
  top: -52px;
  right: 0;
  background: none;
  padding: 0;
  border: none;
  cursor: pointer;
}
.l-modal__container {
  position: relative;
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  max-height: calc(100% - 60px);
}
.l-modal__content {
  display: none;
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  max-height: 100%;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  flex-direction: column;
  box-shadow: 0 0 20px 0 rgba(21, 54, 172, 0.1);
}
.l-modal__content.is-active {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}
.l-modal__inner {
  flex: 1;
  padding: 48px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  .l-modal__inner {
    padding: 54px 48px;
  }
}

@media screen and (min-width: 768px) {
  .l-form-wrap {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
}
@media screen and (min-width: 768px) {
  .l-form-wrap .c-label {
    margin-top: 12px;
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 20px 48px;
  box-shadow: 0 0 20px 0 rgba(21, 54, 172, 0.1);
}
@media screen and (min-width: 768px) {
  .c-card {
    padding: 48px 48px 64px;
    box-shadow: 0 0 20px 0 rgba(21, 54, 172, 0.1);
  }
}
.c-card--result {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.c-label {
  display: block;
  flex: 0 0 180px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 8px;
}
@media screen and (min-width: 768px) {
  .c-label {
    margin: 0;
    display: flex;
    align-items: center;
  }
}
.c-label--large {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.c-input-text {
  display: block;
  width: 100%;
  padding: 16px;
  border: 2px solid #bbb;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  outline: none;
}
.c-input-text--right {
  text-align: right;
}
.c-input-text.is-error {
  border: 2px solid #DE2020;
  background: #FFE6E6;
}
.c-input-text:hover:not(:focus):not(.is-error) {
  border-color: rgb(148.75, 148.75, 148.75);
}

.c-input-group {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-input-group__unit {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  flex-shrink: 0;
  white-space: nowrap;
}

.c-input-icon {
  border: none;
  outline: none;
  background-color: initial;
  padding: 0 16px;
  position: absolute;
  right: 0;
}
.c-input-icon:hover {
  opacity: 0.7;
}

.c-input-column {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 12px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .c-button {
    max-width: 320px;
  }
}
.c-button--primary {
  background-color: #008EED;
  border: 2px solid #008EED;
  color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(45, 45, 45, 0.3);
}
.c-button--outline {
  background-color: #ffffff;
  border: 2px solid #bbb;
  color: #333333;
  box-shadow: 0 0 10px 0 rgba(45, 45, 45, 0.1);
  letter-spacing: -0.72px;
  padding: 16px 8px;
}
.c-button--success {
  background-color: #76C252;
  border: 2px solid #76C252;
  color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(45, 45, 45, 0.3);
}
.c-button:hover {
  opacity: 0.7;
}

.c-modal-open {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #1536AD;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.c-modal-open:hover {
  opacity: 0.7;
}

.c-modal-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}
.c-modal-title--secondary {
  font-size: 20px;
}

.c-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.c-text--center {
  text-align: center;
}
.c-text--bold {
  font-weight: 600;
}

.c-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #1536AD;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 600;
}
.c-link:hover {
  opacity: 0.7;
}

.c-img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.c-note {
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.c-note li {
  padding-left: 1.2em;
  position: relative;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.c-note li:before {
  content: "※";
  position: absolute;
  left: 0;
}
.c-note li:not(:last-child) {
  margin-bottom: 8px;
}

.c-box {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  background-color: #f5f5f5;
}

.c-error-message {
  padding-left: 24px;
  position: relative;
  color: #DE2020;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin: 8px 0 0;
}
.c-error-message:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='9.25' y='6.5' width='1.5' height='6' rx='0.75' fill='%23DE2020'/%3E%3Crect x='9.14844' y='13.1641' width='1.7' height='1.7' rx='0.85' fill='%23DE2020'/%3E%3Cpath d='M9.12842 2.54947C9.51073 1.86982 10.4893 1.86982 10.8716 2.54947L18.1617 15.5097C18.5367 16.1763 18.055 17 17.2902 17H2.70985C1.94502 17 1.46331 16.1763 1.83827 15.5097L9.12842 2.54947Z' stroke='%23DE2020' stroke-width='1.5'/%3E%3C/svg%3E");
}

.p-view-input, .p-view-result {
  display: none;
}

.p-view-input {
  position: relative;
  margin-top: -40px;
}
@media screen and (min-width: 768px) {
  .p-view-input {
    margin-top: -80px;
  }
}

.p-view-result {
  padding-top: 32px;
}

body:not(.is-result-mode) .p-view-input {
  display: block;
}
body.is-result-mode .p-view-result {
  display: block;
}
body {
  -webkit-overflow-scrolling: touch;
}

main,
section,
.l-modal {
  font-family: "Hiragino Sans Pr6N", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

input:focus {
  border-color: #1536AD;
  transition: all 0.2s ease;
}

.p-hero__wrap {
  position: relative;
}
.p-hero__title {
  margin: 0;
}
.p-hero__title-img {
  display: block;
}
.p-hero__title-img.js-view-input {
  margin: 36px 0 8px;
}
.p-hero__title-img.js-view-result {
  margin: 80px 0 8px;
}
.p-hero__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.p-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-radio-group--sp-1col {
    grid-template-columns: 1fr;
  }
}

.p-radio-item {
  flex: 1;
  position: relative;
}
.p-radio-item__input {
  position: absolute;
  opacity: 0;
}
.p-radio-item__input:checked + .p-radio-item__label {
  border-color: #1536AD;
  background-color: #EAF1FF;
  color: #1536AD;
}
.p-radio-item__input:checked + .p-radio-item__label::before {
  border-color: #1536AD;
  background: radial-gradient(circle, #1536AD 40%, transparent 50%);
}
.p-radio-item__label {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  padding: 16px;
  border: 2px solid #bbb;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}
.p-radio-item__label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  border-radius: 50%;
  margin-right: 10px;
}
.p-radio-item__label.is-error {
  border: 2px solid #DE2020;
  background: #FFE6E6;
}
.p-radio-item__label:hover {
  opacity: 0.7;
}

/* ドロップダウンメニュー（リスト部分） */
/* 元のSelectを隠すクラス（機能は残す） */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- 2. ドロップダウンコンポーネント --- */
.dropdown-wrapper {
  position: relative;
  width: 100%;
}

/* トリガーボタン */
.dropdown-trigger {
  background-color: transparent;
  cursor: pointer;
  outline: none;
  width: 100%;
  border: 2px solid #bbb;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
  transition: box-shadow 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
}
.dropdown-trigger:focus {
  border: 2px solid #1536AD;
}
.dropdown-trigger:hover {
  opacity: 0.7;
}

.selected-text {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 8px;
}

.arrow-icon {
  display: block;
  width: 24px;
  height: 24px;
  color: #1536AD;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* ドロップダウンメニュー（リスト部分） */
.dropdown-menu {
  position: absolute;
  top: 100%;
  bottom: auto;
  left: 0;
  width: 100%;
  margin-bottom: 0;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(45, 45, 45, 0.3);
  max-height: 240px;
  overflow-y: auto;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  transform: translateY(-8px) scale(0.98);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* 上に開く場合 */
.dropdown-menu.open-up {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 8px;
  transform-origin: bottom center;
  transform: translateY(8px) scale(0.98);
}

.dropdown-menu.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* リストアイテム */
.menu-item {
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.1s;
}
.menu-item:hover {
  opacity: 0.7;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  background-color: var(--blue-50);
  color: var(--blue-700);
}

.menu-item.is-selected {
  background-color: #EAF1FF;
}

.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* ドロップダウンメニュー（リスト部分） */
.p-result-tabs {
  display: flex;
  overflow: hidden;
  gap: 4px;
}
.p-result-tabs__item {
  flex: 1;
  background-color: #1536AD;
  padding: 16px 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 20px 20px 0 0;
  cursor: pointer;
}
.p-result-tabs__item--active {
  background-color: #ffffff;
  color: #1536AD;
  opacity: 1;
}
.p-result-tabs__item:hover {
  opacity: 0.7;
}

.p-result-content {
  display: none;
  margin-bottom: 48px;
}
.p-result-content.is-active {
  display: block;
}

.p-result-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 4px;
}

.p-result-summary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background-color: #EAF1FF;
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 20px 16px 16px 16px;
  text-align: center;
}
.p-result-summary__amount {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-result-summary__amount {
    font-size: 18px;
  }
}
.p-result-summary__amount span {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-right: 4px;
}
@media screen and (min-width: 768px) {
  .p-result-summary__amount span {
    font-size: 36px;
  }
}
.p-result-summary__sub {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

.p-info-list {
  margin-bottom: 32px;
}
.p-info-list__item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  border-bottom: 1px dashed #bbb;
}
@media screen and (min-width: 768px) {
  .p-info-list__item {
    font-size: 16px;
  }
}
.p-info-list__item:first-child {
  border-top: 1px dashed #bbb;
}
.p-info-list--bg {
  background-color: #f5f5f5;
  padding: 16px;
  background-color: #f5f5f5;
  border-radius: 8px;
}
.p-info-list--bg .p-info-list__item {
  border: none;
}
.p-info-list--bg .p-info-list__item:first-child {
  padding-top: 0;
}
.p-info-list--bg .p-info-list__item:last-child {
  padding-bottom: 0;
}
.p-info-list--bg .p-info-list__item:not(:last-child) {
  border-bottom: 1px dashed #bbb;
}
.p-info-list--wd .p-info-list__item {
  justify-content: initial;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-info-list--wd .p-info-list__item {
    gap: 24px;
  }
}
.p-info-list--wd .p-info-list__label {
  width: 90px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-info-list--wd .p-info-list__label {
    width: 180px;
  }
}
.p-info-list__label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-info-list__label {
    font-size: 16px;
  }
}

.p-detail-table-wrapper {
  position: relative;
}
.p-detail-table-wrapper.has-more:not(.is-expanded)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  pointer-events: none;
}

.p-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.p-detail-table th {
  border-top: 2px solid #bbb;
  border-bottom: 2px solid #bbb;
  padding: 12px 4px;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .p-detail-table th {
    font-size: 16px;
  }
}
.p-detail-table td {
  padding: 12px 4px;
  border-bottom: 1px dashed #bbb;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-detail-table td {
    font-size: 16px;
  }
}

.is-hidden-row {
  display: none;
}

.is-expanded .is-hidden-row {
  display: table-row;
}

.p-modal-status-box {
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  background-color: #EAF1FF;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .p-modal-status-box {
    margin-bottom: 40px;
  }
}
.p-modal-status-box__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}
.p-modal-status-box__value {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.p-accordion-item {
  border-top: solid 1px #bbb;
  border-bottom: solid 1px #bbb;
}

.p-accordion-button {
  position: relative;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
  width: 100%;
}
.p-accordion-button::before {
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  width: 18px;
  height: 2px;
  background-color: #1536AD;
  transform: translateY(-50%);
  border-radius: 999px;
}
.p-accordion-button::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 2px;
  height: 18px;
  background-color: #1536AD;
  transform: translate(50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 999px;
}
.p-accordion-button.is-active::after {
  transform: translate(50%, -50%) rotate(90deg);
  opacity: 0;
}
.p-accordion-button:hover {
  opacity: 0.7;
}

.p-accordion-content {
  display: none;
  padding-bottom: 24px;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mt-8 {
  margin-top: 8px;
}

.u-mt-12 {
  margin-top: 12px;
}

.u-mt-16 {
  margin-top: 16px;
}

.u-mt-24 {
  margin-top: 24px;
}

.u-mt-32 {
  margin-top: 32px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-mt-48 {
  margin-top: 48px;
}

.u-mt-8-16 {
  margin-top: 8px;
}

.u-mt-16-24 {
  margin-top: 16px;
}

.u-mt-24-32 {
  margin-top: 24px;
}

.u-mt-32-40 {
  margin-top: 32px;
}

.u-mt-40-48 {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .u-mt-8-16 {
    margin-top: 16px;
  }
  .u-mt-16-24 {
    margin-top: 24px;
  }
  .u-mt-24-32 {
    margin-top: 32px;
  }
  .u-mt-32-40 {
    margin-top: 40px;
  }
  .u-mt-40-48 {
    margin-top: 48px;
  }
}
.u-mb-0 {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}

#js-modal {
  overscroll-behavior: contain;
}

#js-modal.is-calendar-open .l-modal__container {
  max-width: 480px;
}

.js-view-result {
  display: none;
}

.js-area-skip,
.js-area-bunkatsu,
.js-area-revo {
  display: none;
}

.calendar-trigger-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #1d4ed8;
  cursor: pointer;
  width: 20px;
  height: 20px;
  transition: color 0.2s;
  z-index: 10;
}

.calendar-trigger-icon:hover {
  color: #1e40af;
}

/* --- スマホ用レスポンシブ調整 --- */
@media (max-width: 480px) {
  .input-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 24px;
  }
  .input-box {
    max-width: 100%;
  }
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 16px 12px;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (min-width: 768px) {
  .calendar-header {
    padding: 16px 48px;
  }
}

.current-month-display {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .current-month-display {
    font-size: 16px;
    line-height: 1.6;
  }
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #bbb;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s;
  background-color: white;
}
.nav-btn:hover {
  opacity: 0.7;
}

.nav-btn:hover {
  background-color: #f3f4f6;
}

.nav-btn:hover {
  background-color: #f3f4f6;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  padding: 0 12px;
}
@media screen and (min-width: 768px) {
  .calendar-grid {
    padding: 0 48px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.calendar-grid--scroll {
  grid-template-rows: repeat(6, 1fr);
  max-height: 600px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(white 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%, radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0)) 0 100%;
  background-repeat: no-repeat;
  background-color: white;
  background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
  background-attachment: local, local, scroll, scroll;
  padding-bottom: 8px;
}

.weekday {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  aspect-ratio: 1/1;
}

.calendar-day {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  aspect-ratio: 1/1;
}
.calendar-day:hover {
  opacity: 0.7;
}

.calendar-day:active:not(.empty) {
  background-color: #dbeafe;
}

.calendar-day.selected {
  background-color: #1536AD;
  color: #ffffff;
  font-weight: 600;
}

.calendar-day.today.selected {
  color: #ffffff;
}

.calendar-day.empty {
  cursor: default;
}

.calendar-footer {
  display: flex;
  justify-content: flex-end;
  padding: 12px;
  border-top: 1px solid #e5e5e5;
}
@media screen and (min-width: 768px) {
  .calendar-footer {
    padding: 12px 48px;
  }
}

.today-btn {
  padding: 10px 32px;
  border: 2px solid #bbb;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(45, 45, 45, 0.1);
  transition: background-color 0.2s;
}
.today-btn:hover {
  opacity: 0.7;
}

.calendar-day.is-disabled {
  border-radius: 0;
  background-color: #e5e5e5;
  pointer-events: none;
}/*# sourceMappingURL=style.css.map */