@charset "UTF-8";

:root {
  --primaryColor: #001E3B;
  --secondaryColor: #DB0A40;
}

html {
  background: #fff;
}

body {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 640px;
  margin: auto !important;
  font-family: Quicksand, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

body.stretch {
  height: 100dvh;
}

.main.top {
  background-color: #003084;
}

.indent {
  text-indent: -1em;
  margin-left: 1em;
}

.red {
  color: var(--secondaryColor);
}

.center {
  text-align: center !important;
}


.header-logo-wrapper {
  width: 100%;
  max-width: 640px;
  height: 64px;
  background: var(--primaryColor);
  position: fixed;
  z-index: 999;
  display: flex;
  align-items: center;
  padding-left: 4px;
}

.header-logo-wrapper img {
  height: 30px;
}

/***************
  サイドメニュー部分の指定
***************/

.sp-menu {
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 1111;
  padding: 12px;
  transition: all 0.3s;
  height: 64px;
  width: 64px;
  background: var(--primaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
}



.sp-menu.active {
  opacity: 1;
  /* transition: all 0.3s; */
}

.sp-menu .side-menu-btn {
  position: relative;
  width: 24px;
  height: 24px;
  margin: auto;
  /* top: 50%;
  transform: translateY(-50%); */
}

.sp-menu .side-menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}

.sp-menu .side-menu-btn span:nth-of-type(1) {
  top: 0;
}

.sp-menu .side-menu-btn span:nth-of-type(2) {
  top: 11px;
}

.sp-menu .side-menu-btn span:nth-of-type(3) {
  bottom: 0;
}


.overlay {
  /* overlayをデフォルトで非表示に 1/23 */
  display: none;
  /* overlayをデフォルトで非表示に end */
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 3000;
}

.overlay p {
  position: fixed;
  top: 4px;
  right: 20px;
  color: #fff;
  font-size: 48px;
  font-weight: 80;
  text-align: center;
  line-height: 64px;
}


.overlay::after {
  visibility: hidden;
  position: fixed;
  top: 40%;
  right: 0;
  display: block;
  width: 100%;
  height: 50px;
  color: rgba(255, 255, 255, 0);
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(20, 30, 34, 1.0);
}

.side-open .overlay::after {
  visibility: visible;
  color: rgba(255, 255, 255, 0.4);
}

.side-menu {
  /* サイドメニューをデフォルトで非表示に 1/23 */
  display: none;
  /* サイドメニューをデフォルトで非表示に end */
  position: fixed;
  top: 0;
  right: 0;
  width: 240px;
  height: 100%;
  padding-top: 100px;
  text-align: left;
  font-size: 13px;
  background: #555555;
  z-index: 2000;
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu ul li {
  height: 48px;
  border-bottom: 0.5px solid rgba(200, 210, 214, 0.4);
}

.side-menu ul .close {
  margin: 0px 0px 0px 0px;
  padding: 40px 0px;
  width: 100%;
  height: 76px;
  border: none;
  color: #fff !important;
  opacity: 1.0 !important;
  text-align: center;
}

.side-menu ul .close a {
  position: relative;
  display: inline !important;
  margin: 0px 0px 0px 0px;
  padding: 16px 64px;
  background-color: #f8f8fa;
  border-radius: 4px;
  color: #fff !important;
  /* iPhoneバンドル */
  font-size: 13px;
  text-align: center;
  letter-spacing: 1px;
}

.side-menu ul li img {
  margin: 16px 0px 16px 40px;
  padding: 0px;
  height: 48px;
}

.side-menu ul li a {
  position: relative;
  display: inline !important;
  margin: 0px 0px 0px 40px;
  padding: 0;
  text-align: left;
  color: #fff;
  /* iPhoneバンドル */
  font-size: 13px;
  font-weight: 800;
  line-height: 48px;
  letter-spacing: 0.4px;
}

.side-menu ul li #top {
  position: relative;
  display: inline !important;
  margin: 16px 0px 0px 56px;
  padding: 0px;
  color: #fff;
  /* iPhoneバンドル */
  font-size: 16px;
  letter-spacing: 1px;
}

.side-menu-btn {
  cursor: pointer;
  z-index: 4;
}

.main-wrapper {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 2;
}

.side-open .main-wrapper,
.side-open .overlay {
  -webkit-transform: translate3d(-240px, 0, 0);
  transform: translate3d(-240px, 0, 0);

}











.kv-wrapper {
  padding-top: 64px;
}

.kv-wrapper img {
  width: 100%;
}


.info-box {
  margin: 20px;
  border: 1px solid var(--primaryColor);
}

.info-heading {
  background: var(--primaryColor);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 12px 4px;
  font-size: 18px;
}

.info-text-wrapper {
  padding: 16px;
  background-color: #fff;
}

.campaign-date {
  font-size: 18px;
  text-align: center;
  line-height: 2rem;
  margin-bottom: 12px;
  font-weight: bold;
}

.caution {
  text-align: left;
  line-height: 1.5rem;
}

.targetProduct-img-wrapper {
  width: 100%;
  margin-bottom: 12px;
}

.targetProduct-img-wrapper img {
  width: 100%;
}

.targetProduct-item {
  font-size: 15px;
  margin-bottom: 6px;
  margin-top: 20px;
}

.targetProduct {
  line-height: 1.7rem;
}

.caution.indent.mb {
  margin-bottom: 12px;
}

.caution.indent.mb.red {
  color: var(--secondaryColor);
}

.serial-img-wrapper {
  width: 100%;
  margin-bottom: 12px;
}

.serial-img-wrapper img {
  width: 100%;
}

.getSerial-message {
  line-height: 1.7rem;
  margin-bottom: 12px;
  font-size: 16px;
}


/* ログインフォーム */
.login-wrapper {
  background: #003084;
  color: #fff;
  padding: 16px 24px;
}

.easy_to_apply {
  color: #ffcf00;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin: 8px auto 16px;
}

.input_mail_text {
  line-height: 1.4rem;
  margin-bottom: 12px;
}

.entryBtn {
  background: #f7c722;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin: 20px auto 24px;
}

.entryBtn a {
  color: #003084;
  display: block;
  padding: 12px 8px;
}

.entryBtn a:hover,
.entryBtn a:visited,
.entryBtn a:active {
  color: #003084;
}


/* トップのログインフォーム */
.login_form_wrapper {
  margin: 20px auto;
  padding: 0 0 16px 0;
  text-align: center;
  height: auto;
  background: #fff;
  border-radius: 6px;
}

.alredy_register {
  text-align: center;
  background: #f7c722;
  color: #003084;
  font-size: 20px;
  font-weight: bold;
  padding: 8px 0;
}

.alredy_register.top {
  border-radius: 4px 4px 0 0;
}

.alredy_register_comment {
  text-align: center;
  color: #0d223f;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  width: 90%;
  margin: 12px auto;
}

.register_input_wrapper {
  margin: auto;
  color: #000;
}

.login_top_text {
  font-size: 16px;
  font-weight: bold;
}

.register_input_label {
  text-align: left;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
}

.register_input_label.password {
  margin-top: 12px;
}

.form-item.password {
  margin-bottom: 12px;
}

.register_input_wrapper .form-item input {
  padding: 8px 4px;
  margin: 2px 0 20px 0;
  width: 100%;
  text-align: left;
  color: #000;
  background-color: #e8f0fe;
  font-size: 16px;
  font-weight: 800;
  line-height: 26px;
  letter-spacing: 0.4px;
  border: solid 3px #003084;
  border-radius: 6px;
  vertical-align: middle;
}

.register_input_wrapper .login_btn {
  background: #003084;
  padding: 10px 8px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin: 20px auto 16px;
  color: #fff;
  display: block;
  width: 92%;
}

.register_input_wrapper .forget-pw {
  padding: 12px 0;
  display: block;
  text-align: center;
  color: var(--primaryColor);
  font-size: 14px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-decoration: underline;
}

.form-item .error_message {
  color: var(--secondaryColor);
  font-weight: bold;
}

.top_btn {
  background: var(--primaryColor);
  padding: 12px 8px;
  text-align: center;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  display: block;
  margin: 24px auto;
  width: 90%;
}



.page-title {
  text-align: center;
  background: var(--primaryColor);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 12px;
  margin-bottom: 16px;
}

.register_btn {
  background: var(--secondaryColor);
  color: #fff;
  display: block;
  width: 90%;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  margin: 20px auto 32px;
  border-radius: 8px;
  font-weight: bold;
}

.registerPage-caution {
  margin-bottom: 8px;
}

.pageContents-wrapper {
  padding: 0 16px;
}

.sendMail-message {
  line-height: 1.5rem;
}


/* シリアルコード入力 */
.personal-data-wrapper{
  text-align: center;
  margin: 20px 20px;
  background-color: #fff;
  padding: 12px;
}

.user_name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 12px;
}

.confirm_point {
  font-weight: bold;
  line-height: 2em;
  margin: 24px auto;
  border: 2px solid var(--secondaryColor);
  padding: 6px 4px;
}

.point-message {
  font-size: 16px;
  color: #000;
}

.serial-input-message {
  color: var(--secondaryColor);
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 4px;
}

.now_point_area {
  font-size: 24px;
  color: var(--secondaryColor);
}

.serial-error-message {
  color: var(--secondaryColor);
  font-weight: bold;
}

.code-input input {
  padding: 8px 4px;
  margin: 2px 0 10px 0;
  width: 90%;
  text-align: left;
  color: #000;
  background-color: #e8f0fe;
  font-size: 16px;
  font-weight: 800;
  line-height: 26px;
  letter-spacing: 0.4px;
  border: solid 3px #003084;
  border-radius: 6px;
  vertical-align: middle;
}

.code-input input:focus {
  border: solid 3px var(--primaryColor);
}

.code-input input::placeholder {
  font-size: 14px;
}

.serial-input-btn {
  background: var(--secondaryColor);
  display: block;
  border-radius: 8px;
  width: 90%;
  margin: 8px auto 16px;
  color: #fff;
  text-align: center;
  padding: 12px 4px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3em;
}

.serial-input-caution-message {
  color: var(--secondaryColor);
  font-weight: bold;
  line-height: 1.5em;
  width: 90%;
  margin: auto;
}

.to_history_btn {
  background: #003084;
  display: block;
  border-radius: 8px;
  width: 90%;
  margin: 16px auto;
  color: #fff;
  text-align: center;
  padding: 12px 4px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3em;
}



/* 賞品一覧 */
.prize-img-wrapper {
  width: 100%;
  margin: 0 auto 20px;
}

.prize-img-wrapper img {
  width: 100%;
}

.layer {
	background: rgba(0, 0, 0, .8);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s linear, visibility 1s linear, z-index 1s linear;
}

.layer.is-open {
	z-index: 9999;
	opacity: 1;
	visibility: visible;
}

.modal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 94%;
	max-width: 620px;
	opacity: 0;
	visibility: hidden;
	transition: visibility .7s linear, opacity .7s linear;
	/* モーダルの内容を確実に表示 */
	background: transparent;
	pointer-events: auto;
}

/* モーダルが開いている時のスタイル - より強力なセレクタ */
body .layer.is-open .modal {
	opacity: 1 !important;
	visibility: visible !important;
	z-index: 10000 !important;
}

/* モーダルの内容も確実に表示 - より強力なセレクタ */
body .layer.is-open .modal .modal__inner {
	opacity: 1 !important;
	visibility: visible !important;
}

body .layer.is-open .modal .modai__title {
	opacity: 1 !important;
	visibility: visible !important;
}

body .layer.is-open .modal .modal__content {
	opacity: 1 !important;
	visibility: visible !important;
}

body .layer.is-open .modal .modal__button-wrap {
	opacity: 1 !important;
	visibility: visible !important;
}

/* さらに強力なセレクタでモーダルを表示 */
html body .layer.is-open .modal {
	opacity: 1 !important;
	visibility: visible !important;
	z-index: 10000 !important;
	display: block !important;
}

/* モーダルの背景を確実に表示 */
html body .layer.is-open {
	background: rgba(0, 0, 0, 0.8) !important;
	z-index: 9999 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.modal__button-wrap {
  background: var(--primaryColor);
  width: 80%;
  margin: auto;
  border-radius: 8px;
}

.close-button {
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  background: var(--primaryColor);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: block;
}

.close-button span {
	width: 25px;
	height: 2px;
	background: #fff;
	display: inline-block;
	position: absolute;
	left: calc(50% - 12px);
	top: 50%;
	border-radius: 20px;
}

.close-button span:nth-child(1) {
	transform: rotate(45deg) translate(-1px, -1px);
}

.close-button span:nth-child(2) {
	transform: rotate(-45deg) translate(1px, -1px);
}

.modai__title {
  background: var(--primaryColor);
  color: #fff;
  text-align: center;
  padding: 12px;
  margin-bottom: 20px;
}


.modal__inner {
  margin-top: 20px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  display: block;
  padding: 20px;
  max-height: 80vh;
  overflow-y: auto;
  /* モーダルの内容が確実に表示されるように */
  opacity: 1;
  visibility: visible;
  /* 追加のスタイル */
  position: relative;
  z-index: 10001;
}

.modal__content {
	padding-bottom: 23px;
}

.prize-name {
  margin-bottom: 20px;
  font-size: 16px;
  text-align: center;
  line-height: 1.5em;
  font-weight: bold;
}

.prize-name span.red {
  color: var(--secondaryColor);
}

.prize-name span.blue {
  color: #2c67cf;
}

.prize-name-detail {
  margin: 8px auto;
}

.prize-name-detail.orange {
  color: #e67621;
}

.prize-name-detail.blue {
  color: #2c67cf;
}

.modal__button-area {
	max-width: 843px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 17px;
	padding-top: 15px;
}


.prize-detail-button {
  background-color: #e5e5e5;
  margin: 24px auto;
  padding: 8px 5px;
  border-radius: 12px;
  width: 93%;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  display: block;
  border: solid 2px #2d2d2d;
  outline: solid 2px #2d2d2d;
  outline-offset: 2px;
  color: #000;
}

.no-scroll {
  overflow: hidden;
}


.prize-separate {
  margin: 28px auto;
  border-top: 2px dotted var(--primaryColor);
}




/* アコーディオン */
.details {
	border-top: 1px solid var(--primaryColor);
	border-left: 1px solid var(--primaryColor);
	border-right: 1px solid var(--primaryColor);
  margin: 20px;
}

.details:last-of-type {
  border-bottom: 1px solid var(--primaryColor);
}

.details-summary {
	position: relative;
	display: block;
	padding: 12px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	background-color: var(--primaryColor);
}

.details-summary:hover {
  cursor: pointer;
}

.details-summary .btn {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 18px;
  height: 18px;
  transform-origin: center center;
  transition-duration: 0.2s;
}


.details-summary .btn:before,
.details-summary .btn:after {
  content: "";
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  transform-origin: center center;
}

.details-summary .btn:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}

.details-summary.is-active .btn {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.details-summary.is-active .btn::before {
  content: none;

}

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

.details-content {
	padding: 20px;
  border-bottom: 1px solid var(--primaryColor);
  background-color: #fff;
}




/* 応募方法 */
.step_name {
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

.step_title_area {
  background: #003084;
  padding: 8px;
  color: #fff;
  font-weight: bold;
}

.step_contents_area {
  display: flex;
  background: #fff;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: 8px;
  gap: 8px;
  border: 1px solid var(--primaryColor);
}

.step_text_area {
  width: 50%;
  color: #0d223f;
  font-size: 16px;
  line-height: 1.5rem;
  text-align: left;
}

.step_img_area {
  width: 50%;
}


.step_img_area img {
  width: 100%;
}

.down_arrow_wrapper {
  width: 100%;
  margin: 12px auto;
  text-align: center;
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.down_arrow_wrapper .fa-arrow-alt-circle-down {
  color: #003084;
}

.caution.step_caution {
  margin-top: 20px;
  font-size: 16px;
}



/* 注意事項 */
.notes-top-text {
  text-align: left;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.notes_midashi {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #003084;
  border: 1px solid #003084;
  padding: 6px;
}

.notes_heading {
  border: 1px solid #fff;
  margin: 20px 0 12px 0px;
  padding: 4px 4px;
  /* text-align: center; */
  color: #003084;
  font-size: 16px;
  font-weight: bold;
  /* background: #003084; */
  border-bottom: 1px solid #003084;
}

.notes_text {
  font-size: 16px;
  text-indent: -1.7em;
  margin-left: 1.7em;
  /* margin-right: 0.5em; */
  text-align: left;
  margin-bottom: 12px;
  line-height: 1.5em;
}

.notes_text.more_indent {
  margin-left: 2.5em;
  text-indent: -2.5em;
}

.notes_text.small_indent {
  margin-left: 1em;
  text-indent: -1em;
}

.notes_text.noindent {
  text-indent: 0;
  margin-left: 0.5em;
}

.notes_text a {
  color: #cf0a2c;
}

.notes_text a:hover {
  color: #cf0a2c;
}



/* キャンペーン事務局 */
.about-us_title {
  padding: 12px 4px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
  color: #fff;
  background-color: #001e3b;
}

.about-us {
  width: 100%;
  margin: auto;
  color: #000;
  background: #fff;
  font-size: 16px;
  padding-right: 5%;
  padding-left: 5%;
  padding-bottom: 12px;
  padding-top: 16px;
  text-align: center;
}

.about-us a {
  color: #fff;
  text-decoration: underline;
}

.about-us .name {
  text-align: center;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 12px;
  color: #003084;
}

.about-us .heading {
  line-height: 20px;
  letter-spacing: 1.2px;
  margin-bottom: 2px;
}

.about-us .content {
  line-height: 24px;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.about-us .content a {
  color: #000;
}

.about-us .caution {
  text-indent: -1em;
  margin-left: 1em;
}





.footer {
  text-align: left;
  background-color: #fff;
  color: var(--primaryColor);
  font-size: 12px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 1.2px;
  margin: 8px 8px 8px 16px;
}

.footer.absolute {
  position: absolute;
  bottom: 0;
  right: 0;
}

.footer img {
  text-align: center;
  width: 100%;
  padding-top: 10px;
}

/* .footer span {
  position: absolute;
  bottom: 4px;
  left: 20px;
} */



/* 初回登録ページ */
.first-entry-message {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.input_mail {
  font-size: 20px;
  font-weight: bold;
  margin: 4px auto 12px;
}

.input_mail_bottom_text {
  font-size: 14px;
  margin-bottom: 20px;
}

.input-pw-form {
  margin-bottom: 40px;
}

.registration_caution {
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 8px;
  line-height: 1.5em;
}

.registration_caution.noindent {
  text-indent: 0;
  margin-left: 0;
}

.register-btn {
  display: block;
  background: var(--primaryColor);
  color: #fff;
  width: 90%;
  text-align: center;
  padding: 12px 8px;
  font-size: 18px;
  margin: 20px auto 0;
  border-radius: 8px;
}

.error_message.form {
  color: var(--secondaryColor);
  font-weight: bold;
  margin: 8px auto 8px 1em;
  text-indent: -1em;
}


/* パスワードを忘れた方 */
.forget_pw_message {
  text-align: center;
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.error_not-regist-mail {
  color: var(--secondaryColor);
  margin: 4px auto;
}


/* シリアルコード入力完了ページ */
.secondpage-contents-wrapper {
  margin: auto 20px;
  padding-bottom: 1px;
}

.get-point-message {
  text-align: center;
  line-height: 1.4em;
  margin: 30px auto;
  font-size: 16px;
  font-weight: bold;
}



/* 履歴ページ */
.point-history-details {
  margin: auto auto 20px;
}

.point-history-details-summary {
  position: relative;
  display: block;
  padding: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background-color: var(--primaryColor);
}

.point-history-details-summary.sub {
  margin: auto 8px;
}

.point-history-details-content {
  padding: 16px 8px 1px;
  background-color: #fff;
}

.history-entry-message {
  margin-bottom: 12px;
}

.point-history-details-summary:hover {
  cursor: pointer;
}

.point-history-details-summary .btn {
  position: absolute;
  top: 30%;
  right: 6%;
  width: 18px;
  height: 18px;
  transform-origin: center center;
  transition-duration: 0.2s;
}


.point-history-details-summary .btn:before,
.point-history-details-summary .btn:after {
  content: "";
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  transform-origin: center center;
}

.point-history-details-summary .btn:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}

.point-history-details-summary.is-active .btn {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.point-history-details-summary.is-active .btn::before {
  content: none;

}

.point-history-details-summary::-webkit-details-marker {
	display: none;
}

.now-point-text {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8em;
  margin-bottom: 20px;
}

.now-point-text span {
  font-size: 20px;
}

.serial-history-heading {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.history-table {
  width: 100%;
  margin-bottom: 20px;
}

.history-table th,
.history-table td {
  border: 1px solid #000;
  text-align: center;
  padding: 8px 4px;
  width: 33.3%;
  vertical-align: middle;
}

.history-table.entry th,
.history-table.entry td {
  width: calc(100% / 3);
  vertical-align: middle;
}

.history-table td a {
  color: var(--secondaryColor);
  text-decoration: underline;
}



/* 賞品応募確認ページ */
.prize_img_wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.prize_img_wrapper img {
  width: 100%;
}

.confirm_message {
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 16px;
}

.entry_prize_name {
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 12px;
}

.possession_point {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.use_point {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2c67cf;
}

.comment-input-message-wrapper{
    padding: 12px;
    margin-bottom: 28px;
    border: 1px solid #000;
}

.comment-input-message {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 12px;
  color: #003084;
}

.comment-input-message:last-child {
  margin-bottom: 0;
  color: #f00;
}

.from_message {
  width: 100%;
  font-size: 16px;
  margin: 16px auto 28px;
  text-align: center;
}

.from_message span {
  font-size: 20px;
  font-weight: bold;
}

.comment {
  border: 1px solid rgb(0, 0, 0);
  display: block;
  width: 100%;
  height: 104px;
  padding: 6px;
  font-size: 16px;
  resize: vertical;
  margin: 16px auto 28px;
}

.lottery-btn {
  display: block;
  width: 90%;
  background: var(--secondaryColor);
  margin: auto;
  padding: 12px 4px;
  border-radius: 8px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.confirm-btn {
  display: block;
  background: var(--secondaryColor);
  width: 90%;
  margin: 20px auto;
  padding: 4px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
}

.movie-caution {
  text-indent: -1em;
  margin-left: 1em;
  font-size: 16px;
}


/* 抽選結果ページ */
/* .congraturation_message {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 2.5em;
  margin-bottom: 20px;
} */

.congraturation_message {
  position: relative;
   margin: 30px;
   text-align: center;
   font-size: 22px;
   font-weight: bold;
 }
 
 .congraturation_message:before,
 .congraturation_message:after {
   position: absolute;
   z-index: 0;
   bottom: -10px;
   display: block;
   content: '';
   border: 1em solid #f82f63;
 }
 
 .congraturation_message:before {
   left: -28px;
   border-left-width: 15px;
   border-left-color: transparent;
 }
 
 .congraturation_message:after {
   right: -28px;
   border-right-width: 15px;
   border-right-color: transparent;
 }
 
 .congraturation_message span {
   position: relative;
   z-index: 1;
   display: block;
   padding: 0.8rem 0.2rem;
   color: #ffeb3b;
   background: #db0a40;
 }
 
 .congraturation_message span:before,
 .congraturation_message span:after {
   position: absolute;
   bottom: -10px;
   display: block;
   width: 10px;
   height: 10px;
   content: '';
   border-style: solid;
   border-color: #b70505 transparent transparent transparent;
 }
 
 .congraturation_message span:before {
   left: 0;
   border-width: 10px 0 0 10px;
 }
 
 .congraturation_message span:after {
   right: 0;
   border-width: 10px 10px 0 0;
 }

.result-caution {
  text-indent: -1em;
  margin-left: 1em;
  line-height: 1.5em;
  font-size: 16px;
  margin-bottom: 8px;
}


/* 当選結果ページ */
.entry_prize_name span {
  font-size: 16px;
}

.please-input-message {
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 12px;
}

.address-input-btn {
  display: block;
  background: var(--secondaryColor);
  width: 90%;
  margin: 12px auto;
  text-align: center;
  color: #fff;
  padding: 12px 12px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5em;
}

.input_limit_date {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}


.text_up {
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 20px;
}


.atari_code_wrapper {
  text-align: center;
  border: 2px solid #001e3b;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.atari_code_text {
  margin-bottom: 8px;
}

.atari_code {
  font-size: 20px;
  font-weight: bold;
}

.atari_code_message {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.5;
  word-break: break-all;
}

.atari_code_message a {
  text-decoration: underline;
}




#pageTop {
  position: fixed;
  bottom: 12px;
  right: 15px;
}

#pageTop .fa-arrow-alt-circle-up {
  display: inline-block;
  z-index: 999;
  font-size: 48px;
  color: #000d46;
  background: #fff;
  border-radius: 50%;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.7);
}












@media (min-width: 641px) {
  .sp-menu {
    right: calc(50% - 320px);
  }

  #pageTop {
    bottom: 3%;
    right: calc(50% - 300px);
  }
}






/* モーダル */
.modal-dialog .modal-body .title {
  position: absolute;
  padding: 12px 5px 12px 5px;
  top: 0;
  left: 0;
  text-align: center;
  height: auto;
  background-color: #DC0019;
  border-radius: 4px 4px 0px 0px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 1.6px;
}

.modal_prize_info {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.modal_sub_title {
  color: #DC0019;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

.modal-dialog .modal-footer {
  border-top: none;
  text-align: center;
  padding-top: 0;
}

.modal-dialog .modal-footer button.close {
  margin: 0 0 12px;
  padding: 12px 0;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 4px;
  width: 100%;
  text-align: center;
  color: #FFF;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 0.4px;
  opacity: 1;
  text-shadow: none;
}

/* ポップアップ */
.modal-dialog {
  position: absolute;
  top: 32px;
  width: calc(100% - 20px);
  /* iPhoneバンドル */
}

.modal-dialog .modal-body {
  padding-top: 0;
  word-break: break-all;
  background-color: #ffffff;
  border-radius: 4px;
}



.modal-dialog .modal-body .title_02 {
  position: absolute;
  padding: 12px 5px 12px 5px;
  top: 0;
  left: 0;
  text-align: center;
  height: auto;
  background-color: #448EDB;
  border-radius: 4px 4px 0px 0px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 1.6px;
}

.modal-dialog .modal-body .text {
  margin: 8px 0px 0px 10px;
  text-align: left;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.8px;
}

.modal-dialog .modal-body .text2 {
  text-align: center;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.4px;
}

.modal-dialog .modal-body .text2 a {
  color: #FF0000;
  text-decoration: underline;
}

.modal-dialog .modal-body .text3 {
  text-align: center;
  color: #013185;
  font-size: 17px;
  line-height: 24px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.modal-dialog .modal-body .apply {
  margin: 12px 0px 12px 0px;
  padding: 12px 0px 12px 0px;
  background-color: #FF013E;
  border: 1px solid #FF013E;
  border-radius: 4px;
  width: 100%;
  text-align: center;
  color: #FFF;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 0.4px;
}








/* LINEログインモーダル */
.login_modal_title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.login_modal_description {
  font-size: 16px;
  text-align: left;
  margin-bottom: 20px;
}

.login_modal_caution {
  text-indent: -1em;
  margin-left: 1em;
}

.sns_login_btn_wrapper_modal {
  margin-bottom: 20px;
}

.sns_login_btn_modal {
  width: 100%;
}

/* フィルター背景 */
.filter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}


/* モーダル */
.modal {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: white;
  border-radius: 8px;
  z-index: 1001;
  display: none;
  overflow: hidden;
}

.modal .head {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #5bc146;
  border-bottom: 1px solid #c3f9b8;
  position: relative;
}

.modal .head img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: absolute;
  right: 15px;
}

.modal .head p {
  margin: auto;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}

.modal .content {
  padding: 20px;
  overflow-y: auto;
}

.modal .content img {
  width: 100%;
  height: auto;
  margin: 12px auto 16px;
  display: block;
}

.btn.close {
  text-align: center;
  margin: 20px auto 0;
  width: 100%;
  opacity: 0.4;
  font-weight: normal;
}

.btn.close a {
  background: #000000;
  color: white;
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  font-size: 16px;
}

.btn.close a:hover {
  background: #545b62;
}

.entry-btn {
  margin: 24px auto;
  padding: 4px 5px;
  border-radius: 12px;
  width: 93%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 800;
  display: block;
  border: none;
}

.entry-btn.red {
  background-color: rgb(210 0 60);
  border: solid 2px rgb(210 0 60);
  outline: solid 4px rgb(210 0 60);
  outline-offset: 2px;
  color: #fff;
}

.entry-btn.wine {
  background-color: #530909;
  border: solid 2px #530909;
  outline: solid 4px #530909;
  outline-offset: 2px;
  color: #fff;
}

.entry-btn.blue {
  background-color: rgb(15 0 105);
  border: solid 2px rgb(15 0 105);
  outline: solid 4px rgb(15 0 105);
  outline-offset: 2px;
  color: #fff;
}

.entry-btn.navy {
  background-color: #091430;
  border: solid 2px #091430;
  outline: solid 4px #091430;
  outline-offset: 2px;
  color: #fff;
}

.entry-btn.yellow {
  background-color: rgb(255 204 0);
  border: solid 2px rgb(255 204 0);
  outline: solid 4px rgb(255 204 0);
  outline-offset: 2px;
  color: #333;
}

.entry-btn.gray {
  background-color: #737373;
  border: solid 2px #737373;
  outline: solid 4px #737373;
  outline-offset: 2px;
  color: #fff;
}

.entry-btn.white {
  background-color: #fff;
  border: solid 2px #000;
  outline: solid 4px #000;
  outline-offset: 2px;
  color: #000;
}

.entry-btn.orange {
  background: #e67621;
}

.entry-btn span.msize {
  color: #ff0;
}

.entry-btn span.lsize {
  color: #ff0;
}

/* Bootstrapモーダルのスタイル調整 */
.modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  transform: none;
}

/* モーダルが確実に表示されるように */
#detail_modal_line.modal {
  display: none !important;
}

#detail_modal_line.modal.show {
  display: block !important;
}

#detail_modal_line.modal.fade {
  opacity: 0;
  transition: opacity .15s linear;
}

#detail_modal_line.modal.fade.show {
  opacity: 1;
}

.modal-dialog {
  max-width: 500px;
  margin: 1.75rem auto;
  position: relative;
  z-index: 1055;
}

.modal-content {
  border-radius: 8px;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1056;
}

.modal-backdrop {
  z-index: 1050 !important;
}

.modal {
  z-index: 1055 !important;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid #dee2e6;
  padding: 1rem 1.5rem;
}

/* LINEログインボタンのスタイル */
.sns_login_btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

.sns_login_btn img {
  max-width: 100%;
  height: auto;
}

/* ログインモーダルのタイトル */
.login_modal_title {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primaryColor);
}

/* ログインモーダルの説明文 */
.login_modal_description {
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ログインボタンのラッパー */
.sns_login_btn_wrapper_modal {
  text-align: center;
  margin-bottom: 1.5rem;
}

.sns_login_btn_modal {
  max-width: 100%;
  height: auto;
}

/* 注意事項 */
.login_modal_caution {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* 閉じるボタン */
.btn.close {
  background: var(--primaryColor);
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
}

.btn.close:hover {
  background: #001a2e;
}

/* LINEログインリンク */
.line-login-link {
  display: inline-block;
  text-decoration: none;
}

.line-login-link:hover {
  /* アニメーションを削除 */
}

.line-login-link:active {
  /* アニメーションを削除 */
}

/* 独自のLINEログインモーダル */
.line-login-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.line-login-modal.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
}

.line-login-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.line-login-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.line-login-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #dee2e6;
}

.line-login-modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primaryColor);
}

.line-login-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6c757d;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-login-modal-close:hover {
  color: #000;
}

.line-login-modal-body {
  padding: 1.5rem;
}

.line-login-modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #dee2e6;
  text-align: center;
}


.mypage_heading {
  background-color: #001e3b;
  text-align: center;
  padding: 8px 4px;
  color: #fff;
}

.mypage-number_wrapper {
  padding: 0 10px 8px;
  text-align: center;
  border-radius: 12px;
}

.copy_wrapper {
  border: 1px solid #001e3b;
}

.js-copytext {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}

.js-copybtn {
    background-color: #a2a2a2;
    padding: 10px 12px;
    margin: 5px auto 10px;
    text-align: center;
    display: block;
    width: 80%;
    color: #fff;
    cursor: pointer;
}

.js-copybtn:hover,
.js-copybtn:visited,
.js-copybtn:focus,
.js-copybtn:active {
  color: #fff;
}



.sepalate_line {
  margin-top: 40px;
  margin-bottom: 36px;
  border: 0;
  border-top: 2px dotted #ff99b2;
}



/* 入力フォーム */
.form-item_input_wrapper {
  width: 100%;
  text-align: left;
}

.form-item_input_wrapper input,
.form-item_input_wrapper select {
  width: 100%;
  border: 1px solid #8f8f8f;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.form-item_input_wrapper input:focus,
.form-item_input_wrapper select:focus {
  outline: 0;
  box-shadow: 0px 0px 3px 2px rgb(209, 209, 209);
}

.form-item_input_wrapper select {
  margin-top: 0;
}

.form-item_input_wrapper:last-of-type {
  margin-bottom: 20px;
}

.form-item_input_wrapper select.dropdown-select {
  background-image:
  linear-gradient(45deg, transparent 50%, #fff 50%),
  linear-gradient(135deg, #fff 50%, transparent 50%),
  linear-gradient(to right, #404040, #404040);
  background-position:
  calc(100% - 20px) calc(1em + 4px),
  calc(100% - 15px) calc(1em + 4px),
  100% 0;
  background-size:
  5px 5px,
  5px 5px,
  2.5em 2.9em;
  background-repeat: no-repeat;
}

.form-item_input_label {
  margin-top: 20px;
  margin-bottom: 4px;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
}


.form-item_input_label span {
  color: #f00;
  font-weight: bold;
}

.input_error_message {
  text-align: left;
  color: #f00;
  font-weight: bold;
}

.error_message {
  color: #f00;
  font-weight: bold;
  margin: 8px auto;
}

.entry_btn {
  display: block;
  width: 90%;
  margin: 12px auto auto;
  background: var(--secondaryColor);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  border: none;
}

.entry_btn:hover,
.entry_btn:visited,
.entry_btn:active {
  color: #fff;
}


.pointsheet_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 36px;
}

.pointsheet_item {
  width: 16%;
}

.pointsheet_item img {
  width: 100%;
}


/* レシートアップロードページ */
.register_input_wrapper {
  margin: auto;
  color: #000;
}

.recipt_img_wrapper {
  width: 88%;
  margin: 20px auto;
}

.recipt_img_wrapper img {
  width: 100%;
}

.receipt_photo_caution {
  font-size: 16px;
  text-align: left;
  margin: 20px auto;
  width: 80%;
}

.receipt_photo_caution_heading {
  text-align: center;
  margin-bottom: 8px;
}

.receipt_photo_caution_text {
  line-height: 1.7em;
}

.formUpload {
  background: #f6f6f6;
  color: #000;
  width: 100%;
  padding: 12px 4px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  border: 2px solid #000;
  display: block;
  width: 90%;
  margin: 28px auto 8px;
}

.formUploadPreviewBox img,
.Reciptgazou img {
  width: 60%;
  margin: auto;
  display: block;
}

.confirm_index {
  font-size: 16px;
  font-weight: bold;
  margin: 20px auto 8px;
  border: 2px solid #001E3B;
  color: #001E3B;
  text-align: center;
  padding: 8px;
}

.contents_detail {
  width: 92%;
  margin: auto;
  line-height: 1.5;
}

.before_send_text {
  margin-bottom: 8px;
}

.check_item {
  margin-bottom: 8px;
  font-size: 16px;
}

.fa-check-square:before {
  color: var(--primaryColor);
}


.contents_title {
  background: #001E3B;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 12px 4px;
  font-size: 18px;
}

.contents_detail {
  width: 84%;
  margin: auto;
  line-height: 1.5;
}

.check li {
  display: flex;
  margin: auto auto 12px;
}

.check li:last-of-type {
  margin-bottom: 0;
}

.check li img {
  width: 24px;
  height: 100%;
}


.ng_reason {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin: 12px auto 24px;
}

.point_table {
  width: 100%;
}

.point_table td {
  border: 1px solid #000;
  padding: 8px;
  width: 50%;
  text-align: center;
}
