@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@charset "UTF-8";
.admin-bg-color {
  background: #000000;
}

.admin-color {
  color: #000000;
}

.admin-border-color {
  border-color: #000000;
}

.form-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border-color: #CCC;
  border-width: 1px;
  border-radius: 0.375rem;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

.form-input::-moz-placeholder {
  color: #CCC;
  opacity: 1;
  font-size: 12px;
}

.form-input::placeholder {
  color: #CCC;
  opacity: 1;
  font-size: 12px;
}

.form-input:focus {
  outline: none;
  box-shadow: none;
  border-color: #56AFFE;
}

select {
  background-image: none;
}

input[type=radio] {
  width: 18px; /*radioボタンの横幅*/
  height: 18px; /*radioボタンの縦幅*/
  border-radius: 100px;
  position: relative;
  vertical-align: sub;
  margin-right: 5px;
}

input[type=radio]::before, input[type=radio]::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

input[type=radio]::before {
  background-color: #fff;
  border: 2px solid #999;
  height: 18px; /*radioボタンの横幅*/
  width: 18px; /*radioボタンの縦幅*/
  left: -1px;
}

input[type=radio]::after {
  opacity: 0;
  background-image: url("/images/common/icons/form/radio_checked.svg"); /* 画像のパスを適切に設定 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  background-position: center; /* 画像を中央寄せ */
  background-size: contain; /* 画像を要素にフィットさせる */
  width: 18px; /* 擬似要素の幅（必要に応じて調整） */
  height: 18px; /* 擬似要素の高さ（必要に応じて調整） */
  left: -1px; /* 必要に応じて位置を調整 */
}

input[type=radio]:checked::after {
  opacity: 1; /*チェックされたradioボタンは表示*/
}

li .radio-main {
  position: absolute;
  width: 24px; /*radioボタンの横幅*/
  height: 24px; /*radioボタンの縦幅*/
  margin-right: 0;
}

li .radio-main::before {
  background-color: #fff;
  border: 2px solid #1A1459;
  height: 24px; /*radioボタンの横幅*/
  width: 24px; /*radioボタンの縦幅*/
  left: 0px;
}

li .radio-main::after {
  background-image: url("/images/common/icons/form/check_circle.svg"); /* 画像のパスを適切に設定 */
  width: 26px; /* 擬似要素の幅（必要に応じて調整） */
  height: 26px; /* 擬似要素の高さ（必要に応じて調整） */
  left: -1px;
}

/* date */
input[type=date] {
  position: relative;
}

input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  z-index: 1;
}

input[type=date]::after {
  content: "";
  background-image: url("/images/common/icons/form/calendar_month.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

/* date */
body {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 16px;
  color: #414141;
  min-height: 100vh;
}

ul {
  list-style: none;
}

input[type=date], input[type=time] {
  min-height: 44px; /* 最小の高さを設定 */
}

.is-block {
  display: block;
}

.is-hide {
  display: none;
}

.is-block-important {
  display: block;
}

.f-s-16 {
  font-size: 16px;
}

.-z-10 {
  z-index: -10;
}

.z-99 {
  z-index: 99;
}

.z-999 {
  z-index: 999;
}

.z-9999 {
  z-index: 9999;
}

.z-99999 {
  z-index: 99999;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.fixed-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.text-main-color {
  color: #1A1459;
}

/* 新しいホバースタイルの追加 */
.hover\:text-main-color:hover {
  color: #1A1459;
}

.text-main-color2 {
  color: #56AFFE;
}

.text-main-color3 {
  color: #C161DC;
}

.text-main-color4 {
  color: #808080;
}

.text-main-color5 {
  color: #4143DB;
}

.text-gray-color1 {
  color: #CCC;
}

.text-gray-color2 {
  color: #666;
}

.text-gray-color3 {
  color: #ECECEC;
}

.text-gray-color4 {
  color: #333;
}

.text-gray-color5 {
  color: #FBFBFB;
}

.text-gray-color6 {
  color: #999;
}

.bg-main-color {
  background: #1A1459;
}

.bg-main-color2 {
  background: #56AFFE;
}

.bg-main-color3 {
  background: #C161DC;
}

.bg-main-color4 {
  background: #808080;
}

.bg-main-color5 {
  background: #4143DB;
}

.bg-main-color6 {
  background: #F2F6FA;
}

.bg-gray-color1 {
  background: #CCC;
}

.bg-gray-color2 {
  background: #666;
}

.bg-gray-color3 {
  background: #ECECEC;
}

.bg-gray-color4 {
  background: #333;
}

.bg-gray-color5 {
  background: #FBFBFB;
}

.bg-gray-color6 {
  background: #999;
}

.border-main-color {
  border-color: #1A1459;
}

.border-main-color2 {
  border-color: #56AFFE;
}

.border-main-color3 {
  border-color: #C161DC;
}

/* カスタムスタイルを追加 */
.peer:checked ~ .peer-checked\:border-main-color {
  border-color: #1A1459;
}

/* 新しいホバースタイルの追加 */
.hover\:border-main-color:hover {
  border-color: #1A1459;
}

.user-img-wrap {
  position: relative;
}

.h-15 {
  height: 3.75rem;
}

.max-w-640 {
  max-width: 640px;
}

.max-w-768 {
  max-width: 768px;
}

.w-max {
  width: -moz-max-content;
  width: max-content;
}

.thumbnail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
}

.mypage-wrap {
  background: #fff;
  text-align: center;
}

.toggle-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.toggle-label {
  width: 75px;
  height: 42px;
  background: #ccc;
  position: relative;
  display: inline-block;
  border-radius: 46px;
  transition: 0.4s;
  box-sizing: border-box;
}
.toggle-label:after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}

.toggle-input:checked + label {
  background-color: #4BD865;
}
.toggle-input:checked + label:after {
  left: 40px;
}

.toggle-switch {
  position: relative;
  width: 75px;
  height: 42px;
  margin: auto;
}

.twitter_icon {
  background: #1da1f2;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  position: relative;
  display: block;
}

.cart-flow {
  position: relative;
  display: inline-block;
  margin: 0 15px 4px 0;
  padding: 0 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  color: #555;
  background: #e5e7eb;
}
.cart-flow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -20px;
  border: 20px solid transparent;
  border-left: 15px solid #e5e7eb;
}

.cart-active {
  position: relative;
  display: inline-block;
  margin: 0 15px 4px 0;
  padding: 0 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  color: #555;
  background: #1A1459;
  color: #fff;
}
.cart-active:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -20px;
  border: 20px solid transparent;
  border-left: 15px solid #1A1459;
}

.main-preview-thumbnail-video video, .main-preview-thumbnail-img img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination {
  position: relative;
}

.swiper-pagination-bullet {
  background-color: #1A1459;
  margin: 0 4px;
}

.swiper-slide {
  height: auto;
}

.border-small-main-btn {
  border: 1px solid #1A1459;
  color: #1A1459;
  padding: 6px 20px;
  border-radius: 50px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .border-small-main-btn:hover {
    background: #1A1459;
    color: #fff;
  }
  .border-small-main-btn:hover path {
    fill: #fff;
  }
}

.border-regular-main-btn {
  border: 1px solid #1A1459;
  color: #1A1459;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .border-regular-main-btn:hover {
    background: #1A1459;
    color: #fff;
  }
  .border-regular-main-btn:hover path {
    fill: #fff;
  }
}

.border-large-main-btn {
  border: 1px solid #1A1459;
  color: #1A1459;
  padding: 12px 32px;
  border-radius: 50px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .border-large-main-btn:hover {
    background: #1A1459;
    color: #fff;
  }
  .border-large-main-btn:hover path {
    fill: #fff;
  }
}

.border-small-main-btn2 {
  border: 1px solid #56AFFE;
  color: #56AFFE;
  padding: 6px 20px;
  border-radius: 50px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .border-small-main-btn2:hover {
    background: #56AFFE;
    color: #fff;
  }
  .border-small-main-btn2:hover path {
    fill: #fff;
  }
}

.border-regular-main-btn2 {
  border: 1px solid #56AFFE;
  color: #56AFFE;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .border-regular-main-btn2:hover {
    background: #56AFFE;
    color: #fff;
  }
  .border-regular-main-btn2:hover path {
    fill: #fff;
  }
}

.border-large-main-btn2 {
  border: 1px solid #56AFFE;
  color: #56AFFE;
  padding: 12px 32px;
  border-radius: 50px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .border-large-main-btn2:hover {
    background: #56AFFE;
    color: #fff;
  }
  .border-large-main-btn2:hover path {
    fill: #fff;
  }
}

.border-small-main-btn3 {
  border: 1px solid #C161DC;
  color: #C161DC;
  padding: 6px 20px;
  border-radius: 50px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .border-small-main-btn3:hover {
    background: #C161DC;
    color: #fff;
  }
  .border-small-main-btn3:hover path {
    fill: #fff;
  }
}

.border-regular-main-btn3 {
  border: 1px solid #C161DC;
  color: #C161DC;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .border-regular-main-btn3:hover {
    background: #C161DC;
    color: #fff;
  }
  .border-regular-main-btn3:hover path {
    fill: #fff;
  }
}

.border-large-main-btn3 {
  border: 1px solid #C161DC;
  color: #C161DC;
  padding: 12px 32px;
  border-radius: 50px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .border-large-main-btn3:hover {
    background: #C161DC;
    color: #fff;
  }
  .border-large-main-btn3:hover path {
    fill: #fff;
  }
}

.small-main-btn {
  background: #1A1459;
  color: #fff;
  padding: 6px 20px;
  position: relative;
  border-radius: 50px;
  cursor: pointer;
}
.small-main-btn:hover {
  opacity: 0.8;
}

.regular-main-btn {
  background: #1A1459;
  color: #fff;
  padding: 12px 20px;
  position: relative;
  border-radius: 50px;
  cursor: pointer;
}
.regular-main-btn:hover {
  opacity: 0.8;
}

.regular-main-btn:disabled {
  background: #CCC;
  color: #999;
  padding: 12px 20px;
  cursor: not-allowed;
}
.regular-main-btn:disabled:hover {
  opacity: 1;
}

.large-main-btn {
  background: #1A1459;
  color: #fff;
  padding: 16px 40px;
  position: relative;
  border-radius: 50px;
  cursor: pointer;
}
.large-main-btn:hover {
  opacity: 0.8;
}

.large-main-btn:disabled {
  background: #CCC;
  color: #999;
  padding: 16px 40px;
  cursor: not-allowed;
}
.large-main-btn:disabled:hover {
  opacity: 1;
}

.small-main-btn2 {
  background: #56AFFE;
  color: #fff;
  padding: 6px 20px;
  position: relative;
  border-radius: 50px;
  cursor: pointer;
}
.small-main-btn2:hover {
  opacity: 0.8;
}

.regular-main-btn2 {
  background: #56AFFE;
  color: #fff;
  padding: 12px 20px;
  position: relative;
  border-radius: 50px;
  cursor: pointer;
}
.regular-main-btn2:hover {
  opacity: 0.8;
}

.small-main-btn3 {
  background: #C161DC;
  color: #fff;
  padding: 6px 20px;
  position: relative;
  border-radius: 50px;
  cursor: pointer;
}
.small-main-btn3:hover {
  opacity: 0.8;
}

.regular-main-btn3 {
  background: #C161DC;
  color: #fff;
  padding: 12px 20px;
  position: relative;
  border-radius: 50px;
  cursor: pointer;
}
.regular-main-btn3:hover {
  opacity: 0.8;
}

.small-main-btn4 {
  background: #808080;
  color: #fff;
  padding: 6px 20px;
  position: relative;
  border-radius: 50px;
  cursor: pointer;
}
.small-main-btn4:hover {
  opacity: 0.8;
}

.regular-main-btn4 {
  background: #808080;
  color: #fff;
  padding: 12px 20px;
  position: relative;
  border-radius: 50px;
  cursor: pointer;
}
.regular-main-btn4:hover {
  opacity: 0.8;
}

.small-main-btn5 {
  background: #4143DB;
  color: #fff;
  padding: 6px 20px;
  position: relative;
  border-radius: 50px;
  cursor: pointer;
}
.small-main-btn5:hover {
  opacity: 0.8;
}

.regular-main-btn5 {
  background: #4143DB;
  color: #fff;
  padding: 12px 20px;
  position: relative;
  border-radius: 50px;
  cursor: pointer;
}
.regular-main-btn5:hover {
  opacity: 0.8;
}

.small-disabled-btn {
  background: #808080;
  color: #fff;
  padding: 6px 20px;
  position: relative;
  border-radius: 50px;
  cursor: pointer;
}
.small-disabled-btn:hover {
  opacity: 0.8;
}

.regular-disabled-btn {
  background: #808080;
  color: #fff;
  padding: 12px 20px;
  position: relative;
  border-radius: 50px;
  cursor: pointer;
}
.regular-disabled-btn:hover {
  opacity: 0.8;
}

.main-tag {
  background: #1A1459;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
}

.search-nav-content {
  position: fixed;
  top: 60px;
  background: #56AFFE;
  width: 100%;
  left: 0;
}

.max-h-0 {
  max-height: 0;
}

.required-label {
  position: relative;
}

.required-label::after {
  content: url("/images/common/icons/form/emergency.svg");
  position: absolute;
  top: -7px;
  right: -8px;
  width: 8px;
  height: 8px;
}

/* radioボタンのbtnデザインの基本スタイル */
.radio-btn-style-label {
  display: inline-block;
  margin: 5px;
  padding: 10px 30px;
  border: 1px solid #1A1459;
  border-radius: 50px; /* 丸みを帯びたボーダー */
  background-color: transparent;
  transition: background-color 0.3s;
  cursor: pointer;
}

/* ラジオボタンを隠す */
.radio-btn-style {
  display: none;
}

/* チェックされた状態でのボタンのスタイル */
.radio-btn-style:checked + .radio-btn-style-label {
  background-color: #1A1459;
  color: white;
}

/* ホバー時のスタイル */
.radio-btn-style-label:hover {
  background-color: #1A1459;
  color: white;
}

/* radioボタンのbtnデザインの基本スタイル */
.fc-toolbar-title {
  font-size: 14px !important; /* または必要なサイズに設定 */
}

.fc .fc-col-header-cell-cushion {
  word-break: break-word !important;
}

.star-rating {
  background: url("/images/common/icons/myStar_off.svg") !important;
  background-size: 28px !important;
  background-repeat: repeat-x !important;
}

.star-rating .star-value {
  background: url("/images/common/icons/myStar_on.svg") !important;
  background-size: 28px !important;
  background-repeat: repeat-x !important;
}

@media only screen and (min-width: 480px) {
  .xs-block {
    display: block;
  }
}
@media (hover: none) {
  .border-regular-main-btn:hover,
  .border-regular-main-btn3:hover {
    background: transparent;
    color: inherit;
  }
}
.loading {
  /* 画面最大 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* 背景色（黒、不透明度80%） */
  background-color: #000000;
  opacity: 0.8;
  /* フレックスコンテナ（縦並べ、横中央、縦中央） */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* 表示を一番上 */
  z-index: 999;
  /* 選択付加 */
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.loading-logo {
  color: white;
  font-size: 16pt;
}

.loading-blink {
  animation: blink 3s linear infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
