@charset "UTF-8";

/* @import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css); */

* {
  color: #000;
  line-height: 1.5rem;
  font-size: 16px;
}

html {
  background: #fff;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 640px;
  background: #fff;
  font-family: "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","游ゴシック",YuGothic,"メイリオ",Meiryo,sans-serif;
  margin: auto;
}

img {
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}

main {
  background-repeat: repeat;
  background-position: 1px 36px;
  background-size: 133% auto;
  background-color: #2fa5df;
}

main.under {
  padding: 20px 0;
  min-height: calc(100dvh - 64px);
}

/* ハンバーガーメニュー */
.hamburger-menu {
  position: fixed;
  background: #231816;
  height: 40px;
  width: 100%;
  z-index: 999;
  max-width: 640px;
}
.menu-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background: #231816;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
  display: none;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #231816;
  transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color:#ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 12px;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 16px;
  top: 16px;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}


/* キービジュアル */
.kv-wrapper {
  width: 100%;
  padding-top: 40px;
}

.kv-wrapper img {
  width: 100%;
}


.first_info_wrapper {
  position: relative;
  background: #fff;
  width: 94%;
  margin: 20px auto;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, .25));
  padding: 8px 8px 0;
}

.first_info_heading {
  background: #2fa5df;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 6px 4px;
  font-size: 20px;
}

.first_info_heading span {
  color: #fff;
}

.first_info_contents {
  padding: 12px;
  text-align: center;
}

.campaign_period {
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 12px;
  color: #036eb8;
}

.campaign_period span {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #036eb8;
}

.campaign_period.red {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
  color: #df0012;
}

.campaign_period.entry {
  margin: 10px auto 16px;
}

button:disabled {
  opacity: 0.5;
}


/* チェックボックス */
.checkbox-001 {
  display: flex;
  flex-wrap: wrap;
  gap: .5em 2em;
  border: none;
  justify-content: center;
  margin-bottom: 12px;
}

.checkbox-001 label {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

a.notes {
  font-size: 18px;
  text-decoration: underline;
}

.checkbox-001 label::before,
.checkbox-001 label:has(:checked)::after {
  content: '';
}

.checkbox-001 label::before {
  width: 17px;
  height: 17px;
  border-radius: 3px;
  background-color: #e6edf3;
  margin-right: 12px;
}

.checkbox-001 label:has(:checked)::before {
  background-color: #2589d0;
}

.checkbox-001 label:has(:checked)::after {
  position: absolute;
  top: 6px;
  left: 6px;
  transform: rotate(45deg);
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

.checkbox-001 input {
  display: none;
}

[type="button"] {
  color: #fff;
  background: #df0012;
  padding: 18px 4px;
  border-radius: 8px;
  width: 80%;
  margin: auto;
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

[type="button"]:disabled {
  background: #afafaf;
  opacity: 1;
}


/* 応募は簡単 */
.entry_easy_wrapper {
  background: #fff;
  padding-bottom: 36px;
}

.entry_easy_heading {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 12px 4px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
}

.entry_easy_firstmessage.caution {
  text-indent: -1rem;
  margin-left: 2.5rem;
  width: calc(100% - 4rem);
}

.entry_easy_firstmessage.caution.red {
  color: #df0012;
}

.entry_easy_firstmessage.caution.red.mb-40 {
  margin-bottom: 40px;
}

.entry_easy_firstmessage_caution_wrapper {
  width: 90%;
  margin: auto;
}

input.copy-target {
  display: block;
  text-align: center;
  width: 80%;
  margin: 20px auto;
  font-size: 18px;
  border: 2px dashed #000;
  padding: 6px;
}

input.copy-target:focus {
  outline: none;
}

input.copy-target::selection {
  background: transparent;
  color: inherit;
}

input.copy-target::-moz-selection {
  background: transparent;
  color: inherit;
}

.copy-btn {
  background-color: #008cd9;
  color: #fff;
  padding: 12px;
  border-radius: 4px;
  display: block;
  margin: auto auto 20px;
  width: 70%;
  text-align: center;
}

.entry_easy_wrapper p {
  width: 90%;
  margin: auto auto 8px;
  line-height: 1.5rem;
}

.entry_easy_wrapper .btn-wrapper {
  margin-top: 20px;
  margin-bottom: 24px;
}

.entry_easy_wrapper label {
  font-size: 18px;
}

.login_mypage_wrapper {
  border: 1px solid #df0012;
  width: 90%;
  margin: auto;
}

.login_mypage_heading {
  background: #df0012;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 12px 4px;
  font-size: 18px;
  font-weight: bold;
}

.login_mypage_wrapper .input_message {
  margin: 12px auto 20px;
}

.login_mypage_wrapper .form_input_wrapper,
.login_form_input_wrapper {
  width: 92%;
  margin: auto auto 12px;
}

.login_form_input_wrapper.mokushi {
  width: 100%;
}

.login_mypage_wrapper .form_input_wrapper label,
.login_form_input_wrapper label {
  width: 100%;
}

.login_input_message {
  margin-bottom: 12px;
}


/* テキストボックス */
.textbox-001-label,
.textbox-001 {
    color: #333;
}

.textbox-001-label {
    display: block;
    margin-bottom: 5px;
    font-size: .9em;
}

.textbox-001-label span {
  color: #df0012;
  font-size: .9em;
}

.textbox-001 {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #969da3;
    border-radius: 3px;
    font-size: 1em;
    line-height: 1.5;
    background: #fff;
}

.textbox-001::placeholder {
    color: #999;
}

.save_pw_wrapper {
  margin: auto auto 20px;
  text-align: center;
}

.password_error_message {
  color: #df0012;
  margin-top: 4px;
}

.save_pw_wrapper input {
  width: 17px;
  height: 17px;
  border-radius: 3px;
  background: #e6edf3;
  margin: 0 4px 2px 0;
}

.save_pw {
  font-size: 14px !important;
  font-weight: normal;
}

.login_btn {
  color: #fff;
  background: #df0012;
  padding: 18px 4px;
  border-radius: 8px;
  width: 90%;
  margin: auto;
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.forget_pw_wrapper {
  text-align: center;
}

.forget_pw {
  margin-bottom: 20px;
  display: inline-block;
  text-decoration: underline;
}


/* 賞品一覧 */
.prize_list_wrapper {
  width: 90%;
  background: #fff;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, .6));
  margin: 28px auto 36px;
  padding: 8px 8px 20px;
}

.prize_list_wrapper_heading {
  background: #2fa5df;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 16px 4px;
  font-size: 20px;
  margin-bottom: 20px;
}

.prize_wrapper {
  width: 88%;
  margin: auto;
}

.prize_name_wrapper {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

.prize_name_wrapper.bottom {
  margin-bottom: 20px;
}

.prize_kinds {
  font-size: 18px;
  color: #e0243b;
  border-radius: 8px;
  margin-bottom: 6px;
}

.prize_berry {
  color: #e0243b;
  font-size: 20px;
  margin-bottom: 6px;
  padding: 4px;
  border-radius: 8px;
}

.prize_scratch {
  font-size: 18px;
  margin-bottom: 8px;
}

.prize_scratch.sub {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 12px;
}

.prize_name {
  color: #000;
  width: 80%;
  margin: auto auto 16px;
  font-size: 24px;
  line-height: 1.8rem;
}

.prize_number {
  background: #000000;
  color: #ffffff;
  border-radius: 8px;
  width: 70%;
  margin: auto auto 16px;
  padding: 4px;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}


.prize_wrapper .number {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 16px;
}

.prize_img_wrapper {
  width: 100%;
  margin: 20px auto 24px;
  /* filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, .25)); */
}

.prize_img_wrapper img {
  width: 100%;
}

.prize_detail {
  font-size: 16px;
  line-height: 1.5rem;
  margin-bottom: 20px;
  word-break: break-all;
}

.prize_detail span {
  text-align: center;
  display: block;
  margin-bottom: 4px;
}

.prize_caution {
  text-align: left;
  text-indent: -1em;
  margin-left: 1em;
  font-size: 16px;
  margin-bottom: 4px;
  line-height: 1.5rem;
}

hr {
  width: 96%;
  margin: 28px auto;
  border: 0;
  border-top: 1px solid #036eb8;
}



/* アコーディオン */
.accordion_wrapper {
  width: 90%;
  margin: auto auto 36px;
}

.accordion {
  margin: auto;
}

.toggle {
  display: none;
}

.option {
  position: relative;
  margin-bottom: 2em;
  padding: 8px;
  background-color: #fff;
}

.option.caution {
  margin-bottom: 0;
  padding: 1rem 12px;
}

.accordion_title,
.accordion_content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion_title {
  padding: 19px 12px;
  display: block;
  font-weight: bold;
  font-size: 20px;
  /* text-shadow: -1px -1px 0 white, -1px 0 0 white, -1px 1px 0 white, 0 -1px 0 white, 0 1px 0 white, 1px -1px 0 white, 1px 0 0 white, 1px 1px 0 white; */
  color: #fff;
  /* border-top: 2px solid #ba8fdd; */
  /* border-left: 2px solid #ba8fdd; */
  /* border-right: 2px solid #ba8fdd; */
  background: #2fa5df;
  margin-bottom: 0;
  line-height: 1.7rem;
}

.accordion_title.kenmen {
  padding-top: 6px;
  padding-bottom: 6px;
}


.accordion_title.notes {
  color: #fff;
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #404040;
  background: #404040;
  text-shadow: none;
}

.accordion_title::after,
.accordion_title::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.2em;
  width: 2px;
  height: 0.75em;
  transition: all 0.3s;
  text-shadow: -1px -1px 0 white, -1px 0 0 white, -1px 1px 0 white, 0 -1px 0 white, 0 1px 0 white, 1px -1px 0 white, 1px 0 0 white, 1px 1px 0 white;
  background: #fff;
}




.accordion_title.notes::after,
.accordion_title.notes::before {
  background: #fff;
  text-shadow: none;
}

.accordion_title::after {
  transform: rotate(90deg);
}

.accordion_content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0;
  border: none;
}

.accordion_content_wrapper {
  width: 96%;
  margin: auto;
}

.toggle:checked+.accordion_title+.accordion_content {
  max-height: 30000px;
  transition: all 1.5s;
}

.toggle:checked+.accordion_title::before {
  transform: rotate(90deg) !important;
}


/* 対象商品 */
.target_sampleimage_wrapper {
  width: 100%;
  margin-bottom: 8px;
}

.target_sampleimage_wrapper img {
  width: 100%;
}

.target_product_message {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 20px;
}

.target_product_message_caution {
  text-indent: -1rem;
  margin-left: 1rem;
  margin-bottom: 20px;
}

.target_product_message_caution.bottom {
  margin-bottom: 10px;
}

.target_product_message_caution.bottom:first-of-type {
  margin-top: 32px;
}

.target_product_message_caution.bottom:last-of-type {
  margin-bottom: 16px;
}

.target_product {
  margin-bottom: 28px;
}

.target_product:last-of-type {
  margin-bottom: 20px;
}

.target_detail {
  text-align: center;
  font-weight: bold;
}

.target_scratch_name {
  font-size: 20px;
  margin: 6px auto;
  line-height: 1.7rem;
}

.target_price {
  color: #fe1405;
  margin: 10px auto 14px;
  font-size: 18px;
  border: 1px solid #fe1405;
  border-radius: 999px;
  width: 60%;
}

.target_release_period {
  background: #000;
  color: #fff;
  padding: 4px;
  border-radius: 8px;
}

.target_productlist_wrapper hr {
  width: 100%;
  margin: 28px auto;
  scale: 1.1;
}



/* キャンペーン情報 */
.contact_campaign_wrapper {
  background: #231815;
  padding: 20px;
}

.contact_campaign_heading {
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}

.campaign_name {
  color: #fff;
  font-size: 18px;
  line-height: 1.8rem;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}

.contact_campaign_wrapper dl {
  margin-bottom: 16px;
  text-align: center;
}

.contact_campaign_wrapper dt,
.contact_campaign_wrapper dd,
.contact_campaign_wrapper .campaign_caution {
  color: #fff;
  text-align: center;
}

.contact_campaign_wrapper dt {
  margin-bottom: 4px;
}

.contact_campaign_wrapper dd a {
  text-decoration: underline;
}

.contact_campaign_wrapper .campaign_caution {
  text-indent: -1rem;
  margin-left: 1rem;
  margin-bottom: 8px;
}

/* フッター */
.footer {
  background: #231815;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 8px 4px;
}

.footer.under {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}



/* 下層ページ */
.underpage_contents_wrapper {
  width: 90%;
  background: #fff;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, .6));
  margin: 20px auto auto;
}

.underpage_title {
  background: #231815;
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 8px 4px;
}

.underpage_content {
  padding: 16px;
  margin-top: 12px;
}

.textbox-001.underpage {
  background: #fff;
}

.form-item {
  width: 100%;
  margin-bottom: 32px;
}

.register_btn {
  color: #fff;
  background: #df0012;
  padding: 10px 4px;
  border-radius: 8px;
  width: 80%;
  margin: auto;
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.register_input_wrapper {
  width: 90%;
  margin: auto;
  padding: 20px 0;
}

.login_message {
  margin-bottom: 12px;
}

.register_input_label {
  margin-bottom: 4px;
}

.form-item {
  width: 100%;
  margin-bottom: 12px;
}

.form-item.unitname {
  margin-bottom: 0;
}

.serial_input_error_message {
  margin-bottom: 20px;
}

.input_message {
  display: block;
  color: #000;
  text-align: center;
}

.m-form-text {
  width: 100%;
  margin-bottom: 12px;
  padding: 8px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px rgb(108, 108, 108) inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
}

.m-form-text.unit {
  box-shadow: 0 0 0 1px rgb(0, 158, 211) inset;
}

.m-form-text:focus {
  outline: 0;
  box-shadow: 0px 0px 4px 2px rgb(162, 162, 162);
}

.m-form-text.unit:focus {
  outline: 0;
  box-shadow: 0px 0px 4px 2px rgb(90, 205, 255);
}

.pointget_message {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin-top: 12px;
  padding: 12px;
}

.pointget_message span {
  font-size: 17px;
  color: #000;
}

.getpoint {
  font-size: 22px;
  color: #FE1405;
  margin: 12px auto 16px;
}

.add_point {
  margin-bottom: 16px;
}

.go_to_top_btn {
  display: block;
  background: #231815;
  width: 90%;
  text-align: center;
  color: #fff;
  padding: 12px 4px;
  border-radius: 8px;
  font-weight: bold;
  margin: 0 auto 10px;
}

.for_kaiin_message {
  color: #df0012;
  font-size: 18px;
  font-weight: bold;
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 20px;
}

.entry_caution_list {
  margin: 30px auto;
}

.entry_caution_item {
  text-indent: -1rem;
  margin-left: 1rem;
  margin-bottom: 8px;
}


.send_email_message {
  margin-bottom: 20px;
}

.send_email_message.caution {
  margin-bottom: 20px;
}


/* 撮影方法 */
.shooting_method_wrapper {
  margin-bottom: 40px;
}

.shooting_method_wrapper:last-child {
  margin-bottom: 0;
}

.shooting_method_heading {
  border: 1px solid #612c8d;
  color:#612c8d;
  background: #fff;
  text-align: center;
  padding: 4px;
  margin: 20px auto;
}

.good_shoot_img_wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.good_shoot_img_wrapper img {
  width: 100%;
}

.shooting_method_message {
  margin-bottom: 12px;
  color: #df0012;
}

.checkList {
  margin-bottom: 20px;
}

.checkItem {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.fa-check-square {
  color: #df0012;
  padding-top: 3px;
}

.shooting_method_caution_heading {
  border: 1px solid #df0012;
  text-align: center;
  color: #df0012;
  padding: 4px;
  margin-bottom: 8px;
}

.shooting_method_caution_message {
  color: #df0012;
}

.bad_imgList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bad_imgItem {
  width: 49%;
  text-align: center;
  margin-bottom: 12px;
}

.bad_imgItem img {
  width: 100%;
}

.bad_shoot_caution {
  text-indent: -1rem;
  margin: auto auto 12px 1rem;
}

.bad_shoot_caution.red {
  color: #df0012;
}



/* 応募方法 */
.step_wrapper {
  position: relative;
  border-radius: 8px;
  padding: 24px 12px 12px;
  border: 2px solid #036eb8;
  background: #fff;
}

.step_wrapper.step1 {
  margin-top: 32px;
}

.step_wrapper.step4 {
  margin-bottom: 20px;
}

.step_num {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(10%, -50%);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: bold;
  color: #fff;
  font-size: 20px;
  background: #036eb8;

}

.step_num span {
  font-size: 14px;
  color: #fff;
  margin-right: 4px;
}

.step_img_wrapper {
  width: 100%;
  margin: auto auto 0;
}

.step_img_wrapper img {
  width: 100%;
}

.down_arrow_wrapper {
  width: 40px;
  height: 40px;
  margin: 12px auto;
}

.step_text {
  margin-top: 6px;
  margin-bottom: 6px;
}

.step_text_caution {
  text-align: left;
  text-indent: -1em;
  margin-left: 1em;
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 12px;
}


/* 応募規約 */
.notes_top_message {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.7rem;
}

.notes_wrapper {
  margin-bottom: 28px;
}

.notes_wrapper:last-of-type {
  margin-bottom: 16px;
}

.notes_title {
  text-align: center;
  padding: 4px;
  margin-bottom: 16px;
  color: #fff;
  background: #231816;
}

.notes_message {
  margin-bottom: 12px;
  line-height: 1.7rem;
}

.notes_message a {
  text-decoration: underline;
}

.notes_item {
  text-indent: -1rem;
  margin-left: 1rem;
  margin-bottom: 8px;
  line-height: 1.7rem;
}

.notes_item a {
  text-decoration: underline;
}

.notes_item.red {
  color: #df0012;
}




/* 登録ページ */
.session_mail_wrapper {
  margin-bottom: 20px;
}

.session_mailaddress {
  font-size: 18px;
  word-wrap: break-word;
  font-weight: bold;
  margin-bottom: 8px;
}

.entry_page_caution {
  margin-bottom: 8px;
  text-indent: -1rem;
  margin-left: 1rem;
}

.entry_page_caution.last {
  margin-bottom: 28px;
}

.input_password_message {
  margin-bottom: 8px;
}

.entry_password_wrapper {
  margin-bottom: 12px;
}

.form-item.entry_password {
  margin-bottom: 20px;
}


/* ログイン後現在のベリー */
.login_personal_information {
  background: #fff;
  padding: 16px;
}

.login_name {
  text-align: center;
  font-size: 18px;
  line-height: 1.7rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.confirm_point {
  padding: 8px;
  text-align: center;
  width: 70%;
  margin: auto auto 20px;
  border: 3px solid #df0012;
  font-size: 18px;
  line-height: 2.2rem;
  font-weight: bold;
}

.current_point {
  font-size: 22px;
  color: #df0012;
}

.login_personal_information_caution {
  text-indent: -1rem;
  margin-left: 1rem;
  margin-bottom: 6px;
}

.upload_btn {
  color: #fff;
  background: #df0012;
  padding: 12px 4px;
  border-radius: 8px;
  width: 90%;
  margin: auto;
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.upload_btn.finished {
  background: #eeb7bb;
}

.login_personal_information_caution_wrapper {
  margin-bottom: 20px;
}

.tourokuhouhou {
  margin-bottom: 20px;
}

.tourokuhouhou_title {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  margin-bottom: 4px;
}

.tourokuhouhou_img_wrapper {
  width: 90%;
  margin: 12px auto;
}

.tourokuhouhou_img_wrapper img {
  width: 100%;
}


.entry_here {
  text-align: center;
  font-weight: bold;
  color: #df0012;
  font-size: 18px;
  margin-bottom: 8px;
}

.history_btn {
  color: #fff;
  background: #231816;
  padding: 6px 4px;
  border-radius: 8px;
  width: 90%;
  margin: auto;
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.8rem;
}

.entry_btn {
  color: #fff;
  background: #df0012;
  padding: 10px 4px;
  border-radius: 8px;
  width: 90%;
  margin: auto;
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 20px;
}



/* 応募確認ページ */
.entry_img_wrapper {
  width: 100%;
}

.entry_img_wrapper img {
  width: 100%;
}

.entry_confiem_message {
  margin-bottom: 12px;
}

.entry_prize_name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.8rem;
  text-align: center;
}

.entry_img_wrapper {
  margin-bottom: 12px;
}

.use_point {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}

.login_personal_information_caution.use_point_page {
  margin-bottom: 30px;
}



/* アップロード前にチェック */
.shot_good_img_wrapper {
  width: 100%;
  margin-bottom: 12px;
}

.shot_good_img_wrapper img {
  width: 100%;
}

.oneberry_oneyen {
  color: #df0012;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.shoot_caution_point {
  margin-bottom: 12px;
  line-height: 1.7rem;
}



.please_confirm_before_upload {
  margin-bottom: 8px;
}

.check_list_before_upload {
  margin-bottom: 12px;
}

.check_item_before_upload {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.check_item_before_upload p {
  color: #df0012;
  font-weight: bold;
}

.check_list_before_upload_caution {
  text-indent: -1rem;
  margin-left: 1rem;
  margin-bottom: 4px;
}

.check_list_before_upload_caution.red {
  color: #df0012;
  margin-top: 12px;
}

.check_list_before_upload_caution.red.top {
  margin-top: 50px;
}

.check_list_before_upload_caution.red.bottom {
  margin-bottom: 50px;
}

.upload_btn_wrapper {
  margin-bottom: 30px;
}

form.form_01 {
  margin: 40px auto 20px;
}

label.formUpload {
  background: #fff6f6;
  display: block;
  border: 2px solid #df0012;
  color: #df0012;
  text-align: center;
  padding: 12px 4px;
  font-size: 20px;
  border-radius: 8px;
  font-weight: bold;
  margin-bottom: 16px;
  box-shadow: 0px 6px 0px 0px #ffaeae;
}

.upload_confirm_btn {
  color: #fff;
  background: #df0012;
  padding: 14px 4px;
  border-radius: 8px;
  width: 80%;
  margin: auto;
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 32px;
  margin-top: 20px;
}

.form-item.upload {
  margin-bottom: 0;
}

.Errorobi {
  text-align: center;
  color: #df0012;
  font-weight: bold;
}

.uploading_filename {
  text-align: center;
  font-weight: bold;
}



/* レシート画像確認 */
.confirm_message {
  margin-bottom: 20px;
  line-height: 1.5rem;
  color: #000;
  font-size: 16px;
}

.receipt_number {
  text-align: center;
  border: 1px solid #df0012;
  padding: 4px;
  margin-bottom: 12px;
  color: #df0012;
  background: #fff;
}

.receipt_img_wrapper {
  width: 80%;
  margin: auto auto 32px;
}

.receipt_img_wrapper img {
  width: 100%;
}

.send_btn {
  color: #fff;
  background: #df0012;
  padding: 14px 4px;
  border-radius: 8px;
  width: 90%;
  margin: auto;
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 50px;
}

.changeImg_btn {
  display: block;
  background: #231815;
  width: 90%;
  text-align: center;
  color: #fff;
  padding: 14px 4px;
  border-radius: 8px;
  font-weight: bold;
  margin: 0 auto 10px;
}

.form-item.changeImg {
  margin-bottom: 12px;
}




/* アップロード完了 */
.done_upload_message {
  text-align: center;
  font-weight: bold;
  margin-bottom: 12px;
}

.done_upload_caution {
  margin-bottom: 8px;
  text-indent: -1em;
  margin-left: 1em;
}

.done_upload_caution.last {
  margin-bottom: 28px;
  color: #df0012;
}

.history_btn.upload_complete {
  margin-bottom: 30px;
}

.go_to_top_btn.underpage {
  width: 90%;
  border-radius: 8px;
}


/* 応募履歴 */
.confirm_point_top_caution_message {
  color: #df0012;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
}

.confirm_point_top_caution_bottom_message {
  text-indent: -1rem;
  margin-left: 1rem;
  margin-bottom: 20px;
}

.accordion_content.history {
  border: none;
}

.accordion_content_wrapper.history {
  width: 96%;
  margin-top: 12px;
}

.accordion_title.more_view {
  padding: 10px 6px;
  font-size: 16px;
  text-align: center;
  border-radius: 8px;
  width: 70%;
  margin: auto;
}

.accordion_title.more_view::after,
.accordion_title.more_view::before {
  top: 1em;
}

.accordion_content.more_view {
  border: none;
  max-height: 0;
  overflow: hidden;
}

.history_table {
  width: 100%;
  border: 1px solid #612c8d;
  margin-bottom: 20px;
  background: #fff;
}

.history_table a {
  color: #006ec6;
  text-decoration: underline;
}

.history_table th,
.history_table td {
  border: 1px solid #404040;
  padding: 4px;
  text-align: center;
  font-size: 14px;
  vertical-align: middle;
}

.history_table.serial tbody tr td a {
  pointer-events: none;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.saininshou_caution {
  color: #df0012;
}

.accordion_content.more_view {
  margin-top: 20px;
}

.accordion_content_wrapper.history {
  padding-bottom: 0;
}

.option.point_history {
  margin-bottom: 28px;
}

.option.entry_history {
  margin-bottom: 30px;
}

.confirm_point.history_page {
  margin-bottom: 32px;
}



/* エラーページ */
.error_message {
  margin-bottom: 20px;
}



/* パスワード忘れ */
.session_mail_wrapper.forget_password {
  margin-bottom: 0;
}

.forget_password_btn {
  color: #fff;
  background: #df0012;
  padding: 10px 4px;
  border-radius: 8px;
  width: 90%;
  margin: auto;
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.textbox-001.forget_password {
  background: #fff;
}

.forget_password_caution {
  margin-top: 28px;
  text-indent: -1rem;
  margin-left: 1rem;
  margin-bottom: 8px;
}



/* ポイント確認 */
.confirm_point_message {
  margin-bottom: 20px;
}

.confirm_point_message.center {
  text-align: center;
}

.sai_mokushi_message {
  text-align: center;
  color: #df0012;
  font-weight: bold;
  margin-bottom: 24px;
}


.sai_mokushi_btn {
  display: block;
  background: #df0012;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 10px 4px;
  border-radius: 8px;
  font-weight: bold;
  margin: 0 auto 28px;
}

.confirm_ok_btn {
  display: block;
  background: #3F51B5;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 10px 4px;
  border-radius: 8px;
  font-weight: bold;
  margin: 0 auto 28px;
}

.get_point_wrapper {
  text-align: center;
  border: 3px solid #df0012;
  width: 80%;
  margin: auto auto 20px;
  padding: 8px;
  background: #fff;
}

.get_point_wrapper .get_point {
  margin: 10px auto;
  font-weight: bold;
}

.get_point_wrapper .get_point span {
  color: #df0012;
  font-size: 24px;
  font-weight: bold;
}

.get_point_wrapper p {
  text-align: center;
}

.confirm_point_caution {
  text-indent: -1rem;
  margin-left: 1rem;
  margin-bottom: 20px;
}



/* ログインページ */
.loginpage_message {
  text-align: center;
  margin-bottom: 20px;
}


/* キャンペーン終了後TOP */
.finished_message {
  color: #df0012;
  font-size: 18px;
  line-height: 1.7rem;
  width: 94%;
  background: #fff;
  margin: 16px auto 12px;
  padding: 12px;
  font-weight: bold;
  text-align: center;
}



/* 賞品応募完了 */
.entry_complete_thanks_message {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.entry_complete_message {
  margin-bottom: 12px;
}

.entry_complete__caution {
  margin-bottom: 12px;
}

.entry_complete__caution.last {
  margin-bottom: 24px;
}


.formUploadPreviewBox {
  width: 80%;
  margin: auto auto 12px;
}

.formUploadPreviewBox img {
  width: 100%;
}

.dropdown.enquete {
  margin-bottom: 28px;
}

.dropdown-select.enquete {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #612c8d;
  border-radius: 3px;
  font-size: 1em;
  line-height: 1.5;
}

select {
  /* styling */
  background-color: white;
  border: thin solid blue;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;

  /* reset */

  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}


select.minimal {
  background-image:
    linear-gradient(45deg, transparent 50%, #612c8d 50%),
    linear-gradient(135deg, #612c8d 50%, transparent 50%),
    linear-gradient(to right, #612c8d, #612c8d);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}

select.minimal:focus {
  background-image:
    linear-gradient(45deg, #612c8d 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, #612c8d 50%),
    linear-gradient(to right, #612c8d, #612c8d);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  border-color: #612c8d;
  outline: 0;
}


select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

#pageTop {
  position: fixed;
  bottom: 12px;
  right: 15px;
}

@media screen and (min-width:641px) {
  #pageTop {
    right: 50%;
    transform: translateX(305px);
  }
}

#pageTop .fa-arrow-alt-circle-up {
  display: inline-block;
  z-index: 999;
  font-size: 48px;
  color: #2fa5df;
  background: #fff;
  border-radius: 50%;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.7);
}



        /* 基本的に「もっと表示する」ボタンを非表示にする */
        .accordion_title.more_view {
          display: none;
      }


      /* 下のテーブルが2行以上の場合（シリアルナンバー用） */
      .accordion_content_wrapper.history:has(.accordion_content.more_view .history_table tbody tr:nth-child(2)) .accordion_title.more_view {
          display: block;
      }

      /* 下のテーブルが2行以上の場合（応募履歴用） */
      .accordion_content_wrapper.history:has(.accordion_content.more_view .table.history_table tbody tr:nth-child(2)) .accordion_title.more_view {
          display: block;
      }

      /* ブラウザサポート警告 */
      .browser-support-warning {
          background-color: #fff3cd;
          border: 1px solid #ffeaa7;
          color: #856404;
          padding: 10px;
          margin: 10px 0;
          border-radius: 5px;
          display: block;
      }

      .accordion_content_wrapper:has(*) ~ .browser-support-warning {
          display: none;
      }