@charset 'utf-8';

/*リセット*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
body {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM,
    "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo,
    sans-serif;
  line-height: 1;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
ol,
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000 !important;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input[type="text"],
input[type="submit"],
input[type="button"],
input[type="number"],
input[type="email"],
input[type="radio"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border: 1px solid gray;
}
input::-webkit-input-placeholder {
  line-height: 1.286;
}

/*リセット ここまで*/

/* PC */
@media screen and (min-width: 769px) {
  button {
    cursor: pointer;
  }
  .clearbr {
    display: none;
  }
  .main .button,
  .top-button {
    font-size: 28px;
    font-weight: bold;
    background: #ffd700;
    padding: 2% 0;
    border: none;
    position: relative;
    margin: 5% auto 3% auto;
  }
  .main .button:disabled,
  .top-button:disabled {
    opacity: 0.6;
  }
  .main .login {
    margin: 0 auto 7% auto;
  }
  .main-box .button,
  .top-button {
    width: 60%;
  }
  .backButton::before{
    content: "\f137";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(50%);
    margin: auto;
    left: 0;
  }
  .backButton::after{
    content: none;
  }
  button::after {
    content: "\f138";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    right: 0;
  }
  .sub-button {
    font-size: 18px;
    font-weight: bold;
    border: none;
    position: relative;
    margin: 5% auto 3% auto;
    width: 50%;
  }
  .sub-button a {
    font-size: 18px;
    font-weight: bold;
    background: #cccccc;
    display: block;
    padding: 4% 0;
    font-size: 18px;
    font-weight: bold;
  }

  .sub-button::after {
    content: "\f138";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    right: 0;
  }
  input .disabled {
    color: #fff;
  }
  .sign-up {
    margin: 5% 0;
    font-size: 20px;
  }
  .sign-up a {
    color: #1a0dab !important;
  }
  /* チェックボックス */
  .checkbox {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
  .checkbox-parts {
    padding-left: 4%;
    position: relative;
    font-size: 18px;
  }
  .checkbox-parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    width: 16px;
    height: 16px;
    border: 1px solid #999;
    background: #fff;
  }
  .checkbox:checked + .checkbox-parts::after {
    content: "";
    display: block;
    position: absolute;
    /* top: 0; */
    top: 0;
    bottom: 0;
    left: 7px;
    width: 6px;
    height: 15px;
    transform: translateY(-50%) translateX(-50%);
    transform: rotate(40deg);
    border-bottom: 3px solid #000;
    border-right: 3px solid #000;
  }
  /* ラジオボタン */
  .question-radio li label input[type="radio"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
  .question-radio li label input[type="radio"] + span {
    display: inline-block;
    position: relative;
    padding-left: 4%;
    cursor: pointer;
    font-size: 18px;
  }
  .question-radio li label input[type="radio"] + span::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 1em;
    height: 1em;
    display: block;
  }
  .question-radio li label input[type="radio"]:checked + span::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: gray;
    border-radius: 50%;
    width: 1em;
    height: 1em;
    border: 1px solid #fff;
    display: block;
  }
  .question-box dd{
    width: 42% !important;
  }
  /* メイン */
  .main .sub-comment {
    width: 80%;
    font-weight: bold;
    line-height: 1.5;
    margin: 6% auto 3% auto;
    font-size: 22px;
  }
  .main .sub-comment span{
    width: 80%;
    display: block;
    font-size: 20px;
    margin: 1em auto 0 auto;
  }
  .main .order-comment {
    font-weight: bold;
    line-height: 2;
    margin: 6% auto 3% auto;
    font-size: 26px;
  }
  .main .text-box {
    width: 80%;
    line-height: 1.5;
    margin: 0 auto;
  }
  .main {
    background-image: url(../img/img_pc_back.png);
    background-repeat: repeat;
    background-size: 100%;
  }
  .main main {
    background: url(../img/img_pc_logo.png) center top no-repeat;
    padding-top: 320px;
    background-size: 100% !important;
    padding-bottom: 7%;
    max-width: 960px;
    margin: 0 auto;
  }
  .registration{
    padding-top: 6%;
  }
  .registration p,
  .error,
  .confirm-comments{
    font-size: 18px;
    width: 73%;
    margin: 4% auto 0 auto;
    padding: 2%;
    color: #ff0000;
    line-height: 1.5;
    border: 1px solid #ff0000;
  }
  .confirm-comments{
    font-weight: bold;
    border: 2px solid #ff0000;
  }
  /* 各step共通 */
  .main .main-title {
    font-size: 36px;
    font-weight: bold;
    position: relative;
    padding-top: 8%;
  }
  .main .main-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    display: inline-block;
    width: 50px;
    height: 8px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #000;
    border-radius: 4px;
  }
  .main .error-title{
    color: #ff0000;
  }
  .main .error-title::after{
    background-color: #ff0000;
  }
  .main .main-contents {
    margin-top: 6%;
    padding-bottom: 6%;
  }
  /*211129追加*/
  .main .main-contents .result-button {
    display: block;
    font-size: 28px;
    font-weight: bold;
    background: #ffd700;
    width: 60%;
    padding: 2% 0;
    border: none;
    position: relative;
    margin: 5% auto 3% auto;
  }
  .main .main-contents .result-button::after {
    content: "\f138";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    right: 0;
  }
  /* モーダルウィンドウ */
  .main .winning-modal .modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
    }
  .main .winning-modal .close-btn{
    display: block;
    font-size: 28px;
    font-weight: bold;
    background: #ffd700;
    width: 60%;
    padding: 2% 0;
    border: none;
    position: relative;
    margin: 5% auto 3% auto;
    cursor: pointer;
    }
  .btn-disabled{
    pointer-events: none;
    opacity: 0.5;
    }
  .main .winning-modal .modal-bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
    }
  .main .winning-modal .modal-box{
    background: #fff;
    padding: 3%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
    max-width: 880px;
    }
  .main .winning-modal .modal-box .modal-box-inner{
    border: 3px solid #000000;
    }
  .main .winning-modal .modal-box .modal-box-title{
    font-size: 36px;
    font-weight: bold;
    position: relative;
    padding-top: 8%;
    padding-bottom: 3%;
    color: red;
  }
  .main .winning-modal .modal-box .modal-box-text{
    width: 80%;
    line-height: 1.5;
    margin: 0 auto;
    text-align: justify;
  }
  .main .winning-modal .modal-box .modal-box-text-check{
    margin: 30px auto 0;
    text-align: center;
  }
  /*ここまで211129追加*/
  .main .order-contents {
    padding-bottom: 2%;
  }
  .main .complete-contents {
    padding-bottom: 3%;
  }
  .main .main-caution {
    font-size: 26px;
    font-weight: bold;
    width: 80%;
    margin: 0 auto;
    line-height: 1.5;
  }
  .main .main-comment {
    font-size: 18px;
    padding: 3% 0;
    width: 75%;
    margin: 5% auto;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    line-height: 1.5;
    text-align: justify;
  }
  /* ログイン後 */
  .main .main-box {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    margin: 0 auto;
    padding-bottom: 5%;
  }
  .main .main-box .point-welcome {
    font-size: 28px;
    border-bottom: 1px solid #000;
    margin: auto auto 3% auto;
    width: 85%;
    padding: 6% 0 3% 0;
    font-weight: bold;
    line-height: 1.5;
  }
  .main .main-box .point-comment {
    line-height: 1.5;
    font-size: 22px;
    font-weight: bold;
  }
  .main .main-box .point-comment p:nth-of-type(1) {
    color: #ff0000;
  }
  .main .main-box .point-now {
    margin: 4% auto;
    padding: 4% 0;
    width: 75%;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
    border: 1px solid gray;
  }
  .main .main-box .point-now div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 60%;
  }
  .main .main-box .point-now p:nth-of-type(1) {
    font-size: 22px;
    line-height: 1.5;
  }
  .main .main-box .point-now p:nth-of-type(2) {
    display: none;
  }
  .main .main-box .point-now p:nth-of-type(3) {
    font-size: 22px;
  }
  .main .main-box .point-now .point-count {
    /* font-size: 8vw; */
    font-size: 130px;
    margin-bottom: 3%;
    color: #ff0000;
    font-weight: bold;
  }
  .main .main-box .point-now .point-count span {
    /* font-size: 4vw; */
    font-size: 70px;
    color: #ff0000;
    font-weight: bold;
  }
  .main .main-box .point-now .apply-count {
    background: beige;
    font-size: 4vw;
    font-weight: bold;
    width: 60%;
    margin: 0 auto;
    padding: 2% 0;
    border: 1px solid #000;
  }
  .main .main-box .point-now .apply-count span {
    margin-left: 3%;
  }
  .main .entry img {
    width: 50%;
    display: inline-block;
    margin: 7% auto 0 auto;
  }
  .container {
    background: #fff9e8;
    padding: 5vh 0;
  }
  .container section {
    width: 85%;
    max-width: 960px;
    margin: 0 auto;
  }
  .section-title {
    font-size: 28px;
    font-weight: bold;
    border-top: 3px double #000;
    border-bottom: 3px double #000;
    padding: 2% 0;
    margin: 8% 0% 3.5% 0;
  }
  .section-title_notice {
    text-align: center;
  }
  .section-title_noticetitle {
    font-size: 20px;
    font-weight: bold;
  }
  .section-title_noticetitle span{
    color: #ff0000;
  }
  .section-title_noticecopy {
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.35;
  }
  .entry-link{
	/*width: 46%;
	background: #dedede;
	padding: 2%;
	font-size: 20px;*/
  width: 50%;
	margin: 30px auto 0;
  position: relative;
  }
  .entry-link a {
    background: #dedede;
    padding: 4%;
    font-size: 20px;
    display: block;
    }
  .entry-link::after {
    content: "\f138";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%) rotate(90deg);
    margin: auto;
    right: 2%;
  }
  /* 商品一覧 */
  .product-section p {
    text-align: justify;
    line-height: 1.5;
    width: 95%;
    margin: 0 auto;
  }
  .container .course-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .container .course-list ul li {
    /*width: 28%;
    margin: 0 3%;*/
    /*220203追記*/
    width: 27%;
    margin: 0 3% 3%;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .container .course-list ul::after {
    content: "";
    display: block;
    width: 27%;
    margin: 0 3% 3%;
  }
  /*ここまで220203追記*/
  .container .course-list ul li img {
    width: 100%;
  }
  .container .course-list .apply-course {
    font-size: 24px;
    font-weight: bold;
    background-color: #fff;
    padding: 1.5% 0;
    margin: 6% 0 3% 0;
  }
  .container .course-list .product-list .form-submit button {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    background-color: #fff;
    border: 1.5px solid #000;
    border-radius: 3px;
    display: block;
    width: 80%;
    margin: 3% auto 0 auto;
    padding: 2% 0;
    opacity: 0.5;
  }
  .container .course-list .product-list .disabled-button .form-submit button {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    background-color: #fff;
    border: 1.5px solid #000;
    border-radius: 3px;
    display: block;
    width: 80%;
    margin: 3% auto 0 auto;
    padding: 2% 0;
    opacity: 0.5;
  }

.container .form-submit button {
    position: relative;
    font-size: 28px;
    font-weight: bold;
    background: #ffd700;
    width: 60%;
    padding: 2% 0;
    border: none;
    position: relative;
    margin: 5% auto 3% auto;
  }
.container .disabled-button button {
    position: relative;
    font-size: 28px;
    font-weight: bold;
    background: #ffd700;
    width: 60%;
    padding: 2% 0;
    border: none;
    position: relative;
    margin: 5% auto 3% auto;
    opacity: 0.5;
    cursor: default;
  }


  /* 共通フォーム */
  .main .form-box dl dt {
    font-size: 18px;
    text-align: left;
    font-weight: bold;
    margin-bottom: 1%;
    line-height: 1.5;
  }
  .main .form-box {
    width: 75%;
    margin: auto;
  }
  .main .form-box input.form-area {
    font-size: 18px;
    width: 99%;
    padding: 15px 0 15px 5px;
    text-align: left;
    border: 1px solid gray;
  }
  .main .form-box .file-upload {
    text-align: left;
    display: flex;
  }
  .file-upload input {
    display: block;
    box-shadow: none;
    border: none;
  }
  .file-upload .file-none {
    display: none;
  }
  .file-upload .text-filename {
    width: 100%;
    padding-left: 1%;
  }
  .btn_fileupload {
    background: transparent url(../img/file_icon.svg) no-repeat top left;
    cursor: pointer;
    padding: 20px 80px;
    display: inline-block;
  }
  .border-contents {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 5% 0 1% 0;
    margin-bottom: 6%;
  }
  .main .form-box .formitem-checkbox {
    line-height: 2;
    display: inline-block;
    padding-left: 4%;
  }
  .main .form-box .formitem-checkbox li {
    text-align: left;
  }
  .main .form-box .formitem-checkbox li .checkbox-parts {
    padding-left: 0;
  }
  .main .form-box .formitem-checkbox li .checkbox-parts::before {
    left: -15px;
  }
  .main .form-box .formitem-checkbox li .checkbox-parts::after {
    left: -20px;
  }
  .main .form-box dl dd {
    margin: 2% 0 4% 0;
  }
  .border {
    border-top: 1px solid #000;
    padding-top: 5%;
  }
  /* アンケート・応募フォーム */
  .form-contents {
    text-align: left;
    border-top: 1px solid#dfdfdf;
    padding-top: 4%;
    margin-bottom: 4%;
  }
  .form-contents p,
  .form-contents .select-box dt {
    font-size: 18px;
    font-weight: bold;
    margin: 3% 0;
    line-height: 1.5;
  }
  .form-contents ul {
    font-size: 20px;
  }
  .form-contents img {
    /* width: 60%; */
    height: 300px;
    margin: 6% auto auto auto;
    display: block;
  }
  .form-contents .question-check,
  .form-contents .question-radio {
    line-height: 2;
  }
  .form-contents .form-item01 .question {
    display: flex;
    font-weight: bold;
  }
  .form-contents .form-item01 .question li {
    text-align: center;
    width: 20%;
    padding: 1% 0;
  }
  .form-contents .form-item01 .question li:nth-of-type(1) {
    background: #000;
    color: #fff;
    margin-right: 2%;
  }
  .form-contents .form-item01 .question li:nth-of-type(2) {
    color: #ff0000;
    border: 1px solid #ff0000;
  }
  .text-area {
    margin: 4% 0;
    width: 100%;
    border: 1px solid gray;
    padding: 0;
    height: 300px;
    font-size: 20px;
  }
  .form-box .form-item02 .form-agreement {
    border: 1px solid #000;
    padding: 3% 0;
    margin-bottom: 6%;
    line-height: 1.6;
  }
  .form-box .apply-contents {
    margin: 3% 0;
    border-top: 1px solid #dfdfdf;
    padding-top: 4%;
  }
  .form-box .apply-contents .required {
    color: #ff0000;
    border: 1px solid #ff0000;
    padding: 0 6%;
    margin-left: 5%;
  }
  .form-box .apply-contents .free-text{
    margin-left: 0;
  }
  .form-box .apply-contents .question-radio {
    display: flex;
    justify-content: flex-start;
  }
  .form-box .apply-contents .question-radio li {
    width: 30%;
    text-align: left;
  }
  .form-box
    .apply-contents
    .question-radio
    li
    label
    input[type="radio"]
    + span {
    padding-left: 15%;
    word-break: keep-all; /*230731追記*/
  }
  .form-box .zip-code {
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: space-between;
  }
  .form-box .zip-code span {
    margin: 0;
  }
  .form-box .zip-code input.form-area {
    width: 40%;
  }
  .form-box .phone-code {
    display: flex;
    align-items: center;
    width: 70%;
    justify-content: space-between;
  }
  .form-box .phone-code span {
    margin: 0;
  }
  .form-box .phone-code input.form-area {
    width: 25%;
  }
  .form-box dl dd p {
    margin-top: 2%;
    text-align: left;
  }
  .form-box dl dd span {
    font-size: 18px;
    margin-left: 2%;
    text-align: left;
  }
  .form-box .age dd {
    width: 40%;
    align-items: center;
    display: flex;
  }
  .form-box .select-box dd {
    width: 40%;
  }
  .form-box .select-box dd select,
  .form-box .birthday dd select {
    width: 100%;
    padding-right: 1em;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
  }
  .form-box .birthday dd ul {
    display: flex;
    justify-content: flex-start;
  }
  .form-box .birthday dd ul li {
    width: 20%;
    margin-right: 2%;
  }
  .form-box .select-box dd select::-ms-expand,
  .form-box .birthday dd select::-ms-expand {
    display: none;
  }
  .form-box .select-box dd,
  .form-box .birthday dd li {
    position: relative;
    border: 1px solid gray;
    background: #ffffff;
  }
  .form-box .birthday dd {
    text-align: left;
  }
  .form-box .select-box dd::before {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(-50%);
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
  }
  .form-box .select-box dd select,
  .form-box .birthday dd li select {
    padding: 15px 0 15px 5px;
    font-size: 18px;
  }
  .form-box .birthday dd li::before {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(-50%);
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
  }
  .form-box .personal-agreement {
    margin: 20% 0 5% 0;
  }
  .applypage {
    margin: 20% auto;
    display: block;
    text-align: left;
    width: 65%;
  }
  .form-box .confirm-contents dt {
    font-weight: normal !important;
  }
  .form-box .confirm-contents dd {
    font-size: 26px;
    font-weight: bold;
    text-align: left;
    margin-top: 3% !important;
  }
  .form-box .confirm-contents dd span {
    margin: 0 !important;
  }
  .receipt-description .form-box {
    border-top: 1px solid #000 !important;
    padding-top: 6% !important;
  }
  .receipt-description .form-box table {
    width: 100% !important;
  }
  .receipt-description .form-box tr {
    height: 40px !important;
    line-height: 40px !important;
  }
  .receipt-description .form-box tr,
  .receipt-description .form-box td {
    border: 1px solid #c4c4c4 !important;
  }
  .receipt-description .form-box p {
    line-height: 1.5 !important;
  }
  .receipt-description .form-box img {
    display: block !important;
    width: 50% !important;
    height: 100% !important;
    margin: 30px auto !important;
  }
  /* 利用規約 */
  .personal-information h2{
    text-align: left;
    font-weight: bold;
    margin: 20px 0;
  }
  .personal-information .form-box{
    text-align: justify;
    line-height: 1.7;
  }
  /* footer */
  .footer {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
  }
  .footer-inner {
    width: 960px;
    max-width: 100%;
    margin: 3% auto 0 auto;
  }
  .footer p {
    font-size: 26px;
    font-weight: bold;
    border-bottom: 1px solid #000;
    padding-bottom: 2%;
    margin-bottom: 2%;
  }
  /* .footer span {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
  } */
  .footer .footer-copyright {
    font-size: 16px;
    display: block;
    background: #000;
    color: #fff;
    margin: 3% -500% 0 -500%;
    padding: 2% 500%;
  }
  /*SNS*/
  .mailregist_sns {
	  width: 100%;
	  margin: 30px auto;
  }
  .mailregist_sns-inner h3{
	  font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .mailregist_sns-inner button{
    font-size: 20px;
    padding: 1% 0;
    margin: 2% auto;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mailregist_sns-inner button img{
    width: 10%;
    margin-right: 2%;
  }
  .mailregist_sns-inner button::after {
    content: none;
  }
  .linelogin{
    background: #06c755;
    color: #ffffff;
    border: none;
  }
  .googlelogin{
    background: #ffffff;
    color: #000000;
    border: 1px solid #bdbdbd;
  }
  .campaign-top_submit button{
    width: 50%;
    font-size: 20px;
    padding: 1% 0;
    margin: 1% auto;
    background: #06c755;
  }
  /*211125追加*/
  .game-box {
    width: 85%;
    margin: 0 auto;
    text-align: center;
    padding-top: 5%;
  }
  .game-box-inner {
    padding-top: 56.25%;
    position: relative;
  }
  .game-box-inner video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .winning-prize img {
	  width: 35%
  }
  /*211125追加*/

  .twitter-button {
    display: block;
    margin: 0 auto;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .main .button,
  .top-button {
    font-size: 5vw;
    font-weight: bold;
    color: #000 !important;
    background: #ffd700;
    padding: 3% 0;
    border: none;
    position: relative;
    margin: 5% auto 3% auto;
  }
  .main .button:disabled,
  .top-button:disabled{
    opacity: 0.6;
  }
  .main-contents .form-box .button,
  .top-button {
    width: 100%;
  }
  .main .login {
    margin: 0 auto 5% auto;
  }
  .main-box .button{
    width: 90%;
  }
  .backButton::before{
    content: "\f137";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(50%);
    margin: auto;
    left: 0;
  }
  .backButton::after{
    content: none;
  }
  button::after {
    content: "\f138";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    right: 0;
  }
  .sub-button {
    font-size: 4vw;
    font-weight: bold;
    background: #cccccc;
    padding: 2% 0;
    border: none;
    position: relative;
    margin: 5% auto 3% auto;
    width: 90%;
  }
  .sub-button::after {
    content: "\f138";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    right: 0;
  }
  input .disabled {
    color: #fff;
  }
  .brclear {
    display: none;
  }
  .sign-up {
    margin: 5% 0;
  }
  .sign-up a {
    color: #1a0dab !important;
  }
  /* チェックボックス */
  .checkbox {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
  .checkbox-parts {
    padding-left: 25px;
    position: relative;
    font-size: 3vw;
  }
  .checkbox-parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    width: 15px;
    height: 15px;
    border: 1px solid #999;
    background: #fff;
  }
  .checkbox:checked + .checkbox-parts::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 3px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 3px solid #000;
    border-right: 3px solid #000;
  }
  /* ラジオボタン */
  .question-radio li label input[type="radio"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
  .question-radio li label input[type="radio"] + span {
    display: inline-block;
    position: relative;
    padding-left: 8%;
    cursor: pointer;
  }
  .question-radio li label input[type="radio"] + span::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 1em;
    height: 1em;
    display: block;
  }
  .question-radio li label input[type="radio"]:checked + span::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: gray;
    border-radius: 50%;
    width: 1em;
    height: 1em;
    border: 1px solid #fff;
    display: block;
  }
  .question-box dd{
    width: 100% !important;
  }
  .question-box li span{
    font-size: 3.56vw;
  }
  /* メイン */
  .main {
    background-image: url(../img/img_sp_back.png);
    background-repeat: repeat;
    background-size: 100%;
  }
  .main main {
    background: url(../img/img_sp_logo.png) center top no-repeat;
    background-size: 100% !important;
    padding-top: 50%;
    padding-bottom: 7%;
  }
  .registration{
    padding-top: 4%;
  }
  .registration p,
  .error{
    font-size: 3.4vw;
    width: 83%;
    margin: 4% auto 0 auto;
    padding: 2% 1%;
    color: #ff0000;
    line-height: 1.5;
    border: 1px solid #ff0000;
  }
  .confirm-comments{
    font-size: 4vw;
    font-weight: bold;
    margin: 4% auto;
    padding: 2%;
    color: #ff0000;
    line-height: 1.5;
    border: 2px solid #ff0000;
  }
  .main .main-box {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    width: 85%;
    margin: 0 auto;
    padding-bottom: 5%;
  }
  .main .game-item {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 0 !important;
    width: 100% !important;
    margin: 0 auto;
    padding-bottom: 5%;
  }
  .main .text-box {
    font-size: 3.7vw;
    line-height: 1.5;
    width: 85%;
    margin: 3% auto;
  }
  .main .sub-comment {
    line-height: 1.5;
    margin: 8% auto;
    font-size: 4.1vw;
    width: 85%;
  }
  .main .sub-comment span{
    margin-top: 1em;
    display: block;
    line-height: 1.5;
    font-size: 4vw;
  }
  .main .order-comment {
    font-weight: bold;
    line-height: 2;
    margin: 8% auto;
    font-size: 4.3vw;
  }
  /* フォーム */
  .main .form-box dl dt {
    font-size: 4vw;
    text-align: justify;
    font-weight: bold;
    margin-bottom: 3%;
    line-height: 1.5;
  }
  .main .form-box {
    width: 85%;
    margin: auto;
  }
  .main .form-box input.form-area {
    font-size: 4vw;
    width: 97%;
    padding: 10px 0 10px 5px;
    text-align: left;
    border: 1px solid gray;
  }
  .main .form-box .file-upload {
    text-align: left;
    display: flex;
  }
  .file-upload input {
    display: block;
    box-shadow: none;
    border: none;
  }
  .file-upload .file-none {
    display: none;
  }
  .file-upload .text-filename {
    width: 100%;
    padding-left: 1%;
  }
  .btn_fileupload {
    background: transparent url(../img/file_icon.svg) no-repeat top left;
    cursor: pointer;
    padding: 10px 50px;
    display: inline-block;
  }
  .border-contents {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 9% 0 1% 0;
    margin-bottom: 8%;
  }
  .main .form-box .formitem-checkbox {
    line-height: 2.2;
    display: inline-block;
  }
  .main .form-box .formitem-checkbox li {
    text-align: left;
  }
  .main .form-box dl dd {
    margin: 2% 0 8% 0;
  }
  .border {
    border-top: 1px solid #000;
    padding-top: 5%;
  }
  /* アンケート・応募フォーム */
  .form-contents {
    text-align: left;
    border-top: 1px solid gray;
    padding-top: 10%;
    margin-bottom: 10%;
  }
  .form-contents p,
  .form-contents .select-box dt {
    font-size: 4vw;
    font-weight: bold;
    margin: 3% 0;
    line-height: 1.5;
  }
  .form-contents ul {
    font-size: 4vw;
  }
  .form-contents img {
    width: 60%;
    margin: 10% auto auto auto;
    display: block;
  }
  .form-contents .question-check,
  .form-contents .question-radio {
    line-height: 2;
  }
  .form-contents .question-check .checkbox-parts {
    font-size: 3.56vw;
  }
  .form-contents .form-item01 .question {
    display: flex;
    font-weight: bold;
  }
  .form-contents .form-item01 .question li {
    text-align: center;
    width: 25%;
    padding: 1% 0;
  }
  .form-contents .form-item01 .question li:nth-of-type(1) {
    background: #000;
    color: #fff;
    margin-right: 2%;
  }
  .form-contents .form-item01 .question li:nth-of-type(2) {
    color: #ff0000;
    border: 1px solid #ff0000;
  }
  .form-contents .form-item02 textarea {
    width: 100%;
    height: 100px;
    padding: 0;
  }
  .form-box .form-item02 .form-agreement {
    border: 1px solid #000;
    padding: 3% 0;
    margin-bottom: 6%;
    font-size: 3vw;
    line-height: 1.6;
  }
  .form-box .apply-contents {
    margin: 6% 0;
    border-top: 1px solid gray;
    padding-top: 6%;
  }
  .form-box .apply-contents textarea {
    margin: 4% 0;
    width: 100%;
    border: 1px solid gray;
    padding: 0;
    height: 150px;
  }
  .form-box .apply-contents .required {
    color: #ff0000;
    border: 1px solid #ff0000;
    padding: 0 6%;
    margin-left: 5%;
  }
  .form-box .apply-contents .free-text{
    margin-left: 0;
  }
  .form-box .apply-contents .question-radio {
    display: flex;
    justify-content: flex-start;
  }
  .form-box .apply-contents .question-radio li {
    width: 100%;
    text-align: left;
  }
  .form-box
    .apply-contents
    .question-radio
    li
    label
    input[type="radio"]
    + span {
    padding-left: 20%;
    display: block;
    word-break: keep-all;
  }
  .form-box .zip-code,
  .form-box .phone-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .form-box .zip-code span,
  .form-box .phone-code span {
    margin: 0;
  }
  .form-box .zip-code input.form-area {
    width: 40%;
  }
  .form-box .phone-code input.form-area {
    width: 25%;
  }
  .form-box dl dd p {
    font-size: 2.8vw;
    margin-top: 2%;
    text-align: justify;
  }
  .form-box dl dd span {
    font-size: 4vw;
    margin-left: 2%;
  }
  .form-box .age dd {
    width: 40%;
    align-items: center;
    display: flex;
  }
  .form-box .select-box dd {
    width: 70%;
  }
  .form-box .select-box dd select,
  .form-box .birthday dd select {
    width: 100%;
    padding-right: 1em;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
  }
  .form-box .birthday dd select {
    width: 32%;
  }
  .form-box .select-box dd select::-ms-expand,
  .form-box .birthday dd select::-ms-expand {
    display: none;
  }
  .form-box .birthday dd ul {
    display: flex;
    justify-content: space-between;
  }
  .form-box .birthday dd ul li {
    width: 32%;
  }
  .form-box .select-box dd,
  .form-box .birthday dd li {
    position: relative;
    border: 1px solid gray;
    background: #ffffff;
  }
  .form-box .birthday dd {
    text-align: left;
  }
  .form-box .select-box dd::before,
  .form-box .birthday dd li::before {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(-50%);
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
  }
  .form-box .select-box dd select,
  .form-box .birthday dd li select {
    width: 100%;
    padding: 10px 0 10px 5px;
    font-size: 90%;
    color: #000;
  }
  .form-box .personal-agreement {
    margin: 20% 0 10% 0;
  }
  .form-box .personal-agreement span {
    font-size: 3vw;
  }
  .applypage {
    margin: 20% 0;
    display: block;
  }
  .form-box .confirm-contents dt {
    font-weight: normal !important;
  }
  .form-box .confirm-contents dd {
    font-size: 4vw;
    font-weight: bold;
    text-align: left;
    margin-top: 3% !important;
  }
  .form-box .confirm-contents dd span {
    margin: 0 !important;
  }
  /* レシート説明ページ */
  .receipt-description .form-box {
    border-top: 1px solid #000 !important;
    padding-top: 8% !important;
  }
  .receipt-description .form-box table {
    width: 100% !important;
    border: 1px solid #c4c4c4 !important;
    border-bottom: none;
  }
  .receipt-description .form-box tr {
    height: 40px !important;
    line-height: 40px !important;
  }
  .receipt-description .form-box td {
    border-bottom: 1px solid #c4c4c4 !important;
  }
  .receipt-description .form-box th,
  .receipt-description .form-box td {
    display: block !important;
    width: 100% !important;
  }
  .receipt-description .form-box p {
    line-height: 1.5 !important;
  }
  .receipt-description .form-box img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    margin: 20px 0 !important;
  }
  /* 利用規約 */
  .personal-information h2{
    text-align: left;
    font-weight: bold;
    margin: 20px 0;
    line-height: 1.5;
  }
  .personal-information .form-box{
    text-align: justify;
    line-height: 1.5;
  }
  /* 各step共通 */
  .main .main-title {
    font-size: 7vw;
    font-weight: bold;
    position: relative;
    padding-top: 8%;
    line-height: 1.5;
  }
  .main .main-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    display: inline-block;
    width: 50px;
    height: 8px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #000;
    border-radius: 4px;
  }
  .main .error-title{
    color: #ff0000;
  }
  .main .error-title::after{
    background-color: #ff0000;
  }
  .main .main-contents {
    margin-top: 12%;
    padding-bottom: 6%;
  }
  /*211126追加*/
  .main .main-contents .result-button {
    display: block;
    font-size: 5vw;
    font-weight: bold;
    background: #ffd700;
    color:#000000;
    width: 90%;
    padding: 4% 0;
    border: none;
    position: relative;
    margin: 5% auto 0 auto;
  }
  .main .main-contents .result-button::after {
    content: "\f138";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color:#000000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    right: 0;
  }
  /* モーダルウィンドウ */
  .main .winning-modal .modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
    }
  .main .winning-modal .close-btn{
    display: block;
    font-size: 5vw;
    font-weight: bold;
    background: #ffd700;
    color:#000000;
    width: 90%;
    padding: 4% 0;
    border: none;
    position: relative;
    margin: 5% auto;
    cursor: pointer;
    }
  .btn-disabled{
    pointer-events: none;
    opacity: 0.5;
    }
  .main .winning-modal .modal-bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
    }
  .main .winning-modal .modal-box{
    background: #fff;
    padding: 3%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    }
    .main .winning-modal .modal-box .modal-box-inner{
    border: 2px solid #000000;
    }
  .main .winning-modal .modal-box .modal-box-title{
    font-size: 28px;
    font-weight: bold;
    position: relative;
    padding-top: 8%;
    padding-bottom: 3%;
    color: red;
  }
  .main .winning-modal .modal-box .modal-box-text{
    width: 80%;
    line-height: 1.5;
    margin: 0 auto;
    text-align: justify;
  }
  .main .winning-modal .modal-box .modal-box-text-check{
    margin: 0px auto 20px;
    text-align: center;
  }

  /*ここまで211129追加*/
  .main .main-caution {
    font-size: 4.7vw;
    font-weight: bold;
    width: 80%;
    margin: 0 auto;
    line-height: 1.5;
  }
  .main .main-comment {
    width: 85%;
    font-size: 4vw;
    margin: 5% auto;
    padding: 3% 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    line-height: 1.5;
    text-align: justify;
  }
  /* ログイン後 */
  .main .main-box .point-welcome {
    font-size: 4vw;
    border-bottom: 1px solid #000;
    margin: auto auto 5% auto;
    width: 85%;
    padding: 6% 0;
    font-weight: bold;
    line-height: 1.5;
  }
  .main .main-box .point-comment {
    line-height: 1.5;
    font-size: 4vw;
    font-weight: bold;
    width: 85%;
    margin: auto;
  }
  .main .main-box .point-comment p:nth-of-type(1) {
    color: #ff0000;
  }
  .main .main-box .point-now {
    width: 85%;
    margin: 4% auto;
    padding: 5% 0;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
    border: 1px solid gray;
  }
  .main .main-box .point-now p:nth-of-type(1) {
    font-size: 5vw;
  }
  .main .main-box .point-now p:nth-of-type(2) {
    margin: 3% 0;
    font-size: 5vw;
  }
  .main .main-box .point-now p:nth-of-type(3) {
    display: none;
  }
  .main .main-box .point-now .point-count {
    font-size: 17vw;
    margin: 3% 0;
    color: #ff0000;
    font-weight: bold;
  }
  .main .main-box .point-now .point-count span {
    font-size: 7vw;
    color: #ff0000;
    font-weight: bold;
  }
  .main .main-box .point-now .apply-count {
    background: beige;
    font-size: 4vw;
    font-weight: bold;
    width: 90%;
    margin: 0 auto;
    padding: 2% 0;
    border: 1px solid #000;
  }
  .main .main-box .point-now .apply-count span {
    margin-left: 3%;
  }
  .main .entry img {
    width: 85%;
    display: block;
    margin: 7% auto 0 auto;
  }
  .container {
    background: #fff9e8;
    padding: 5vh 0;
  }
  .container section {
    width: 90%;
    margin: 0 auto;
  }
  .section-title {
    font-size: 7.5vw;
    font-weight: bold;
    border-top: 3px double #000;
    border-bottom: 3px double #000;
    padding: 3% 0;
    margin: 10% 0;
  }
  .section-title_notice {
    text-align: center;
  }
  .section-title_noticetitle {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.45;
  }
  .section-title_noticetitle span{
    color: #ff0000;
  }
  .section-title_noticecopy {
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.35;
    text-align: justify;
  }
  .entry-link{
	width: 80%;
	background: #dedede;
	margin: 20px auto 0;
	padding: 4% 2%;
	font-size: 16px;
  position: relative;
  }
  .entry-link::after {
    content: "\f138";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%) rotate(90deg);
    margin: auto;
    right: 0;
  }
  /* 商品一覧 */
  .product-section p {
    text-align: justify;
    line-height: 1.5;
    width: 95%;
    margin: 0 auto;
  }
  .container .course-list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .container .course-list ul li {
    width: 47%;
    margin-bottom: 6%;
  }
  .container .course-list ul li img {
    width: 100%;
  }
  .container .course-list .apply-course {
    font-size: 5.5vw;
    font-weight: bold;
    background-color: #fff;
    padding: 3% 0;
    margin: 10% 0 3% 0;
  }
  .container .course-list .product-list .form-submit button {
    position: relative;
    font-size: 4vw;
    font-weight: bold;
    color:#000;
    background-color: #fff;
    border: 1.5px solid #000;
    border-radius: 3px;
    display: block;
    width: 90%;
    margin: 3% auto 0 auto;
    padding: 4% 0;
  }
  .container .course-list .product-list .disabled-button .form-submit button {
    position: relative;
    font-size: 4vw;
    font-weight: bold;
    background-color: #fff;
    border: 1.5px solid #000;
    border-radius: 3px;
    display: block;
    width: 90%;
    margin: 3% auto 0 auto;
    padding: 4% 0;
    opacity: 0.5;
  }
  .container .form-submit button {
    position: relative;
    font-size: 5vw;
    font-weight: bold;
    background: #ffd700;
    color:#000000;
    width: 90%;
    padding: 4% 0;
    border: none;
    position: relative;
    margin: 3% auto 0 auto;
  }
  .container .disabled-button button {
    position: relative;
    font-size: 4vw;
    font-weight: bold;
    background: #ffd700;
    color:#000000;
    width: 90%;
    padding: 4% 0;
    border: none;
    position: relative;
    margin: 3% auto 0 auto;
    opacity: 0.5;
  }
  /* footer */
  .footer {
    width: 100%;
    margin: 5% auto 0 auto;
    overflow: hidden;
    font-size: 3.4vw;
    font-weight: bold;
    line-height: 1.5;
  }
  .footer-inner {
    width: 90%;
    margin: 0 auto;
  }
  .footer p {
    font-size: 5vw;
    font-weight: bold;
    border-bottom: 1px solid #000;
    padding-bottom: 3%;
    margin-bottom: 3%;
  }
  /* .footer span {
    font-size: 3.4vw;
    font-weight: bold;
    line-height: 1.5;
  } */
  .footer .footer-copyright {
    font-size: 2.6vw;
    display: block;
    background: #000;
    color: #fff;
    margin: 5% -500% 0 -500%;
    padding: 3% 500%;
  }
  /*SNS*/
  .mailregist_sns {
	  width: 85%;
	  margin: 30px auto;
  }
  .mailregist_sns-inner h3{
	  font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .mailregist_sns-inner button{
    font-size: 20px;
    padding: 1% 0;
    margin: 2% auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mailregist_sns-inner button img{
    width: 10%;
    margin-right: 2%;
  }
  .mailregist_sns-inner button::after {
    content: none;
  }
  .linelogin{
    background: #06c755;
    color: #ffffff;
    border: none;
  }
  .googlelogin{
    background: #ffffff;
    color: #000000;
    border: 1px solid #bdbdbd;
  }
  .campaign-top_submit button{
    width: 50%;
    font-size: 20px;
    padding: 1% 0;
    margin: 2% auto;
    background: #06c755;
  }
  /*211125追加*/
  .game-box {
    width: 92%;
    margin: 0 auto;
    text-align: center;
    padding-top: 5%;
  }
  .game-box-inner {
    padding-top: 56.25%;
    position: relative;
  }
  .game-box-inner video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .winning-prize img {
	  width: 75%;
  }
  /*211125追加*/

  .twitter-button {
    display: block;
    margin: 0 auto;
  }
}
