@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;
    background-repeat: no-repeat;
    background-size: 70%;
	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;
}

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

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * 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: block;
}

.sp-disp {
	display: none;
}

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

.sp-inline {
    display: none;
}

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

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

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

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

input[type=text],
input[type=tel],
input[type=email],
input[type=password] {
    appearance: none; /*ipad用*/
    -webkit-appearance: none; /*ipad用*/
	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%;
}

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"] {
    appearance: none; /*ipad用*/
    -webkit-appearance: none; /*ipad用*/
	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;
}

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

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

.circle {
    width: 90px;
    height: 90px;
    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: 90px;
  height: 90px;
  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;
    align-items: center;
	width: 100%;
    height: 100%;
    padding: 50px 0;
}

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

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

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

.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;
}

.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;
}

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

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

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

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

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

.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;
}

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

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

.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;
}

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

.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;
}

.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 {
	margin: 0 auto;
    padding: 40px;
	text-align: center;
}

.login-logo img {
	width: 230px;
}

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

.resister-wrap {
    position: relative;
	width: 400px;
	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);
}

.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;
}

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

.alert-box {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 60px;
	/*background: rgba(144,61,250,0.8);*/
    background: #444a53;
	text-align: center;
	line-height: 60px;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
}

.alert-box-delete {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 60px;
	font-size: 20px;
	cursor: pointer;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * 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:after {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	background-size: auto auto;
    background-color: rgba(255, 255, 255, 1);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 4px, rgba(0, 0, 0, 1) 4px, rgba(0, 0, 0, 1) 5px );
}
*/

.message-wrpper-inner {
    width: 100%;
    height: 100%;
    padding: 10px 10px 20px;
    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;
}

#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;
}

.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;
}

.question-card {
    position: relative;
}

.question-wrap {
    display: none;
}

.question-wrap--block {
    display: block;
    width: auto;
    margin: 30px auto 0;
    padding: 30px;
    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;
}

.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;
}

.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;
}

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

.thumbnail-radio__item img {
    display: block;
    width: 40%;
    margin: 0 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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.lock {
    overflow: hidden;
}

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

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

.login-modal-content {
    display: none;
	position: relative;
    width: 50%;
    margin: 100px auto;
	padding: 30px;
    border: 1px solid #000000;
    border-radius: 6px;
    background: #ffffff;
}

.login-modal-content:after {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 6px;
	background-size: auto auto;
    background-color: rgba(255, 255, 255, 1);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 4px, rgba(0, 0, 0, 1) 4px, rgba(0, 0, 0, 1) 5px );
}

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

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

.login-modal-title {
    margin-bottom: 30px;
    text-align: center;
}

.login-modal-title span {
    font-family: "KorbBold";
    font-size: 30px;
}

.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: 700px;
    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;
}

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

.page-wrap {
    position: relative;
	width: 700px;
	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);
}

.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;
}

.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;
}
