@charset "utf-8";

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * html, body
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

*, *:after, *:before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/*
html {visibility: hidden;}

html.wf-active {visibility: visible;}
*/

/* リンクなどの要素をタップした時の色を消す */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 行頭禁則文字 */
* {
	word-break: break-word;
	word-wrap: break-word;
}

body {
	position: relative;
	z-index: 0;
	width: 100%;
    height: auto;
    min-height: calc(var(--vh, 1vh) * 100);
	margin: 0;
	padding: 0;
    background-image: url("../img/bg-gradation-v7.svg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 180%;
	line-height: 1.5;
	font-family: "dnp-shuei-gothic-gin-std", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	color: #000000;
}

@media all and (max-width: 500px) {
    body {
        font-size: 13px;
    }
}

body.home {
    height: calc(var(--vh, 1vh) * 100);
}

body.login {
    height: auto !important;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * display
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.disp {
	display: block !important;
}

.disp-none {
	display: none !important;
}

.disp-table {
	display: table !important;
}

.disp-inline {
	display: inline !important;
}

.disp-inline-block {
	display: inline-block !important;
}

.disp-flex {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

.sp-disp-none {
    display: none;
}

.sp-disp {
	display: block
}

.sp-inline-none {
    display: none;
}

.sp-inline {
    display: inline;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * visibility
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.visibility-hidden {
	visibility: hidden !important;
}

.visibility-visibile {
	visibility: visible !important;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * input
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

input[type=text],
input[type=tel],
input[type=email],
input[type=password] {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 10px;
	outline: none;
	border: none;
    border-radius: 6px;
	box-shadow: 0 0 0 1px #903dfa;
	background: #ffffff;
	transition: all 0.3s;
}

input.short {
	width: 150px;
}

input.med {
	width: 300px;
}

.input.input-half-left {
    width: calc(50% - 5px);
    margin-right: 10px;
}

.input.input-half-right {
    width: calc(50% - 5px);
}

input.keyword {
    width: 32%;
}

@media all and (max-width: 500px) {
    input.keyword {
        width: 100%;
        margin-bottom: 10px;
    }
}

label {
	display: inline-block;
	vertical-align: 2px;
	padding-left: 7px;
	cursor: pointer;
}

textarea {
	width: 100%;
	margin: 0;
	padding: 10px;
	resize: none;
	outline: none;
	border: none;
    border-radius: 6px;
  	box-shadow: 0 0 0 1px #cccccc;
	background: #ffffff;
	transition: all 0.3s;
}
 
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus {
	box-shadow: 0 0 0 1px #903dfa, inset 0px 0px 5px #999999;
	background: #ffffff;
}

:placeholder-shown { color: #999999; }

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder { color: #999999; }

/* Firefox 18- */
:-moz-placeholder { color: #999999; }

/* Firefox 19+ */
::-moz-placeholder { color: #999999; }

/* IE 10+ */
:-ms-input-placeholder { color: #999999; }

input[type="submit"] {
	display: block;
    width: 50%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 60px !important;
    outline: none;
    border: none;
    background: #444a53;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
}

input[type="submit"]:disabled {
    background: #cfd3d8;
    box-shadow: none;
    color: #999999;
}

input.ques-submit {
	display: block;
    width: 50%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 60px !important;
    outline: none;
    border: none;
    background: #444a53;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    -webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

input.ques-submit:hover {
    opacity: 0.7;
}

@media all and (max-width: 500px) {
    input[type="submit"] {
        padding: 10px;
        font-size: 12px;
    }
    
    input.ques-submit {
        padding: 10px;
        font-size: 12px;
    }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * loader
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.loader {
    position: absolute;
    z-index: 2;
	width: 100%;
	height: 100%;
    background: #ffffff;
}

.circle {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}

.circle img {
    width: 90px;
    height: 90px;
}

.circle-border {
  width: 50px;
  height: 50px;
  padding: 0.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0.1) 33%, rgba(0,0,0,1) 100%);
  animation: spin .5s linear 0s infinite;
}

.circle-core {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 50%;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to{
    transform: rotate(359deg);
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * article,section,div
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

article {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
}

section {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
}

section.page {
    padding-bottom: 100px;
}

.wrapper {
    position:  relative;
    display : -webkit-box;     /* old Android */
    display : -webkit-flex;    /* Safari etc. */
    display : -ms-flexbox;     /* IE10        */
    display : flex;
    flex-flow: column;
    align-items: center;
	width: 100%;
    height: 100%;
    padding: 50px 0 100px;
}

@media all and (max-width: 500px) {
    .wrapper {
        padding: 50px 0 150px;
    }
}

.intro-area {
    position:  relative;
    width: 100%;
    padding: 0 15px 50px;
}

@media all and (max-height: 600px) {
    .intro-area {
        position:  relative;
        width: 100%;
        padding: 0 15px 30px;
    }
}

.login-area {
    position:  relative;
    width: 100%;
}

.chat-area {
    position:  relative;
    width: 100%;
    height: 70vh;
}

.footer-menu {
    margin: 20px auto 0;
    text-align: center;
}

.footer-menu li {
    list-style: none;
    display: inline-block;
    margin: 0 20px 0 0;
}

.footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-style:  normal;
    font-weight: 400;
    font-size: 11px;
    opacity: 0;
}

@media all and (max-height: 600px) {
    .footer {
        position: relative;
        left: auto;
        bottom: auto;
    }
}

.footer.login {
    opacity: 1;
}

.footer.page {
    opacity: 1;
}

.side-bn {
    position: absolute;
    bottom: 30px;
    right: -180px;
    z-index: 100;
    display: table;
    width: 300px;
    height: 100px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    background: #ffffff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    cursor: pointer;
}

.side-bn a {
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
    z-index: 1;
}

.side-bn-left {
    position: relative;
    display: table-cell;
    width: 120px;
    padding-left: 10px;
    vertical-align: middle;border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    text-align: center;
    overflow: hidden;
}

.side-bn-right {
    position: relative;
    display: table-cell;
    width: 180px;
    padding: 15px;
    vertical-align: middle;
    font-size: 12px;
}

.side-bn-right:before {
    content: "";
    position: absolute;
    top: 10%;
    left: 0;
    width: 1px;
    height: 80%;
    background: #dddddd;
}

.side-bn-left img {
    width: 70px;
}

@media all and (max-width: 500px) {
    .side-bn {
        position: absolute;
        bottom: 30px;
        right: -180px;
        z-index: 100;
        display: table;
        width: 260px;
        height: 80px;
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
        background: #ffffff;
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
        cursor: pointer;
    }

    .side-bn a {
        position: absolute;
        top: 0;
        left: 0;
        height:100%;
        width: 100%;
        z-index: 1;
    }

    .side-bn-left {
        position: relative;
        display: table-cell;
        width: 80px;
        padding-left: 10px;
        vertical-align: middle;border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
        text-align: center;
        overflow: hidden;
    }

    .side-bn-right {
        position: relative;
        display: table-cell;
        width: 180px;
        padding: 15px;
        vertical-align: middle;
        font-size: 12px;
    }

    .side-bn-right:before {
        content: "";
        position: absolute;
        top: 10%;
        left: 0;
        width: 1px;
        height: 80%;
        background: #dddddd;
    }

    .side-bn-left img {
        width: 50px;
    }
}

.intro-area-inner {
    opacity: 0;
}

.intro-area-inner.login {
    opacity: 1;
}

.intro-copy {
    width: 35%;
    margin: 0 auto 30px;
    text-align: center;
}

.intro-logo {
    width: 40%;
    margin: 0 auto 50px;
    text-align: center; 
}

.intro-logo img {
    width: 100%;
}

@media all and (max-width: 500px) {
    .intro-copy {
        width: 65%;
        margin: 0 auto 30px;
        text-align: center;
    }
 
     .intro-logo {
        width: 60%;
        margin: 0 auto 50px;
        text-align: center; 
    }

    .intro-logo img {
        width: 100%;
    }
}

@media all and (max-height: 600px) {
    .intro-copy {
        width: 65%;
        margin: 0 auto 10px;
        text-align: center;
    }
 
     .intro-logo {
        width: 60%;
        margin: 0 auto 30px;
        text-align: center; 
    }
}

.intro-desc {
    line-height: 3;
    text-align: center;
}

.intro-desc.en {
    margin-bottom: 10px;
    line-height: 1;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-style:  normal;
    font-weight: 400;
    font-size: 18px;
}

@media all and (max-width: 500px) {
    .intro-desc {
        line-height: 1.8;
    }

    .intro-desc.en {
        font-size: 14px;
    }
}

.intro-credit {
    width: 256px;
    margin: 0 auto;
    text-align: center;
}

.intro-credit img {
    width: 100%;
}

@media all and (max-width: 500px) {
    .intro-credit {
        width: 197px;
    }
}

.intro-sns {
	position: relative;
    display : -webkit-box;     /* old Android */
    display : -webkit-flex;    /* Safari etc. */
    display : -ms-flexbox;     /* IE10        */
    display : flex;
    justify-content: center;
    align-items: center;
    height: 18px;
    margin: 0 auto;
    text-align: center;
}

.intro-sns span {
	position: relative;
    height: 18px;
	margin: 0;
    padding-top: 4.5px;
    line-height: 18px;
}

.intro-sns span img {
    display:  inline-block;
	width: 25px;
    height: 9px;
}

.intro-sns a {
	position: relative;
    height: 18px;
	margin: 0 10px 0;
}

.intro-sns a img {
	width: 18px;
	height: 18px;
}

@media all and (max-width: 500px) {
    .intro-sns a {
        margin: 0 15px 0;
    }
}

.btn-login {
    margin-bottom: 30px;
    text-align: center;
    opacity: 0;
}

@media all and (max-width: 500px) {
    .btn-login {
        margin-bottom: 20px;
    }
}

.login-link {
    position: relative;
    display: inline-block;
    width: 280px;
    padding: 20px 0;
    border-radius: 50px;
    background: rgba(144,61,250,0.8);
    box-shadow: 0 0 10px rgba(144,61,250,0.2);
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    -webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

@media all and (max-width: 500px) {
    .login-link {
        width: 200px;
        padding: 10px 0;
        font-size: 14px;
    }
}

.login-link:hover {
    background: rgba(144,61,250,0.9);
    color: #ffffff;
}

.login-link:before {
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -10px;
    line-height: 1;
    font-family: 'icomoon';
    font-size: 20px;
}

.login-link.sign-in:before {
    content: "\e990";
}

.login-link.sign-up:before {
    left: 23px;
    content: "\e95b";
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * loginページ
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/*-------------------------  login-logo------------------------- */
.login-logo {
	width: 40%;
    margin: 0 auto;
    padding: 40px;
    text-align: center; 
}

@media all and (max-width: 500px) {
    .login-logo {
        width: 45%;
        padding: 20px;
    }
}

.login-logo img {
	width: 100%;
}

/* resister
-------------------------------------------------------------*/

.resister-wrap {
    position: relative;
	width: 70%;
	margin: 0 auto;
	padding: 20px;
	border-radius: 30px;
    background: #ffffff;
    background: rgba(255,255,255,0.5);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

@media all and (max-width: 500px) {
    .resister-wrap {
        width: 90%;
        padding: 15px;
    }
}

.resister-title {
    margin-bottom: 20px;
    text-align: center;
}

.resister-title span {
    letter-spacing: 1px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 400;
    font-size: 22px;
}

.g-recaptcha-wrap {
	display: flex;
    justify-content: center;
	align-items: center;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

@media all and (max-width: 340px) {
    .g-recaptcha-wrap {
        width: 240px;
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        transform-Origin: 50% 50%;
        -webkit-transform-Origin: 50% 50%;
    }
}

/* alert-box
-------------------------------------------------------------*/

.alert-box {
	height: auto;
    padding: 20px 40px 20px 10px;
    text-align: left;
    line-height: 1.2;
    font-size: 12px;
}

.alert-box-delete {
	top: 50%;
    right: 0;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * chat部分
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.message-wrpper {
    position: relative;
    width: 80%;
    height: 100%;
    margin: 0 auto 0;
    padding: 30px;
    border-radius: 30px;
    /*border: 1px solid #000000;*/
    background: #ffffff;
    background: rgba(255,255,255,0.5);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.message-wrpper-inner {
    width: 100%;
    height: 100%;
    padding: 10px 10px 20px;
    overflow-y: scroll;
}

@media all and (max-width: 500px) {
    .message-wrpper {
        width: 90%;
        padding: 20px 10px;
    }
    
    .message-wrpper-inner {
        width: 100%;
        height: 100%;
        padding: 10px;
        overflow-y: scroll;
    }
}

.keyword-input-wrap {
    display : -webkit-box;     /* old Android */
    display : -webkit-flex;    /* Safari etc. */
    display : -ms-flexbox;     /* IE10        */
    display : flex;
    align-items: flex-start;
    justify-content: space-between;
	width: 100%;
    margin-bottom: 10px;
}

@media all and (max-width: 500px) {
    .keyword-input-wrap {
        display : -webkit-box;     /* old Android */
        display : -webkit-flex;    /* Safari etc. */
        display : -ms-flexbox;     /* IE10        */
        display : flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-flow: column;
        width: 100%;
        margin-bottom: 10px;
    }
}

#chat-history {
	margin-top:30px;
}

#output1 {
	margin-top:30px;
}

.loading {
    display: none;
    width: 100%;
    margin: 30px auto 0;
    text-align: center;
}

.loading img {
    width: 50px;
	vertical-align:middle;
}

@media all and (max-width: 500px) {
    .loading {
        font-size: 11px;
    }
    .loading img {
        width: 30px;
        vertical-align:middle;
    }
}

.btn-wrap {
    text-align: center;
}

.btn-wrap--holizonal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn {
    display: block;
    width: auto;
    margin: 0 auto;
    padding: 15px 50px;
    border-radius: 60px;
    outline: none;
    background: #444a53;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
}

@media all and (max-width: 500px) {
    .btn {
        padding: 10px 50px;
        font-size: 12px;
    }
}

.question-card {
    position: relative;
}

.question-wrap {
    display: none;
}

.question-wrap--block {
    display: block;
    width: auto;
    margin: 30px auto 0;
    padding: 15px;
    border: 1px solid #903dfa;
    /*-webkit-border-image: -webkit-linear-gradient(left, #ff00ff 0%, #00ffff 100%);
    -o-border-image: -o-linear-gradient(left, #ff00ff 0%, #00ffff 100%);
    border-image: linear-gradient(to right, #ff00ff 0%, #00ffff 100%);
    border-image-slice: 1;*/
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(144,61,250,0.2);
}

.question-wrap-title {
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
    font-size: 16px;
    font-weight: bold;
    color: #903dfa;
}

.question-wrap-title.large {
    display: inline-block;
    margin: 0 auto 20px;
    padding-left: 0;
    text-align: center;
    font-size: 20px;
}

.question-wrap-title:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 15px;
    height: 13px;
    background-image: url( "../img/icon-triangle-purple.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.question-wrap-title.large:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 22px;
    height: 19px;
    margin-left: -25px;
    background-image: url( "../img/icon-triangle-purple.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media all and (max-width: 500px) {
    .question-wrap-title {
        font-size: 13px;
    }
    
    .question-wrap-title:before {
        top: 3px;
    }
    
    .question-wrap-title.large {
        font-size: 16px;
    }

    .question-wrap-title.large:before {
        width: 16px;
        height: 14px;
        margin-left: -20px
    }
}

.thumbnail-radio {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: -7px;
    margin-left: -7px;
    text-align: center;
}

@media all and (max-width: 500px) {
    .thumbnail-radio {
        pflex-flow: column;
    }
}

.thumbnail-radio input {
    display: none;
    cursor: pointer;
}

.thumbnail-radio input:checked + label {
    -webkit-box-shadow: 0 0 0 2px #903dfa;
    box-shadow: 0 0 0 2px #903dfa;
    text-align: center;
}

.thumbnail-radio input:checked + label span:after {
    opacity: 1;
}

.thumbnail-radio__item {
    position: relative;
    width: calc(100% / 3 - 14px);
    margin: 7px;
    cursor: pointer;
    display: block;
    color: #000;
    -webkit-box-shadow: 0 0 0 2px #DCDDDE;
    box-shadow: 0 0 0 2px #DCDDDE;
    border-radius: 3px;
    padding: 12px 15px;
    text-decoration: none;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

@media all and (max-width: 500px) {
    .thumbnail-radio__item {
        width: 95%;
        margin: 20px auto;
        font-size: 12px;
    }
}

.thumbnail-radio__item span {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    line-height: 1;
    font-size: 14px;
    font-weight: bold;
    color: #9b5af4;
}

.thumbnail-radio__item img {
    display: block;
    width: 40%;
    margin: 0 auto 10px;
}

@media all and (max-width: 500px) {
    .thumbnail-radio__item img {
        width: 25%;
        margin: -40px auto 10px;
    }
}

.thumbnail-radio__item span:before,
.thumbnail-radio__item span:after {
    display: inline-block;
    position: absolute;
    top: 8px;
    left: 0;
    content: "";
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.thumbnail-radio__item span:before {
    width: 20px;
    height: 20px;
    border: 2px solid #DCDDDE;
}

.thumbnail-radio__item span:after {
    width: 10px;
    height: 10px;
    left: 5px;
    background: #903dfa;
    opacity: 0;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

.thumbnail-radio__item:hover {
    -webkit-box-shadow: 0 0 0 2px #903dfa;
    box-shadow: 0 0 0 2px #903dfa;
}

.normal-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -7px;
    margin-left: -7px;
}

.normal-radio input {
    display: none;
    cursor: pointer;
}

.normal-radio input:checked + label {
    -webkit-box-shadow: 0 0 0 2px #903dfa;
    box-shadow: 0 0 0 2px #903dfa;
}

.normal-radio input:checked + label:after {
    opacity: 1;
}

.normal-radio__item {
    position: relative;
    width: calc(100% / 2 - 14px);
    margin: 7px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 0 0 1px #DCDDDE;
    box-shadow: 0 0 0 1px #DCDDDE;
    border-radius: 3px;
    padding: 12px 15px;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

.normal-radio__item:before,
.normal-radio__item:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 10px;
    content: "";
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.normal-radio__item:before {
    width: 20px;
    height: 20px;
    border: 2px solid #DCDDDE;
}

.normal-radio__item:after {
    width: 10px;
    height: 10px;
    left: 15px;
    background: #903dfa;
    opacity: 0;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

.normal-radio__item:hover {
    -webkit-box-shadow: 0 0 0 2px #903dfa;
    box-shadow: 0 0 0 2px #903dfa;
}

.normal-radio__item span {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    padding-left: 25px;
    color: #903dfa;
}

@media all and (max-width: 500px) {
    .normal-radio__item:before,
    .normal-radio__item:after {
        left: 5px;
    }
    
    .normal-radio__item:after {
        left: 10px;
    }
    
    .normal-radio__item span {
        font-size: 12px;
        padding-left: 15px;
    }
}

.normal-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -7px;
    margin-left: -7px;
}

.normal-checkbox input {
    display: none;
    cursor: pointer;
}

.normal-checkbox input:checked + label {
    -webkit-box-shadow: 0 0 0 2px #903dfa;
    box-shadow: 0 0 0 2px #903dfa;
}

.normal-checkbox input:checked + label:after {
    opacity: 1;
}

.normal-checkbox__item {
    position: relative;
    width: calc(100% / 2 - 14px);
    margin: 7px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 0 0 1px #DCDDDE;
    box-shadow: 0 0 0 1px #DCDDDE;
    border-radius: 3px;
    padding: 12px 15px;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

@media all and (max-width: 500px) {
    .normal-checkbox__item {
        padding: 12px 10px;
    }
}

.normal-checkbox__item:before,
.normal-checkbox__item:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 10px;
    content: "";
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.normal-checkbox__item:before {
    width: 20px;
    height: 20px;
    border: 2px solid #DCDDDE;
}

.normal-checkbox__item:after {
    width: 10px;
    height: 10px;
    left: 15px;
    background: #903dfa;
    opacity: 0;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

@media all and (max-width: 500px) {
.normal-checkbox__item:before,
    .normal-checkbox__item:after {
        left: 5px;
    }

    .normal-checkbox__item:after {
        left: 10px;
    }
}

.normal-checkbox__item:hover {
    -webkit-box-shadow: 0 0 0 2px #903dfa;
    box-shadow: 0 0 0 2px #903dfa;
}

.normal-checkbox__item span {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    padding-left: 25px;
    color: #903dfa;
}

@media all and (max-width: 500px) {
    .normal-checkbox__item span {
        padding-left: 20px;
        font-size: 12px;
    }
}

.error_message {
  display: none;
}

.error_message.disp {
  display: inline-block;
  height: 40px;
  padding: 0 10px;
  border-radius: 4px;
  background: #903dfa;
  line-height: 40px;
  color: #ffffff;
}

.error_text {
  display: none;
}

.error_text.disp {
  display: inline-block;
  height: 40px;
  padding: 0 10px;
  background: #ff0000;
  line-height: 40px;
  color: #ffffff;
}

.error_meta {
  display: none;
}

.error_meta.disp {
  display: inline-block;
  height: 40px;
  padding: 0 10px;
  background: #ff0000;
  line-height: 40px;
  color: #ffffff;
}

#last-btn {
    display: none;
}

.memes_with_human_link {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.memes_with_human_link img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/*-------------------------  modal ------------------------- */

.modal-open {
    display: inline-block;
    width: auto;
    margin: 20px auto 0;
    padding: 15px 30px;
    border-radius: 60px;
    outline: none;
    background: #444a53;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    font-weight: 500;
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
}

@media all and (max-width: 500px) {
    .modal-open {
        padding: 10px 15px;
        font-size: 12px;
    }
}

.lock {
    overflow: hidden;
}

.modal-overlay {
    z-index: 10000;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgba(247,247,247,0.9);
}

.modal-wrap {
    z-index: 10010;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-content {
	position: relative;
	z-index: 10002;
    width: 80%;
    margin: 100px auto;
	padding: 30px;
    border: 1px solid #903dfa;
    box-shadow: 0 0 10px rgba(144,61,250,0.2);
    border-radius: 6px;
    background: #ffffff;
    text-align: center;
}

.modal-close {
	position: absolute;
	top: 0;
	right: -46px;
	width: 26px;
	height: 26px;
    line-height: 26px;
	text-align: center;
	cursor: pointer;
}

.modal-close img {
	width: 26px;
	height: 26px;
}

@media all and (max-width: 500px) {
    .modal-content {
        width: 85%;
        margin: 20px auto;
        padding: 15px;
    }

    .modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        cursor: pointer;
    }

    .modal-close img {
        width: 20px;
        height: 20px;
    }
    }

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * その他ページ
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.page-wrap {
    position: relative;
	width: 90%;
	margin: 0 auto;
	padding: 40px;
	border-radius: 30px;
    background: #ffffff;
    background: rgba(255,255,255,0.5);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

@media all and (max-width: 500px) {
    .page-wrap {
        padding: 15px;
    }
}

.page-title {
    margin-bottom: 20px;
    text-align: center;
}

.page-title span {
    letter-spacing: 1px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 400;
    font-size: 22px;
}

.ul-logdata {
    margin:  20px auto;
    text-align: center;
}

.ul-logdata li {
    list-style: none;
    margin:  0 auto 20px;
}

.link-logdata {
    display: inline-block;
    width: 240px;
    padding: 5px 0;
    border-radius: 30px;
    background: #5c05cd;
    color: #ffffff;
    -webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.link-logdata:hover {
    opacity: 0.7;
}

.link-purple {
 text-decoration: underline;
    color: #5c05cd;
}

.link-purple:hover {
    text-decoration: underline;
    color: #5c05cd;
}

.log-title {
    text-align: center;
}

.log-title span {
    display: inline-block;
    width: 240px;
    padding: 5px 0;
    border-radius: 30px;
    background: #5c05cd;
    color: #ffffff;
}

.log-subtitle {
    margin-top: 40px;
}

.log-subtitle span {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #903dfa;
}

.log-subtitle span:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 15px;
    height: 13px;
    background-image: url( "../img/icon-triangle-purple.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.link-large {
	display: block;
    width: 200px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 60px !important;
    outline: none;
    border: none;
    background: #444a53;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    -webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

@media all and (max-width: 500px) {
    .link-large {
        width: 150px;
        font-size: 12px;
    }
}

.link-large:hover {
    opacity: 0.7;
}

.page-h3 {
    text-align: center;
}

.page-h3 span {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 30px;
    background: #5c05cd;
    color: #ffffff;
}

.page-h4 {
    margin-top: 40px;
}

.page-h4 span {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #903dfa;
}

.page-h4 span:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 15px;
    height: 13px;
    background-image: url( "../img/icon-triangle-purple.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

ol.count-alphabet {
    padding-left: 0;
}

ol.count-alphabet > li {
    position: relative;
    margin: 0 auto 10px;
    padding-left: 1.5rem;
    list-style-type: none;
    counter-increment: count-alphabet;
}

ol.count-alphabet > li:before {
    content: "(" counter(count-alphabet, lower-alpha) ")" ;
    position: absolute;
    top: 0;
    left: 0;
}

ol.count-num {
    padding-left: 0;
}

ol.count-num > li {
    position: relative;
    margin: 0 auto 10px;
    padding-left: 1.5rem;
    list-style-type: none;
    counter-increment: count-num;
}

ol.count-num > li:before {
    content: "(" counter(count-num) ")" ;
    position: absolute;
    top: 0;
    left: 0;
}

.logo-with-human {
    margin: 20px auto 50px;
    text-align: center;
}

.logo-with-human img {
    width: 50%;
}

#reserve-calendar {
    width: 100%;
}

.color-purple {
    color: #903dfa;
}
