@charset "UTF-8";
/*================================================
 *  CSSリセット
 ================================================*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600);

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    font-weight: normal;
}

body {
    line-height: 1;
}

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

ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

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

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

@font-face {
    font-family: "GenShinGothic-Heavy";
    src: url("../font/GenShinGothic-Heavy.woff") format("woff");
}

/*================================================
 *  変数
 ================================================*/
/*================================================
 *  一般・共通設定
 ================================================*/
html {
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    font-size: 24px;
    font-family: "GenShinGothic-Heavy", sans-serif, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.6;
    background-color: #fff;
    /* コピー禁止 */
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    -font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.inner {
    margin: 0 auto;
    max-width: 1200px;
}

#contents {
    margin: 0 auto;
}

header {
    margin: 0 auto;
}

a {
    color: #3f3f3f;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}

p {
    margin: 0 0 1em 0;
}

img {
    width: 100%;
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
    /* コピー禁止 */
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    /* 右クリック禁止 */
    pointer-events: none;
}

h1 {
    color: #ffffff;
    font-size: 2.4vw;
    line-height: 1.4;
    text-align: center;
    margin: 0 0;
}

/*================================================
 *  アニメーション
 ================================================*/
.fadeUp {
    -webkit-animation-name: fadeUpAnime;
    animation-name: fadeUpAnime;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeDown {
    -webkit-animation-name: fadeDownAnime;
    animation-name: fadeDownAnime;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeDownAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeLeft {
    -webkit-animation-name: fadeLeft;
    animation-name: fadeLeft;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

@-webkit-keyframes fadeLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeRight {
    -webkit-animation-name: fadeRight;
    animation-name: fadeRight;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

@-webkit-keyframes fadeRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.delay-time04 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.delay-time06 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

/*================================================
 *  ボタンデザイン
 ================================================*/
.btn {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    outline: none;
    border: none;
    background: none;
}

.btn:hover {
    top: 3px;
    cursor: pointer;
}

.btn a {
    display: inline-block;
}

.form-to-btn {
    width: 30%;
    height: 100%;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .form-to-btn {
        width: 60%;
    }
}

.form-to-btn a {
    display: inline-block;
}

.btn-send {
    width: 50%;
    margin: 1em auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 767px) {
    .btn-send {
        width: 80%;
    }
}

.btn-send-cre {
    width: 50%;
    margin: 0 auto;
}

/*================================================
 *  新フォーム
 ================================================*/
.Area_form {
    margin: 2em auto 0;
    color: #fff;
    padding: 0% 2% 2% 2%;
}

@media (max-width: 767px) {
    .Area_form {
        margin: 1em auto 0;
    }
}

.Area_form h1 {
    background-color: none;
    font-family: "GenShinGothic-Heavy";
    color: #4d4d4d;
}

@media (max-width: 767px) {
    .Area_form h1 {
        font-size: 24px;
    }
}

.Form {
    background-color: #fff;
    width: 100%;
    margin: 0% auto 0;
    border: 5px solid #05a49f;
    border-radius: 20px;
    padding: 1% 2% 1% 2%;
    overflow: hidden;
}

.Form-Item {
    margin: 0 auto;
    border-top: 1px dashed #22B573;
    padding-top: 14px;
    padding-bottom: 14px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #4d4d4d;
}

@media (max-width: 767px) {
    .Form-Item {
        font-size: 16px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 16px;
        padding-bottom: 16px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.Form-Item-long {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.Form-Item-Label {
    width: 30%;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 14px;
    color: #4d4d4d;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .Form-Item-Label {
        width: 100%;
        max-width: inherit;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 16px;
    }
}

.Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label.isMsg {
        margin-top: 0;
    }
}

.Form-Item-Label-Required {
    font-family: "sans-serif";
    border-radius: 6px;
    margin-right: 8px;
    padding: 2px 4px 2px 4px;
    width: 30%;
    display: inline-block;
    text-align: center;
    background: #22B573;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
}

@media (max-width: 767px) {
    .Form-Item-Label-Required {
        border-radius: 4px;
        padding-top: 4px;
        padding-bottom: 4px;
        width: 10%;
        font-size: 10px;
    }
}

.Form-Item-Label-Optional {
    font-family: "sans-serif";
    border-radius: 6px;
    margin-right: 8px;
    padding: 2px 4px 2px 4px;
    width: 30%;
    display: inline-block;
    text-align: center;
    background: #4d4d4d;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
}

@media (max-width: 767px) {
    .Form-Item-Label-Optional {
        border-radius: 4px;
        padding-top: 4px;
        padding-bottom: 4px;
        width: 10%;
        font-size: 10px;
    }
}

.Form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-right: 2%;
    padding-left: 0.5em;
    padding-right: 0.5em;
    height: 1.6em;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 70%;
    background: #eaedf2;
    font-size: 1em;
}

@media (max-width: 767px) {
    .Form-Item-Input {
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
        height: 40px;
        -webkit-box-flex: inherit;
        -webkit-flex: inherit;
        -ms-flex: inherit;
        flex: inherit;
        font-size: 16px;
    }
}

.Form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 216px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;
}

.agecheckbox {
    width: 70%;
}

@media (max-width: 767px) {
    .agecheckbox {
        width: 100%;
    }
}

.agecheckbox .small {
    font-size: 0.6em;
}

.agecheckbox a {
    text-decoration: underline;
}

.agecheckbox a:hover {
    opacity: 0.7;
}

.agecheckbox .check_flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.agecheckbox .check_flex label {
    padding: 0 2% 0 2%;
    margin: 0 !important;
}

.agecheckbox .check_flex label:hover {
    opacity: 0.7;
    cursor: pointer;
}

.chui {
    color: #4d4d4d;
    text-align: center;
    font-size: 0.7em;
}

@media (max-width: 767px) {
    .chui {
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) {
    .Form-Item-Textarea {
        margin-top: 18px;
        margin-left: 0;
        height: 200px;
        -webkit-box-flex: inherit;
        -webkit-flex: inherit;
        -ms-flex: inherit;
        flex: inherit;
        font-size: 15px;
    }
}

.Form-Btn {
    margin: 2vw auto;
    border-radius: 2.2vw;
    padding: 1% 0 1% 0;
    width: 30%;
    display: block;
    letter-spacing: 0.05em;
    background: #22B573;
    color: #fff;
    font-weight: bold;
    font-size: 2.4vw;
    outline: none;
    border: none;
}

.Form-Btn:hover {
    opacity: 0.7;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .Form-Btn {
        margin-top: 24px;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 160px;
        font-size: 16px;
    }
}

/*================================================
 *  フッター
 ================================================*/
footer {
    background: url(../images/pt02_2.png) repeat;
    background-color: #05a49f;
    clear: both;
    padding: 2% 0 0.8%;
    margin: 0 0 0;
    font-size: 1.2vw;
    color: #ffffff;
    text-align: center;
}

@media (max-width: 767px) {
    footer {
        font-size: 12px;
        padding: 40px 0 3px 0;
    }
}

footer a {
    color: #ffffff;
}

.copy {
    font-size: 12px;
    letter-spacing: 0.08em;
}

@media (max-width: 767px) {
    .copy {
        font-size: 8px;
    }
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.top_up {
    width: 5%;
    position: fixed;
    bottom: 0%;
    right: 2%;
    z-index: 999;
}

@media (min-width: 768px) {
    .top_up {
        width: 3%;
        bottom: 1%;
    }
}

@media (orientation: landscape) and (max-width: 767px) {
    .top_up {
        width: 10%;
        bottom: 2%;
    }
}

.top_up a {
    display: block;
    text-decoration: none;
}

.top_up :hover {
    opacity: 0.4;
}

.form_to {
    width: 15%;
    position: fixed;
    bottom: 0%;
    z-index: 999;
}

.form_to img {
    width: 100%;
}

@media (max-width: 767px) {
    .form_to {
        display: none;
    }
}

@media (orientation: landscape) and (max-width: 767px) {
    .form_to {
        display: block;
    }
}

.form_to a {
    display: block;
    text-decoration: none;
}

@media (max-width: 767px) {
    .form_to a {
        display: none;
    }
}

@media (orientation: landscape) and (max-width: 767px) {
    .form_to a {
        display: block;
    }
}

.form_to a :hover {
    opacity: 0.4;
}

.form_to_sp {
    width: 60%;
    position: fixed;
    bottom: 0%;
    z-index: 999;
}

@media (orientation: landscape) and (max-width: 767px) {
    .form_to_sp {
        display: none;
    }
}

@media (min-width: 768px) {
    .form_to_sp {
        display: none;
    }
}

.form_to_sp img {
    width: 100%;
}

.form_to_sp a {
    display: block;
    text-decoration: none;
}

@media (orientation: landscape) and (max-width: 767px) {
    .form_to_sp a {
        display: none;
    }
}

@media (min-width: 768px) {
    .form_to_sp a {
        display: none;
    }
}

.form_to_sp :hover {
    opacity: 0.4;
}

/*================================================
 *  inner
 ================================================*/
.over {
    overflow: hidden;
}

.inner {
    margin: 0 auto;
    max-width: 1100px;
    height: 100%;
    position: relative;
}

@media (min-width: 1921px) {
    .inner {
        max-width: 3200px;
    }
}

@media (orientation: landscape) and (max-width: 767px) {
    .inner {
        max-width: 600px;
    }
}

.inner1100 {
    margin: 0 auto;
    max-width: 1000px;
    height: 100%;
    position: relative;
}

@media (min-width: 1921px) {
    .inner1100 {
        max-width: 3200px;
    }
}

@media (orientation: landscape) and (max-width: 767px) {
    .inner1100 {
        max-width: 600px;
    }
}

.inner1400 {
    margin: 0 auto;
    max-width: 1400px;
    height: 100%;
    position: relative;
}

@media (min-width: 1921px) {
    .inner1400 {
        max-width: 3200px;
    }
}

@media (orientation: landscape) and (max-width: 767px) {
    .inner1400 {
        max-width: 600px;
    }
}

/*================================================
 *  TOPビュー
 ================================================*/
.Area_main {
    margin: 0 auto;
    position: relative;
}

@media (max-width: 767px) {
    .Area_main {
        background-attachment: scroll;
    }
}

.Area_main img {
    width: 100%;
}

@media (max-width: 767px) {
    .Area_main img {
        width: 100%;
    }
}

.Area_main .top1 {
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}

.Area_main .top2 {
    width: 100%;
    margin: 0 auto;
}

/*================================================
 *  確認画面デザイン
 ================================================*/
.Area_confirmation {
    text-align: center;
    color: #4d4d4d;
    background: url(../images/pt02_2.png) repeat;
    background-color: #E5547D;
    z-index: 1;
    padding: 2% 0 5% 0;
    font-size: 1.6vw;
}

@media (max-width: 767px) {
    .Area_confirmation {
        font-size: 16px;
    }
}

.Area_confirmation .inner_confirmation {
    margin: 0 auto;
    width: 65%;
    background-color: #fff;
}

@media (max-width: 767px) {
    .Area_confirmation .inner_confirmation {
        width: 95%;
    }
}

.Area_confirmation .inner_confirmation .confirmation_box {
    padding: 3% 15% 5% 15%;
    color: #4d4d4d;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 767px) {
    .Area_confirmation .inner_confirmation .confirmation_box {
        padding: 0 5% 1% 5%;
    }
}

.Area_confirmation .inner_confirmation .confirmation_box h1 {
    font-size: 1.4em;
    margin: 0 auto;
    background-color: #22B573;
    color: #fff;
    padding: 1% 0 1% 0;
}

@media (max-width: 767px) {
    .Area_confirmation .inner_confirmation .confirmation_box h1 {
        font-size: 22px;
    }
}

.Area_confirmation .inner_confirmation .confirmation_box h2 {
    text-align: center;
    background-color: #E5547D;
    color: #FFF;
    font-size: 1em;
}

.Area_confirmation .inner_confirmation .confirmation_box .field_conf {
    margin-top: 1%;
    color: #22B573;
    border-bottom: dashed 0.2vw #22B573;
}

.Area_confirmation .inner_confirmation .confirmation_box .disp-value {
    color: #534741;
    border-bottom: dashed 0.3vw #fff;
    text-align: left;
    color: #534741;
    line-height: 1.8em;
}

.Area_confirmation .inner_confirmation .confirmation_box p {
    margin: 0 auto;
}

label {
    display: block;
    margin: 0 auto 0% !important;
    text-align: left !important;
    font-family: "GenShinGothic-Heavy";
    padding: 0 0 0 10%;
}

.kiyaku {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #3f3f3f;
    font-size: 0.6em;
    text-align: left;
    height: 10vw;
    overflow-y: scroll;
    background-color: #ffffff;
    padding: 10px;
}

/* 承諾チェック */
.kiyaku-checkbox {
    text-align: left;
    margin: 2% 0 0 0;
    width: 100%;
    color: #4d4d4d;
    border-bottom: dashed 0.3vw #fff;
}

.kiyaku-checkbox label {
    padding: 0 0 0 5%;
}

.err-msg,
.err-msg2 {
    display: none;
    color: #fff;
    background-color: #22B573;
    border-radius: 1vw;
    padding: 2%;
    margin: 2% 2% 5% 2%;
}

/* ボタン並び */
.btn_flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn_herf {
    margin: 2%;
    padding: 1% 0 1% 0;
    font-size: 2.4vw;
}

@media (max-width: 767px) {
    .btn_herf {
        font-size: 22px;
    }
}

/* 修正ボタン */
.syusei {
    color: #fff;
    background-color: #f6c315;
}

.syusei:hover {
    color: #ffffff;
}

/*================================================
 *  サンクスページデザイン
 ================================================*/
.Area_complete {
    text-align: center;
    color: #4d4d4d;
    background: url(../images/pt02_2.png) repeat;
    background-color: #E5547D;
    z-index: 1;
    padding: 2% 0 5% 0;
    height: 93%;
}

@media (max-width: 767px) {
    .Area_complete {
        background-size: 20%;
    }
}

.Area_complete .inner_complete {
    display: inline-block;
    margin: 0 auto;
    width: 65%;
    background-color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

@media (max-width: 767px) {
    .Area_complete .inner_complete {
        width: 95%;
    }
}

.Area_complete .inner_complete h1 {
    background: #22B573;
    color: #fff;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .Area_complete .inner_complete h1 {
        font-size: 20px;
    }
}

.Area_complete .inner_complete h2 {
    background: #f6c315;
    width: 70%;
    color: #4d4d4d;
    margin: 20px auto;
    font-size: 1.4em;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .Area_complete .inner_complete h2 {
        width: 85%;
        font-size: 20px;
        padding: 0 0 0 0;
    }
}

.Area_complete .inner_complete p {
    display: inline-block;
    text-align: left;
    padding: 10px 0 0 0;
    width: 70%;
}

@media (max-width: 767px) {
    .Area_complete .inner_complete p {
        width: 85%;
        font-size: 16px;
    }
}

/* 振込先 */
.box_bank {
    background-color: #E5547D;
    color: #ffffff;
    width: 50%;
    text-align: left;
    margin: 0 auto;
    padding: 1% 0 1% 5%;
    border-radius: 2vw;
}

@media (max-width: 767px) {
    .box_bank {
        width: 75%;
        font-size: 16px;
    }
}

.card {
    width: 40%;
}

@media (max-width: 767px) {
    .card {
        font-size: 22px;
    }
}

/*================================================
 *  ヘッダー
 ================================================*/
.header {
    margin: 0 auto;
    background: url(../images/top_bk.jpg) no-repeat;
    background-size: cover;
    overflow: hidden;
    background-position: center 40%;
    padding: 1% 0 1% 0;
}

.header img {
    width: 100%;
}

.header .hd_s {
    width: 50%;
    margin: 0 auto 0%;
}

/*================================================
 *  特商デザイン
 ================================================*/
.tokusyo_bk {
    font-size: 1.4vw;
    color: #4d4d4d;
    background-color: #E5547D;
    padding: 2% 0 2% 0;
    z-index: 1;
}

@media (max-width: 767px) {
    .tokusyo_bk {
        font-size: 16px;
        background-size: 20%;
    }
}

.tokusyo_inner {
    width: 60%;
    margin: 0 auto;
    padding: 0px 0 0px;
    background-color: #ffffff;
}

@media (max-width: 767px) {
    .tokusyo_inner {
        width: 95%;
    }
}

.tokusyo_inner h1 {
    background: #22B573;
    color: #fff;
    font-size: 2.2vw;
    padding: 0.5% 0 0.5% 0;
}

@media (max-width: 767px) {
    .tokusyo_inner h1 {
        font-size: 20px;
    }
}

.tokusyo_inner dt {
    margin-bottom: 0.5em;
    color: #E5547D;
    border-bottom: 0.1vw dashed #E5547D;
    padding: 0 0 0 2%;
    text-align: left;
    border-top: 0.2vw solid #22B573;
    margin: 3% 0 0 0;
}

.tokusyo_inner dd {
    margin: 1em 1em 2em;
    font-size: 90%;
    text-align: left;
}

.tokusyo_inner p.short {
    margin: 0 1em 1em;
}

/*================================================
 *  アニメーション
 ================================================*/
/*========= particle js を描画するエリア設定 ===============*/
#particles-js3 {
    z-index: -1;
    /*描画を一番下に*/
    width: 100%;
}

#wrapper3 {
    position: relative;
    /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
    z-index: 1;
    /*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
    width: 100%;
    height: 100%;
}

/*================================================
 *  背景方眼紙
 ================================================*/
.bg_pattern {
    z-index: -1;
}

.Paper_v2 {
    background: url(../images/pt02.png) repeat;
    background-size: 10%;
}

@media (max-width: 767px) {
    .Paper_v2 {
        background-size: 20%;
    }
}

/*================================================
 *  アフィリエイター用LPデザイン
 ================================================*/
.Area_affi {
    margin: 0 auto 0;
    text-align: center;
}

.Area_affi img {
    width: 10%;
}

.line {
    height: auto;
}

/* Lineボタン */
.btn-flat_line2 {
    font-family: "GenShinGothic-Heavy";
    width: 60%;
    margin: 5% auto 10%;
    font-size: 4vw;
    position: relative;
    padding: 0.5em 0 0.3em 0;
    text-decoration: none;
    color: #ffffff;
    background: #00b900;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: none;
    outline: none;
    border-radius: 3.5vw;
    cursor: pointer;
}

@media (max-width: 767px) {
    .btn-flat_line2 {
        width: 90%;
        font-size: 5.5vw;
        padding: 2vw 0 1vw 0;
        margin: 5% auto 5%;
    }
}

.btn-flat_line2:hover {
    background: #fb6103;
    color: #534741;
}

.btn-flat_line2:active {
    -webkit-transform: translate(6px, 6px);
    transform: translate(0px, 6px);
}

.btn-flat_line2 p {
    font-size: 2vw;
    padding: 20px 0 0 0;
}

@media (max-width: 767px) {
    .btn-flat_line2 p {
        font-size: 3.5vw;
        padding: 4vw 0 0 0;
    }
}

.orange {
    background-color: #ff7f00;
}

/*# sourceMappingURL=style.css.map */