@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

:root{
  --main-color: #001E64;
  --red: #EA5548;
  --yellow: #FFEB28;
  --bg-pink: #FFBDA5;
  --bg-yellow: #FAFDE0;
}
/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  /*font-size: 100%;*/
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

img {
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;}

/**********
Common
**********/
html {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", "Helvetica", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}
*, :before, :after {
  box-sizing: border-box;
}
body{
  background: #FFF;
  color: var(--main-color);
	font-size: 16px;
	line-height: 1.7;
}
@media screen and (max-width: 767px){
  body{
    font-size: 15px;
  }
}
/* image */
img{
  max-width: 100%;
  height: auto;
}
.img-stretch {
	width: 100%;
}
.img-responsive{
  display: block;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width:768px) {
  .img-opacity{
    transition: .15s ease-in-out;
  }
  .img-opacity:hover {
    opacity: 0.8;
  }
}
/* .wrapper{
  width: 100%;
  overflow: hidden;
  position: relative;
} */
@media screen and (min-width:768px) {
  .sp{display: none !important;}
}
@media screen and (max-width:767px) {
  .pc{display: none !important;}
}
.container{
  max-width: 600px;
  width: calc(100% - (15px * 2));
  margin-inline: auto;
  position: relative;
}
.container-m{
  max-width: 700px;
  width: calc(100% - (15px * 2));
  margin-inline: auto;
  position: relative;
}
.bg-wrap{
  padding-block: 60px 80px;
}
.bg-pink{
  background-color: var(--bg-pink);
}
.bg-red{
  background-color: var(--red);
}
.bg-yellow{
  background-color: var(--bg-yellow);
}
@media screen and (max-width:767px) {
  .bg-wrap{
    padding-top: 50px;
  }
}
/* flex */
.flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-r{
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex2, .flex3, .flex4{
  margin-left: -15px;
  margin-right: -15px;
}
.flex2_item{
  margin: 0 15px 30px;
  width: calc(50% - 30px);
}
.flex2_item_last{
	margin-bottom: 0;
}
.flex3_item{
  margin: 0 15px 30px;
  width: calc(33.33% - 30px);
}
.flex4_item{
  margin: 0 15px 30px;
  width: calc(25% - 30px);
}
@media screen and (max-width:767px) {
  .flex2, .flex3 {
    margin-left: 0;
    margin-right: 0;
  }
  .flex2_item{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex3_item{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex4_item{
    width: calc(50% - 30px);
  }
}

/* title */
.ttl{
  font-weight: 900;
}
h1, .h1{
  font-size: 26px;
  text-align: center;
}
h2, .h2{
  font-size: 22px;
  text-align: center;
}
h3, .h3{
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width:767px) {
  h1, .h1{
    font-size: 20px;
  }
  h2, .h2{
    font-size: 18px;
  }
  h3, .h3{
    font-size: 16px;
  }
  .h3_sp{
    font-size: 16px;
  }
}
.font-noto{
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.color-red{
  color: var(--red);
}
.color-wht{
  color: #FFF;
}
.text-center{
  text-align: center;
}
.text-left{
  text-align: left;
}
.fontW-n{
  font-weight: 400;
}
.fontW-b{
  font-weight: 600;
}
.fontS-m{
  font-size: 1.1em;
}
.fontS-s{
  font-size: .8em;
}
.fontS-xs{
  font-size: .7em;
}
.note{
  font-size: .8em;
  opacity: .7;
}
.note-mark{
  display: flex;
}
.note-mark .mark_text{
  flex: 1;
}
sup{
  font-size: smaller;
  line-height: 1;
  vertical-align: super;
}
@media screen and (min-width:768px) {
  .text-center_pc{
    text-align: center;
  }
}
@media screen and (max-width:400px) {
  .note{
    font-size: 12px;
  }
}
/* margin */
.margin-center{
  margin-left: auto;
  margin-right: auto;
}
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb45 { margin-bottom: 45px !important; }
.mb60 { margin-bottom: 60px !important; }
.mt60 { margin-top: 60px !important; }
.mt55 { margin-top: 55px !important; }
.mt50 { margin-top: 50px !important; }
.mt45 { margin-top: 45px !important; }
.mt40 { margin-top: 40px !important; }
.mt35 { margin-top: 35px !important; }
.mt30 { margin-top: 30px !important; }
.mt25 { margin-top: 25px !important; }
.mt20 { margin-top: 20px !important; }
.mt15 { margin-top: 15px !important; }
.mt10 { margin-top: 10px !important; }
.mt5 { margin-top: 5px !important; }
.mt0 { margin-top: 0px !important; }
.pt45 { padding-top: 45px; }
.pt40 { padding-top: 40px; }
.pt30 { padding-top: 30px; }
.pt15 { padding-top: 15px; }
.pt10 { padding-top: 10px; }
.pt0 { padding-top: 0px !important; }
@media screen and (min-width:768px) {
  .mt60_pc { margin-top: 60px !important; }
  .mt50_pc { margin-top: 50px !important; }
  .mt45_pc { margin-top: 45px !important; }
  .mt40_pc { margin-top: 40px !important; }
  .mt30_pc { margin-top: 30px !important; }
  .mt20_pc { margin-top: 20px !important; }
  .mt15_pc { margin-top: 15px !important; }
  .mt10_pc { margin-top: 10px !important; }
  .mt0_pc { margin-top: 0px !important; }
}
@media screen and (max-width:767px) {
  .lineH-l{
    line-height: 1.7em;
  }
  .mb0_sp {margin-bottom: 0 !important;}
  .mb40_sp { margin-bottom: 40px !important; }
  .mt60_sp { margin-top: 60px !important; }
  .mt50_sp { margin-top: 50px !important; }
  .mt45_sp { margin-top: 45px !important; }
  .mt40_sp { margin-top: 40px !important; }
  .mt30_sp { margin-top: 30px !important; }
  .mt25_sp { margin-top: 25px !important; }
  .mt20_sp { margin-top: 20px !important; }
  .mt15_sp { margin-top: 15px !important; }
  .mt10_sp { margin-top: 10px !important; }
  .mt5_sp { margin-top: 5px !important; }
  .mt0_sp { margin-top: 0px !important; }
}

/* link */
a{text-decoration: underline;color: inherit;cursor: pointer;}
a:hover{text-decoration: none;}
.link-blank{
  display: flex;
  line-height: 1.8;
}
.link-blank::before{
  content: "";
  display: block;
  background: url(../img/icon_blank.png) center center / contain no-repeat;
  margin-right: .6em;
  margin-top: .3em;
  height: 1.35em;
  width: 1.15em;
}
.link-border{
  border-bottom: 1px solid var(--main-color);
  padding: 0 4px;
  text-decoration: none;
  max-width: fit-content;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.link-border .link_inner:hover{
  opacity: .8;
}
.link-arrow{
  display: inline-block;
  text-decoration: none;
}
.link-arrow .link_inner{
  font-weight: bold;
  display: flex;
  align-items: center;
}
.link-arrow .link_inner::after{
  content: "";
  display: block;
  background: url("../img/icon_arrow-solid.svg") center center / contain no-repeat;
  margin-left: 0.4em;
  height: 0.7em;
  width: 0.7em;
  transition: .2s;
}
.link-arrow:hover .link_inner::after{
  transform: translateX(3px);
}
.link-acc{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.link-acc::after{
  content: "";
  background: url(../img/select_arrow-navy.svg) center center / contain no-repeat;
  display: block;
  transform: rotate(180deg);
  transition: .4s;
  height: .7em;
  width: .7em;
}
.link-acc.collapsed::after{
  transform: rotate(0);
}
.c-icon{
  display: inline-block;
  line-height: 1;
  margin-right: .35em;
  text-align: center;
  vertical-align: sub;
  width: 1.25em;
}
/* ボタン */
.btn-wrap{
	margin: 60px auto 0;
}
button{
  outline: none !important;
}
.btn {
	border-radius: 10px;
  border: 3px solid var(--main-color);
  background-color: var(--main-color);
  box-shadow: 3px 3px 0 #001e3c;
  color: #FFF;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 1em;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 11px;
  text-align: center;
  text-decoration: none;
  max-width: 307px;
  width: 100%;
  margin-inline: auto;
  vertical-align: middle;
  transition: .2s;
}
.btn:not(.btn-close):focus,
.btn:not(.btn-close):active,
.btn:not(.btn-close):hover{
  outline: none;
  opacity: 1;
  transform: translateX(3px) translateY(3px);
  box-shadow: 0 0 0 #001e3c;
}
.btn-l {
  font-size: 20px;
  padding: 13px 25px;
}
.btn-m {
  font-size: 18px;
}
.btn-full {
  max-width: inherit;
  width: 100%;
}
.btn-submit{
  background: var(--red);
  border: 3px solid var(--red);
  border-radius: 10px;
  box-shadow: 3px 3px 0 #91241F;
  color: #FFF;
  max-width: 100%;
  padding-inline: 30px 50px;
  position: relative;
  width: fit-content;
}
.btn-submit::after{
  background: url(../img/1m-thanks/ico_btn-arrow-wht.svg) center center / contain no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 15px;
  height: 100%;
  width: 25px;
}
.btn-submit:hover{
  box-shadow: 0 0 0 #91241F;
}
.btn-close{
  background: #EBEBEB;
  border: none;
  border-radius: 3px;
  box-shadow: none;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  max-width: initial;
  min-height: initial;
  padding: 4px;
  width: 100%;
}
.btn-close:focus,
.btn-close:active,
.btn-close:hover{
  opacity: .7;
}
@media screen and (min-width:768px) {
  .btn-submit{
    min-height: 80px;
    min-width: 400px;
  }
}
@media screen and (max-width:767px) {
  .btn-l{
    font-size: 18px;
  }
  .btn-submit{
    padding-inline: 30px 40px;
    width: 90%;
  }
  .btn-submit::after{
    right: 10px;
    width: 22px;
  }
}

/**
 * Header
 */
header {
  background: var(--red);
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 7px 5px 10px 8px;
  gap: 0 15px;
  position: relative;
}
header .logo{
  line-height: 1;
  flex: 1;
  max-width: 250px;
  position: relative;
  z-index: 2;
}

/**
 * Footer
 */
footer{
  background-color: #FFFFFF;
  padding: 15px 0 15px;
}
footer .footer_logo .small{
  font-size: 10px;
  color: #707070;
}

/**
 * フォーム
 */
.form-block{
  background: #FFF;
  border-radius: 15px;
  padding: 40px 20px;
}
.block_inner{
  max-width: 520px;
  margin-inline: auto;
}
.ttl.form-ttl{
  line-height: 1.5;
}
.form_group:not(:last-child) {
  margin-bottom: 30px;
}
label {
  display: inline-block;
}
.form .control-label{
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
}
dd + dt {
	padding-top: 40px;
}
.form-control{
  appearance: none;
  border: 2px solid #EAEAEA;
  border-radius: 5px;
  color: var(--main-color);
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  padding: .5rem .75rem;
  min-height: 50px;
  min-width: 37%;
}
.form-control.full{
  width: 100%;
}
.form-control::placeholder{
  color: #A8A8A8;
}
select.form-control{
  background: #FFF url("../img/1m-thanks/select_arrow-navy.svg") right 9px center / 11px auto no-repeat;
  padding-right: 21px;
  position: relative;
}
textarea.form-control{
  height: 7em;
}
.btn-select-group{
	overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}
.btn-select-group .btn{
  background-color: #FFF;
  border: 2px solid #EAEAEA;
  border-radius: 5px;
  box-shadow: none;
  color: var(--main-color);
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 10px 10px;
  margin: 0;
  max-width: inherit;
  min-height: 50px;
}
.btn-select-group .btn:focus,
.btn-select-group .btn:active,
.btn-select-group .btn:hover{
  opacity: .7;
  transform: none;
  box-shadow: none;
}
.btn-select-group .btn.full{
  flex: auto;
  width: 100%;
}
.btn-select-group input:checked + .btn{
  background: #FFFBD9;
  border-color: #EAEAEA;
}
.input-hidden {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.error_message {
  background: var(--red);
  color: #FFF;
  display: block;
  font-weight: 400;
  padding: 0 5px;
  line-height: 1.3;
}
.form_birth{
  display: flex;
  align-items: center;
}
.form_birth select.form-control{
  min-width: initial;
  width: 80px;
}
.form_birth select.form-control#birthday_year{
  width: 100px;
}
.form_birth .label{
  margin-inline: .3em .5em;
}
@media screen and (max-width:767px) {
  .form-block{
    padding: 30px 15px;
  }
  .form .control-label{
    font-size: 16px;
  }
  .btn-select-group{
    gap: 8px;
  }
  .btn-select-group .btn{
    flex: auto;
    width: calc(50% - 4px);
  }
  .btn-select-group .btn.full_sp{
    width: 100%;
  }
}
/*規約*/
.outline-wrap{
  background-color: #fff;
  border-radius: 15px;
  padding: 15px 12px 15px 25px;
  margin-inline: auto;
}
.outline-inner{
	height: 300px;
  padding-right: 10px;
	overflow-y: scroll;
}
.rules{
  font-size: 14px;
  font-weight: 400;
	height: 330px;
  padding-right: 15px;
  line-height: 1.5;
	overflow-y: scroll;
  overflow-x: hidden;
}
.rules::-webkit-scrollbar {
  width: 5px;
}
.rules::-webkit-scrollbar-track {
  background-color: #EFEFEF;
}
.rules::-webkit-scrollbar-thumb {
  background-color: var(--red);
  border-radius: 100vh;
}
.rules .font-a1b{
  font-size: 1.1em;
}
.rules_ttl{
  font-weight: 500;
  padding: 20px 0 0;
}
.rules_ttl:first-child{
  padding-top: 10px;
}
.rules dd{
  line-height: 150%;
}
.rules ul{
  padding-left: 2em;
  list-style: disc;
}
.rules sup{
  font-size: 10px;
}
.rules .note{
  font-size: .9em;
}
@media screen and (max-width:767px) {
  .outline-wrap{
    padding: 10px 10px 10px 12px;
  }
  .rules{
    height: 240px;
    padding-right: 0;
  }
  .rules .font-a1b{
    font-size: 15px;
  }
  .rules *{
    font-size: 13px;
  }
  .rules_ttl{
    padding-top: 15px;
  }
  .rules_ttl:first-child{
    margin-top: 2px;
  }
}

/* ローディング */
#loading{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    z-index: 10;
}
.loading_inner{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.loading_circle{
    display: inline-block;
    color: #ffffff;
    font-size: 10px;
    margin: 100px auto;
    width: .8em;
    height: .8em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    -webkit-animation: load4 1.3s infinite linear;
    animation: load4 1.3s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.loading_txt{
    color: #FFF;
    margin-left: 3em;
    display: inline-block;
}
@-webkit-keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
      box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
@keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
      box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
      box-shadow: 0 -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

/*モーダル*/
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-header{
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  text-align: left;
  position: relative;
}
.modal-header .ttl{
  text-align: left;
}
.modal-close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover,
.modal-close:focus {
  color: #000;
}
.modal-content {
  background-color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin: auto;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 0;
  width: 90%;
}
.modal-body {
  padding: 20px;
}
.modal-body .note{
  color: var(--main-color);
}
.modal-footer {
  padding: 15px 20px;
  text-align: center;
}
.modal-footer .btn_area{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px 10px;
  width: 100%;
}
.modal-footer .btn {
  min-height: initial;
  min-width: initial;
}
.modal-footer .btn_area_col2 .btn{
  width: 50%;
}
.border-text{
  border-bottom: 1px solid var(--main-color);
  margin-inline: auto;
  width: fit-content;
}
@media screen and (max-width:767px) {
  .modal-header{
    padding: 15px;
  }
  .modal-footer .btn_area{
    flex-direction: column-reverse;
  }
  .modal-footer .btn_area_col2 .btn{
    width: 100%;
  }
  #cancel_btn{
    font-size: 1em;
    max-width: 85%;
  }
}

/* 期間外メッセージのスタイル */
#confirm_message_4 {
  text-align: center;
  padding: 20px;
}
#confirm_message_4 p {
  margin-bottom: 10px;
  font-size: 16px;
}

/* 
確認画面
*/
.confirm-content .title{
  font-weight: 600;
}
.confirm-content .content{
  color: var(--red);
  font-weight: 700;
  font-size: 18px;
}

/* 
完了画面
*/
/* SNSキャンペーン */
.sns-campaign{
  max-width: 800px;
  margin-top: 80px;
  padding-block: 40px 85px;
}
.sns-campaign .block_inner{
  max-width: 710px;
}
.sns-campaign .ttl-block{
  position: relative;
  max-width: 290px;
  margin-inline: auto;
}
.sns-campaign .ttl-block .label{
  position: absolute;
  top: -47%;
  right: 110%;
  max-width: 156px;
  width: 54%;
}
.sns-campaign .prize{
  display: flex;
  gap: 7px 15px;
}
.sns-campaign .prize .img{
  width: 46.3%;
}
.sns-campaign .prize .text{
  flex: 1;
  margin-top: 30px;
  text-align: center;
}
.sns-campaign .prize .text p:not(.note){
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1.5;
}
.sns-campaign .prize .text .note{
  color: initial;
  font-size: 13px;
}
.sns-campaign .how{
  max-width: 470px;
  margin-inline: auto;
}
.sns-campaign .how .ttl{
  max-width: 204px;
  margin-inline: auto;
  width: 52%;
}
.sns-campaign .how .how_list{
  list-style: none;
  counter-reset: number;
}
.sns-campaign .how .how_list li{
  border-bottom: 2px dotted var(--red);
  color: var(--red);
  font-size: 19px;
  font-weight: 900;
  padding: 4px 10px;
}
.sns-campaign .how .how_list li:first-child{
  border-top: 2px dotted var(--red);
}
.sns-campaign .how .how_list li .how_list_inner{
  padding: 14px 0 9px 2em;
  position: relative;
  margin-left: auto;
  max-width: 420px;
  width: 100%;
}
.sns-campaign .how .how_list li .how_list_inner::before{
  background: var(--red);
  border-radius: 100vh;
  counter-increment: number;
  content: counter(number);
  color: #FFF;
  font-size: 20px;
  font-weight: 900;
  position: absolute;
  top: .85em;
  left: 0;
  line-height: 1.4em;
  text-align: center;
  height: 1.5em;
  width: 1.5em;
}
.sns-campaign .how .how_list li .how_list_inner::after{
  content: "STEP";
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: .3em;
  left: 0;
  text-align: center;
  width: fit-content;
}
.sns-campaign .btn{
  background: var(--main-color);
  border-radius: 16px;
  box-shadow: 3px 3px 0 #001E3C;
  color: #FFF;
  font-size: 1.6em;
  font-weight: 800;
  justify-content: center;
  align-items: center;
  gap: .65em;
  min-height: 90px;
}
.sns-campaign .btn::after{
  content: "";
  display: block;
  background: url(../img/1m-thanks/icon_blank.svg) center center / contain no-repeat;
  height: 1.1em;
  width: 1.1em;
}
@media screen and (max-width:767px) {
  .sns-campaign{
    margin-top: 50px;
    padding-block: 1px 40px;
    width: calc(100% - (25px * 2));
  }
  .sns-campaign .ttl-block{
    max-width: initial;
  }
  .sns-campaign .ttl-block .ttl{
    margin: -6% -10% 0;
  }
  .sns-campaign .prize{
    flex-direction: column;
    align-items: center;
  }
  .sns-campaign .prize .img{
    width: 85%;
  }
  .sns-campaign .prize .text{
    margin-top: 0;
  }
  .sns-campaign .prize .text p:not(.note){
    font-size: 16px;
  }
  .sns-campaign .how .how_list li{
    font-size: 14px;
    padding: 7px 3px;
  }
  .sns-campaign .how .how_list li .how_list_inner{
    padding: 14px 0 5px 2.6em;
  }
  .sns-campaign .how .how_list li .how_list_inner::before{
    font-size: 18px;
    line-height: 1.5em;
    height: 1.6em;
    top: .8em;
    width: 1.6em;
  }
  .sns-campaign .how .how_list li .how_list_inner::after{
    top: 0;
  }
  .sns-campaign .btn{
    border-radius: 12px;
    font-size: 1.5em;
    padding-inline: 5px;
    min-height: 77px;
    width: 90%;
  }
}

/* キャンペーン終了 */
.cp_finished{
    position: relative;
    z-index: 100;
    /* pointer-events: none; */
}
.cp_finished::before,
.cp_finished::after{
    position: fixed;
    inset: -100%;
    margin: auto;
    content: '';
    display: block;
}
.cp_finished::before{
    z-index: 20;
    width: 100vw;
    height: 100vh;
    background: #858585;
    opacity: .7;
    pointer-events: none;
}
.cp_finished::after{
    z-index: 21;
    width: min(70%, 1050px);
    height: auto;
    aspect-ratio: 1046 / 83;
    background: url(../img/1m-thanks/cp_finished_pc.svg) no-repeat center / contain;
}
.cp_finished a{pointer-events: none !important;}
.cp_finished figure.finished::before{display: none !important;}
@media screen and (max-width:767px) {
  .cp_finished::after{
    background-image: url(../img/1m-thanks/cp_finished_sp.svg);
    aspect-ratio: 453 / 166;
  }
}