@charset "UTF-8";

html{
  height: 100%;
}
body{
	*font-size: small;
	*font: x-small;
	font-size: 14px;
	line-height: 1.5;
	color: #606a70;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
	width: 100%;
  height: 100%;
	margin: 0;
	padding: 0;
	background: #f2f2f2;
}
body *,
body *::before,
bory *::after{
  box-sizing: border-box;
}
h1,h2,h3,h4,h5,p,ul,ol,li,img,table,th,td,dl,dt,dd{
	margin: 0;
	padding: 0;
}
li{
	list-style-type:none;
}
a:link,a:visited{
	cursor: pointer;
	color: #606a70;
	text-decoration: none;
}
img{
	border: 0;
	max-width: 100%;
	height: auto;
  vertical-align: top;
}
input, textarea, select,button,label{
  outline:none;
  border: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}
#wrap{
	position: relative;
	text-align: left;
	overflow: hidden;
  height: 100%;
}
.spOnly{
  display: none;
}
@media only screen and (max-width:768px) {
.spOnly{
  display: block;
}
}


/* header
-----------------------------------------------*/
header{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 100px;
}
header .logo{
  padding: 30px 0 0 50px;
}
header .logo img{
  width: 250px;
}
@media only screen and (max-width:768px) {
header{
  height: 60px;
}
header .logo{
  padding: 25px 0 0 20px;
}
header .logo img{
  width: 180px;
}
}


/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
footer{
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  height: 60px;
  padding: 0 0 0 30px;
}
footer p{
  font-size: 12px;
  margin-top: 3px;
}
footer p:first-child{
  margin-top: 0;
}
@media only screen and (max-width:768px) {
footer{
  left: 0;
  padding: 15px 0 0 20px;
}
footer p{
  font-size: 10px;
  margin-top: 0;
}
}


/* container
-----------------------------------------------*/
#container{
  height: 100%;
  padding: 100px 0 80px 240px;
}
@media only screen and (max-width:1024px) {
#container{
  height: 100%;
  padding: 100px 0 80px 180px;
}
}
@media only screen and (max-width:768px) {
#container{
  height: 100%;
  padding: 60px 0 50px;
}
}


/* container
-----------------------------------------------*/
#loginBox{
  padding: 80px 0 80px 0;
  height: 100%;
  width: 100%;
  display: table;
}
#loginBox .inner{
  height: 100%;
  align-items: center;
  overflow-y: auto;
  padding: 0 40px;
  display: table-cell;
  vertical-align: middle;
}
#loader{
width: 100%;
text-align: center;

}
@media only screen and (max-width:768px) {
#loginBox{
  padding: 60px 0 50px;
}
#loginBox .inner{
  padding: 0 20px;
}
}


/* menuBtn
-----------------------------------------------*/
#menuBtn{
  display: none;
}
@media only screen and (max-width:768px) {
#menuBtn{
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
#menuBtn::before,
#menuBtn::after{
  content: "";
  width: 22px;
  height: 2px;
  background: #606a70;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform .2s;
}
#menuBtn::before{
  transform: translate(-50%,-8px);
}
#menuBtn::after{
  transform: translate(-50%,6px);
}
#menuBtn.active::before{
  transform: translate(-50%,-1px) rotate(45deg);
}
#menuBtn.active::after{
  transform: translate(-50%,-1px) rotate(-45deg);
}
#menuBtn span{
  font-size: 0;
  display: block;
  width: 22px;
  height: 2px;
  background: #606a70;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
#menuBtn.active span{
  display: none;
}
}


/* menu
-----------------------------------------------*/
#menu{
  position: absolute;
  left: 0;
  top: 100px;
  width: 240px;
  height: calc(100% - 100px - 80px);
  padding: 25px 0 25px 50px;
  background: #fafafa;
  overflow-y: auto;
}
#menu ul li a,
#menu ul li p{
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  height: 56px;
  letter-spacing: .08em;
}
#menu ul li a.current{
  color: #0071bb;
  font-weight: bold;
}
#menu ul li a.current::after{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #0071bb;
}
#menu ul li ul{
  padding-left: 14px;
  display: none;
}
#menu ul li ul li a{
  font-weight: normal;
}
#menu ul li button{
  background: transparent;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  height: 56px;
  letter-spacing: .08em;
  cursor: pointer;
}
#menuBg{
  display: none;
}
@media only screen and (max-width:1024px) {
#menu{
  width: 180px;
  padding: 25px 0 25px 30px;
}
#menu ul li a,
#menu ul li p{
  height: 50px;
  font-size: 13px;
}
#menu ul li ul{
  padding-left: 13px;
}
}
@media only screen and (max-width:768px) {
#menu{
  width: 240px;
  height: calc(100% - 60px);
  position: fixed;
  left: -240px;
  top: 60px;
  z-index: 101;
  padding: 25px 0 75px 40px;
  transform: translateX(0);
	transition: transform .6s cubic-bezier(.210, .60, .350, 1);
}
#menu.active{
  transform: translateX(100%);
}
#menu ul li a,
#menu ul li p{
  font-size: 14px;
}
#menu ul li ul{
  padding-left: 14px;
}
#menuBg{
  display: none;
  width: 100%;
  height: calc(100% - 60px);
  position: fixed;
  left: 0;
  top: 60px;
  z-index: 100;
  background: rgba(0,0,0,.7);
}
}


/* contents
-----------------------------------------------*/
#contents{
  position: relative;
  overflow-y: auto;
  height: 100%;
  padding: 80px 50px;
}
@media only screen and (max-width:768px) {
#contents{
  padding: 40px 20px;
}
}


/* breadcrumb
-----------------------------------------------*/
#breadcrumb{
  position: absolute;
  top: 30px;
  left: 50px;
  font-size: 0;
}
#breadcrumb li{
  display: inline-block;
  font-size: 12px;
}
#breadcrumb li::after{
  content: "＞";
  margin: 0 8px;
}
#breadcrumb li:last-child::after{
  display: none;
}
#breadcrumb li a{
  text-decoration: underline;
}
@media only screen and (max-width:768px) {
#breadcrumb{
  position: relative;
  top: 0;
  left: 0;
  margin: -20px 0 20px;
}
}


/* contents
-----------------------------------------------*/
.listWrap .list{
  font-size: 0;
  margin-top: -20px;
}
.listWrap .list li{
  display: inline-block;
  vertical-align: top;
  width: 160px;
  margin: 20px 10px 0 0;
}
.listWrap .list li a{
  font-size: 12px;
}
.listWrap .list li a img{
  width: 100%;
}
.listWrap .list li a span{
  display: block;
  margin-top: 6px;
}
@media only screen and (max-width:768px) {
.listWrap .list{
  position: relative;
  left: -5px;
  width: calc(100% + 10px)
}
.listWrap .list li{
  width: calc(25% - 10px);
  margin: 20px 5px 0 5px;
}
}
@media only screen and (max-width:600px) {
.listWrap .list li{
  width: calc(33.333% - 10px);
}
}


/* back
-----------------------------------------------*/
.back{
  position: absolute;
  left: 32px;
  top: 45px;
}
.back a{
  content: "";
  display: block;
  background-image: url("../img/icon_back.svg");
  background-size: cover;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width:1024px) {
.back{
  left: 50px;
  top: 30px;
}
}
@media only screen and (max-width:768px) {
.back{
  left: 20px;
  top: 15px;
}
.back a{
  width: 28px;
  height: 28px;
}
}


/* detaillBox
-----------------------------------------------*/
#detaillBox{
  display: flex;
  max-width: 955px;
  margin: 0 auto;
}
.imageDetatil{
  width: 300px;
}
.imageDetatil img{
  width: 100%;
}
.imageDetatil p{
  font-size: 12px;
  margin-top: 8px;
}
.imageDetatil #coporateImageList{
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 80px);
}
#productAndServiceInfoArea,
#corporateInfoArea{
  width: 655px;
  padding-left: 15.708%;
}
#detaillBox table{
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-top: -10px;
  width: 100%;
}
#detaillBox table th,
#detaillBox table td{
  background: #fff;
  font-size: 14px;
  vertical-align: top;
}
#detaillBox table th{
  padding: 0px 20px;
  border-radius: 4px 0 0 4px;
  white-space: nowrap;
}
#detaillBox table th h3{
  font-size: 14px;
  padding-top: 14px;
}
#detaillBox table td{
  border-radius: 0 4px 4px 0;
  width: 100%;
}
#detaillBox table td input[type="text"]{
  height: 50px;
  width: 100%;
  background: transparent;
  font-size: 14px;
  padding: 0 15px;
}
#detaillBox table td textarea{
  height: 150px;
  width: 100%;
  background: transparent;
  resize: none;
  padding: 14px 15px 14px 15px;
  font-size: 14px;
}
#detaillBox table td select{
  height: 50px;
  width: 100%;
  background: #8b929c;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  padding: 0 15px;
}
#detaillBox table td .selectBox{
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
#detaillBox table td .selectBox::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 50px;
  background-image: url("../img/icon_select.svg");
  pointer-events: none;
}
#detaillBox table td .selectBox select{
  height: 50px;
  width: 100%;
  background: #fafafa;
  color: #606a70;
  border-radius: 4px;
  font-size: 14px;
  padding: 0 44px 0 15px;
}
::placeholder{
  color:#949aa2;
  font-size: 14px;
}
#detaillBox table td label{
	display: inline-block;
	font-size: 14px;
	position: relative;
	cursor: pointer;
  min-height: 40px;
  padding-top: 9px;
  padding: 9px 0 0 50px;
  margin: 5px 30px 5px 0;
}
#detaillBox table td label:last-child{
  margin-right: 0;
}
#detaillBox table td label::before{
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0%,-50%);
}
#detaillBox table td input[type="radio"]{
  display: none;
}
#detaillBox table td input[type="radio"]:checked + label::after{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0%,-50%);
	background: #606a70;
}
/* other */
#detaillBox table .other th,
#detaillBox table .other td,
#detaillBox table .moviedata th,
#detaillBox table .moviedata td,
#detaillBox table .downloaddata th,
#detaillBox table .downloaddata td,
#detaillBox table .rotate th,
#detaillBox table .rotate td,
#detaillBox table .texturedata th,
#detaillBox table .texturedata td,
#detaillBox table .modeldata th,
#detaillBox table .modeldata td{
  background: transparent;
}
#detaillBox table .moviedata td button,
#detaillBox table .downloaddata td button,
#detaillBox table .texturedata td button,
#detaillBox table .modeldata td button{
	background: #3a4351;
    width: 50%;
    height: 50px;
    font-weight: bold;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
#detaillBox table .texturedata td button,
#detaillBox table .modeldata td button{
    width: 199px;
}
#detaillBox table .moviedata td button,
#detaillBox table .downloaddata td button{
    width: 100%;
}
@media only screen and (max-width:1180px) {
}
@media only screen and (max-width:1024px) {
#productAndServiceInfoArea,
#corporateInfoArea {
  padding-left: 8%;
}
.imageDetatil #coporateImageList{
  width: 100%;
  margin: -30px 0 0 0;
}
.imageDetatil #coporateImageList li{
  width: 100%;
  padding: 30px 0 0 0;
}
}
@media only screen and (max-width:768px) {
#detaillBox{
  display: block;
}
.imageDetatil{
  width: auto;
}
.imageDetatil .img{
  max-width: 180px;
  margin: 0 auto;
}
.imageDetatil p{
  font-size: 11px;
}
#productAndServiceInfoArea,
#corporateInfoArea{
  width: 100%;
  padding-left: 0;
  margin: 20px 0 0 0;
}
#detaillBox table{
  border-spacing: 0 5px;
  margin-top: -5px;
}
#detaillBox table th{
  padding: 0px 15px;
}
#detaillBox table th,
#detaillBox table td{
  font-size: 13px;
}
#detaillBox table th h3{
  font-size: 13px;
}
#detaillBox table td input[type="text"]{
  font-size: 13px;
}
#detaillBox table td textarea{
  font-size: 13px;
}
#detaillBox table td select{
  font-size: 13px;
}
::placeholder{
  font-size: 13px;
}
#detaillBox table td label{
  font-size: 13px;
}
#detaillBox table .modeldata td button,
#detaillBox table .texturedata td button{
    width: 100%;
}
}


/* btnBox
-----------------------------------------------*/
#btnBox{
  display: flex;
}
#btnBox li{
  margin-right: 10px;
  width: calc(50% - 5px);
}
#btnBox li:last-child{
  margin-right: 0;
}
#btnBox li button{
  background: #606a70;
  width: 100%;
  height: 50px;
  font-weight: bold;
	color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}


/* formBox
-----------------------------------------------*/
input[type="file"]{
	display: none;
}
.formBox ul{
  display: flex;
}
.formBox ul li{
  margin-right: 10px;
  width: calc(50% - 5px);
}
.formBox ul li:last-child{
  margin-right: 0;
}

@media only screen and (max-width:1024px) {
	
.formBox ul{
  display: block;
}
.formBox ul li:first-child{
	margin-bottom: 10px;
}
.formBox ul li{
	width: 100%;
	clear: both;
}
#detaillBox table .texturedata td button,
#detaillBox table .modeldata td button{
    width: 100%;;
}
}
@media only screen and (max-width:768px) {
.formBox ul li:first-child{
	margin-bottom: 5px;
}
}


/* subscriptionBox
-----------------------------------------------*/
#subscriptionBox{
  max-width: 1038px;
  margin: 0 auto;
  display: flex;
  padding: 100px 0 30px;
}
#subscriptionBox .col{
  position: relative;
  width: 240px;
  margin-right: 26px;
  padding-bottom: 75px;
}
#subscriptionBox .col:last-child{
  margin-right: 0;
}
#subscriptionBox .col .img{
  opacity: .3;
}
#subscriptionBox .col.active .img{
  opacity: 1;
}
#subscriptionBox .col .img img{
  width: 100%;
}
#subscriptionBox .col .txt{
  margin-top: 25px;
  text-align: center;
}
#subscriptionBox .col .txt h2 strong{
  display: block;
  font-size: 24px;
}
#subscriptionBox .col .txt h2 span{
  display: block;
  font-weight: bold;
  font-size: 13px;
  margin-top: 5px;
}
#subscriptionBox .col .txt p{
  margin-top: 12px;
}
#subscriptionBox .col .txt p strong{
  font-size: 24px;
}
#subscriptionBox .col .txt p span{
  font-size: 14px;
}
#subscriptionBox .col .txt .btn{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
#subscriptionBox .col .txt .btn a{
  display: block;
  background: #606a70;
  max-width: 200px;
  height: 60px;
  border-radius: 4px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  line-height: 60px;
  margin: 0 auto;
}
#subscriptionBox .col .txt .btn a.buy::before{
  content: "";
  width: 40px;
  height: 40px;
  background-image: url("/img/icon_cart.svg");
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
  margin: -6px 10px 0 0;
}
@media only screen and (max-width:1024px) {
#subscriptionBox .col .txt h2 strong{
  font-size: 18px;
}
#subscriptionBox .col .txt h2 span{
  font-size: 12px;
}
#subscriptionBox .col .txt p strong{
  font-size: 20px;
}
#subscriptionBox .col .txt p span{
  font-size: 12px;
}
#subscriptionBox .col .txt .btn a{
  font-size: 18px;
}
#subscriptionBox .col .txt .btn a.buy::before{
  width: 25px;
  height: 25px;
  margin: -6px 10px 0 0;
  margin: -6px 6px 0 0;
}
}
@media only screen and (max-width:768px) {
#subscriptionBox{
  padding: 40px 0 0;
  flex-wrap: wrap;
  margin-top: -40px;
}
#subscriptionBox .col{
  width: 48%;
  margin: 40px 4% 0 0;
  padding-bottom: 60px;
}
#subscriptionBox .col:nth-child(2n){
  margin-right: 0;
}
#subscriptionBox .col .txt{
  margin-top: 10px;
}
#subscriptionBox .col .txt .btn a{
  height: 50px;
  font-size: 16px;
  line-height: 50px;
}
}


#firebaseui-auth-container{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 100px 70px;
	border-radius: 4px;
	opacity: 0;
	transition: opacity .5s;
}
.mdl-js #firebaseui-auth-container{
	opacity: 1;
}
#firebaseui-auth-container h1{
	font-size: 28px;
	line-height: 1.2;
	font-family: "Noto Sans CJK JP Bold","MS Pゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", sans-serif;
	color: #606a70;
	margin-bottom: 50px;
	letter-spacing: 0.08em;
	padding: 0;
	text-align: center;
}
#firebaseui-auth-container .firebaseui-container{
	max-width: 490px;
	margin: 0 auto;
	color: #000;
	background: transparent;
	box-shadow: none;
}
#firebaseui-auth-container .firebaseui-card-content{
	padding: 0;
}
#firebaseui-auth-container .firebaseui-idp-list{
	margin: 0;
}
#firebaseui-auth-container .firebaseui-idp-list > .firebaseui-list-item:first-child{
	display: none;
}
#firebaseui-auth-container .firebaseui-idp-button{
	box-shadow: none;
	background: #606a70;
	color: #fff;
	font-size: 0;
	width: 100%;
	max-width: 240px;
	height: 50px;
	padding: 0;
	border-radius: 4px;
}
#firebaseui-auth-container .firebaseui-idp-button span{
	display: none;
}
#firebaseui-auth-container .firebaseui-idp-button::before{
	display: block;
	width: 100%;
	height: 100%;
	font-size: 16px;
	line-height: 50px;
	letter-spacing: 0.08em;
	text-align: center;
}
#firebaseui-auth-container .firebaseui-idp-google::before{
	content: "googleでサインイン";
}
#firebaseui-auth-container .firebaseui-idp-password::before{
	content: "サインインまたは登録";
}
#firebaseui-auth-container .firebaseui-card-footer{
	padding: 0;
	margin-top: 60px;
}
#firebaseui-auth-container .firebaseui-tos{
	color: #333;
	margin: 0;
}
#firebaseui-auth-container .firebaseui-tos .firebaseui-link{
	color: #606a70;
}
#firebaseui-auth-container .firebaseui-card-header{
	padding: 0;
	margin: 0;
	border: none;
}
#firebaseui-auth-container .mdl-textfield{
	display: block;
	padding: 0;
	position: relative;
}
#firebaseui-auth-container .mdl-textfield::after{
	content: "";
	display: block;
	width: 37px;
	height: 37px;
	background: url(/common/img/ico_mail.svg) no-repeat center center;
	background-size: 100%;
	position: absolute;
	top: 28px;
	left: 16px;
}
#firebaseui-auth-container .firebaseui-id-page-password-sign-in .mdl-textfield:nth-child(3)::after{
	background: url(/common/img/ico_pw.svg) no-repeat center center;
	background-size: 100%;
}
#firebaseui-auth-container .firebaseui-id-page-password-sign-up .mdl-textfield:nth-child(3)::after{
	display: none;
}
#firebaseui-auth-container .firebaseui-new-password-component .mdl-textfield::after{
	background: url(/common/img/ico_pw.svg) no-repeat center center;
	background-size: 100%;
}
#firebaseui-auth-container .mdl-textfield__label{
	position: relative;
	top: 0;
	font-size: 13px;
	line-height: 1.75;
	color: #000;
}
#firebaseui-auth-container .mdl-textfield__label::after{
	display: none;
}
#firebaseui-auth-container .mdl-textfield__input{
	border: none;
	width: 100%;
	height: 50px;
	border-radius: 4px;
	font-size: 20px;
	padding: 10px 60px 10px 80px;
	background: #fff;
}
#firebaseui-auth-container .firebaseui-new-password-component{
	display: block;
}
#firebaseui-auth-container .firebaseui-new-password-component .firebaseui-id-password-toggle{
	opacity: 1;
	position: absolute;
	top: 32px;
	right: 16px;
	width: 29px;
	height: 29px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
	cursor: pointer;
}
#firebaseui-auth-container .firebaseui-new-password-component .firebaseui-input-toggle-on{
	background-image: url(/common/img/ico_eye.svg);
}
#firebaseui-auth-container .firebaseui-new-password-component .firebaseui-input-toggle-off{
	background-image: url(/common/img/ico_eye_off.svg);
}
#firebaseui-auth-container .firebaseui-card-actions{
	margin: 40px auto 0;
	padding: 0;
}
#firebaseui-auth-container .firebaseui-text-input-error{
	margin: 10px 0 0;
	color: #ff0000;
}
#firebaseui-auth-container .firebaseui-button{
	box-shadow: none;
	border-radius: 4px;
	width: 240px;
	height: 50px;
	background: #606a70;
	color: #fff;
	font-size: 16px;
	line-height: 50px;
	margin-left: 10px;
	font-family: "Noto Sans CJK JP Regular","MS Pゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	text-align: center;
	border: none;
}
#firebaseui-auth-container .firebaseui-button:first-child{
	margin-left: 0;
}
@media only screen and (max-width:768px) {
	#firebaseui-auth-container{
		padding: 30px 20px;
	}
	#firebaseui-auth-container h1{
		font-size: 22px;
		margin-bottom: 30px;
	}
	#firebaseui-auth-container .firebaseui-text{
		font-size: 14px;
		margin-bottom: 20px;
	}
	#firebaseui-auth-container .firebaseui-idp-button::before{
		font-size: 14px;
	}
	.mdl-textfield{
		font-size: 14px;
	}
	#firebaseui-auth-container .mdl-textfield::after{
		width: 28px;
		height: 28px;
		top: 32px;
	}
	#firebaseui-auth-container .mdl-textfield__input{
		font-size: 16px;
		padding: 10px 50px 10px 60px;
	}
	#firebaseui-auth-container .firebaseui-new-password-component .firebaseui-id-password-toggle{
		top: 35px;
		right: 10px;
    width: 24px;
    height: 24px;
	}
	#firebaseui-auth-container .firebaseui-card-actions{
		margin: 30px auto 0;
		font-size: 12px;
	}
	#firebaseui-auth-container .firebaseui-button{
		font-size: 14px;
	}
	#firebaseui-auth-container .firebaseui-card-footer{
		margin-top: 40px;
	}
}
@media only screen and (max-width:620px) {
	#firebaseui-auth-container .firebaseui-card-actions{
		display: block;
	}
	#firebaseui-auth-container .firebaseui-form-actions{
		display: block;
	}
	#firebaseui-auth-container .firebaseui-button{
		width: 100%;
		max-width: 240px;
		display: block;
		margin: 10px auto 0;
	}
	#firebaseui-auth-container .firebaseui-button:first-child{
		margin: 0 auto;
	}
	#firebaseui-auth-container .firebaseui-form-links{
		display: block;
		text-align: center;
		margin-bottom: 10px;
	}
}

main {
  display: none;
}

/* subscribe */
#subscribe{
  display: none;
}
.product{
	color: #606a70;
}
.product img {
	display: none;
}

.authenticate{
	display: none;
	background: #f2f2f2;
	width: 100%;
	max-width: 700px;
	min-height: 260px;
	margin: 0 auto;
	border-radius: 4px;
	box-sizing: border-box;
}
.authenticateFirst{
	padding: 100px 40px 40px;
	text-align: center;
}
.authenticateLast{
	display: none;
	vertical-align: middle;
	padding: 40px;
	text-align: center;
}
.authenticate button{
	box-shadow: none;
	background: #606a70;
	color: #fff;
	display: block;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-align: center;
	width: 100%;
	max-width: 240px;
	height: 50px;
	padding: 0;
	border-radius: 4px;
	margin:0 auto 50px;
	cursor: pointer;
}
.authenticate p{
	font-size: 13px;
	line-height: 2;
}
.authenticate p a{
	text-decoration: underline;
}
@media only screen and (max-width:768px) {
	.authenticate{
		min-height: 0;
	}
	.authenticateFirst{
		padding: 30px 20px;
	}
	.authenticateLast{
		padding: 30px 20px;
	}
	.authenticate button{
		font-size: 14px;
	}
	.authenticate p{
		font-size: 12px;
	}
}


/* my-subscription */
#my-subscription {
  display: none;
}
#dashboardTtl{
	text-align: left;
}
#dashboardTtl h1{
	font-size: 28px;
	line-height: 1.2;
	font-family: "Noto Sans CJK JP Bold","MS Pゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", sans-serif;
	letter-spacing: 0.08em;
}
#dashboardTtl h1 span{
	display: inline-block;
	padding-right: 0.5em;
	margin-right: 0.5em;
	position: relative;
}
#dashboardTtl h1 span::after{
	content: "";
	display: block;
	width: 1px;
	height: 30px;
	background: #000;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0%,-50%);
}
#dashboardTtl p{
	font-size: 13px;
	line-height: 1.5;
	margin-top: 20px;
	font-family: "Noto Sans CJK JP Light","MS Pゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}
#dashboardList{
	margin: 50px auto 0;
	background: #f2f2f2;
	padding: 80px 0;
	border-radius: 4px;
	margin: 0 auto;
	max-width: 970px;
}
#dashboardList ul{
	font-size: 0;
}
#dashboardList ul li{
	display: inline-block;
	vertical-align: top;
	width: 25.0%;
	margin-top: 170px;
	text-align: center;
}
#dashboardList ul li:nth-child(-n+4){
	margin-top: 0;
}
#dashboardList ul li a,
#dashboardList ul li button{
	display: block;
	max-width: 240px;
	border: none;
	padding: 30px 0;
	margin: 0 auto;
	cursor: pointer;
	background: #f2f2f2;
	transition: opacity .2s;
}
#dashboardList ul li a:hover,
#dashboardList ul li button:hover{
	opacity: 0.7;
}
#dashboardList ul li .thumb{
	width: 152px;
	margin: 0 auto 25px;
}
#dashboardList ul li .thumb::before{
	content: "";
	display: block;
	width: 100%;
	height: 0;
	padding-top: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#dashboardList ul li.artist .thumb::before{
	/* background-image: url("/common/img/ico_artist.svg"); */
	background-image: url("/common/img/icon_artist.png");
}
#dashboardList ul li.works .thumb::before{
	/* background-image: url("/common/img/ico_works.svg"); */
	background-image: url("/common/img/icon_works.png");
}
#dashboardList ul li.exhibition .thumb::before{
	background-image: url("/common/img/icon_exhibition.png");
}
#dashboardList ul li.type .thumb::before{
	/* background-image: url("/common/img/ico_type.svg"); */
	background-image: url("/common/img/icon_gallery.png");
}
#dashboardList ul li strong{
	display: block;
	font-size: 20px;
	line-height: 1.5;
	font-family: "Noto Sans CJK JP Bold","MS Pゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", sans-serif;
	color: #4A5564;
}
#dashboardList ul li span{
	display: block;
	font-size: 13px;
	line-height: 1.5;
	font-family: "Noto Sans CJK JP Light","MS Pゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	margin-top: 10px;
	color: #4A5564;
}
@media only screen and (max-width:768px) {
	#dashboardTtl h1{
		font-size: 22px;
	}
	#dashboardTtl h1 span::after{
		height: 24px;
	}
	#dashboardTtl p{
		margin-top: 15px;
	}
	#dashboardList{
		margin-top: 30px;
		padding: 40px;
	}
	#dashboardList ul li{
		width: 50%;
		margin-top: 40px;
	}
	#dashboardList ul li:nth-child(3){
		/* margin-top: 40px; */
	}
	#dashboardList ul li a, #dashboardList ul li button{
		padding: 20px 0;
	}
	#dashboardList ul li strong{
		font-size: 18px;
	}
}
@media only screen and (max-width:560px) {
	#dashboardList ul li{
		width: 100%;
	}
	#dashboardList ul li:nth-child(2){
		margin-top: 40px;
	}
}
@media only screen and (max-width:440px) {
	#dashboardTtl h1{
		text-align: center;
	}
	#dashboardTtl h1 span{
		display: block;
		padding-right: 0;
		margin-right: 0;
	}
	#dashboardTtl h1 span::after{
		width: 30px;
    height: 1px;
    position: relative;
    top: 0;
    right: auto;
    transform: translate(0%,0%);
    margin: 10px auto;
	}
	#dashboardTtl p{
		text-align: center;
	}
}

/* Test card number */
.test-card-notice {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
.card-number {
  display: inline;
  white-space: nowrap;
  font-family: Menlo, Consolas, monospace;
  color: #3c4257;
  font-weight: 500;
}
.card-number span {
  display: inline-block;
  width: 4px;
}


/* trial
-----------------------------------------------*/
#trial .txt{
  text-align: center;
  max-width: 100%;
  padding-left: 0;
}
#trial .list{
  display: flex;
  max-width: 1120px;
  margin: 60px auto 0;
}
#trial .list .col{
  position: relative;
  padding-bottom: 150px;
  width: 25%;
}
#trial .list .col .subTtl p{
  font-size: 28px;
  line-height: 1.2;
}
#trial .list .col .subTtl h3{
  font-size: 14px;
}
#trial .list .col ul{
  margin-top: 40px;
}
#trial .list .col ul li{
  font-size: 13px;
  margin-top: 6px;
}
#trial .list .col ul li:first-child{
  margin-top: 0;
}
#trial .list .col .price{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
#trial .list .col .price p span{
  font-size: 14px;
  margin-right: 5px;
}
#trial .list .col .price p strong{
  font-size: 42px;
}
#trial .list .col a{
  position: relative;
  z-index: 1;
  display: block;
  max-width: 150px;
  width: 100%;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(to right, #1e9cd7, #0058dd);
  border-radius: 36px;
  font-size: 12px;
  opacity: 1;
  margin-top: 15px;
}
#trial .list .col a::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #1e9cd7, #0058dd);
  border-radius: 36px;
  transition: .3s cubic-bezier(.210, .60, .350, 1) all;
  transform: translateY(0) scaleX(1);
  opacity: 0.6;
}
#trial .list .col a:hover::before{
  filter: blur(6px);
  transform: translateY(0) scale(1.05,1.1);
}

@media only screen and (max-width: 767px){
#trial .txt {
    margin-top: 15px;
}
#trial .list{
  flex-wrap: wrap;
  margin-top: 0;
}
#trial .list .col{
  width: 100%;
  line-height: 1em;
  padding-bottom: 8px;
}
#trial .list .col .subTtl p{
  font-size: 24px;
}
#trial .list .col ul{
  margin-top: 0px;
}
#trial .list .col ul li{
  font-size: 10px;
  margin-top: 2px;
}
#trial .list .col .price{
text-align: right;
bottom: 58px;
}
#trial .list .col .price p strong {
    font-size: 40px;
}
#trial .list .col .price .btn{
  position: absolute;
  right: 0;
}
}


/* plans
-----------------------------------------------*/
#container.plan{
  padding-left: 0;
}
#plans .products{
  display: flex;
  max-width: 1120px;
  margin: 60px auto 0;
}
#plans .products > *{
  position: relative;
  padding-bottom: 150px;
  width: 25%;
}
#plans .products h2{
  font-size: 28px;
  color: #0071bb;
}
#plans .products p{
  font-size: 14px;
}
#plans .products h2 + p{
  font-weight: bold;
}
#plans .products h3{
  font-size: 14px;
  margin-top: 30px;
}
#plans .products ul{
  margin-top: 15px;
}
#plans .products ul li{
  font-size: 13px;
  margin-top: 15px;
}
#plans .products ul li:first-child{
  margin-top: 0;
}
#plans .products .price{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
#plans .products .price p{
  font-size: 26px;
  font-weight: bold;
}
#plans .products .price .selectBox{
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  max-width: 180px;
}
#plans .products .price .selectBox::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background-image: url("/img/icon_select.svg");
  pointer-events: none;
}
#plans .products .price select{
  font-size: 18px;
  font-weight: bold;
  height: 44px;
  border: 1px solid #606a70;
  background: transparent;
  border-radius: 4px;
  padding: 0 30px 0 10px;
  width: 100%;
  cursor: pointer;
}
#plans .products .btn,
#plans .products button{
  position: relative;
  z-index: 1;
  display: block;
  max-width: 150px;
  width: 100%;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(to right, #1e9cd7, #0058dd);
  border-radius: 36px;
  font-size: 12px;
  opacity: 1;
  margin-top: 15px;
  cursor: pointer;
}
@media only screen and (max-width: 767px){
#plans .products{
  margin: -40px auto 0;
  flex-wrap: wrap;
  width: calc(100% + 20px);
}
#plans .products > *{
  padding-bottom: 110px;
  width: 50%;
  margin-top: 40px;
  padding-right: 20px;
}
#plans .products h2{
  font-size: 22px;
}
#plans .products p{
  font-size: 13px;
}
#plans .products h3{
  font-size: 13px;
  margin-top: 10px;
}
#plans .products ul{
  margin-top: 5px;
}
#plans .products ul li{
  font-size: 13px;
  margin-top: 3px;
}
#plans .products .price{
  width: calc(100% - 20px);
}
#plans .products .price p{
  font-size: 20px;
  font-weight: bold;
}
#plans .products .price select{
  font-size: 16px;
  height: 40px;
  padding: 0 30px 0 10px;
}
#plans .products .price .selectBox::before{
  width: 40px;
  height: 40px;
  background-size: cover;
}
}


/*----------------------------------------------------------------
homeList
----------------------------------------------------------------*/
#homeList{
  max-width: 960px;
  margin: 0 auto;
}
#homeList h2{
  font-size: 24px;
  text-align: center;
}
#homeList ul{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
#homeList ul li{
  width: calc(33.333% - 13.333px);
  margin-right: 20px;
  text-align: center;
}
#homeList ul li:nth-child(3n){
  margin-right: 0;
}
#homeList ul li a{
  display: block;
  width: 100%;
  color: #fff;
  background: #606a70;
  border-radius: 4px;
  padding: 30px 10px;
}
#homeList ul li a p{
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}
#homeList ul li a img{
  margin-top: 40px;
}
#homeList ul li a h3{
  font-size: 14px;
  margin-top: 40px;
  line-height: 1.2;
  font-weight: normal;
}
#homeList ul li > p{
  font-size: 14px;
  margin-top: 15px;
}
/* fade */
:root{
  --time: .6s
}
#homeList ul li a p,
#homeList ul li a img,
#homeList ul li a h3{
  opacity: 0;
  transition: transform var(--time),opacity var(--time);
  transition-delay: .1s;
}
#homeList ul li a p{
  transform: translateY(10px);
}
#homeList ul li a img{
  transform: scale(0.9);
}
#homeList ul li a h3{
  transform: translateY(-10px);
}
#homeList.fade ul li a p,
#homeList.fade ul li a img,
#homeList.fade ul li a h3{
  transform: translateY(0) scale(1);
  opacity: 1;
}
#homeList ul li{
  position: relative;
  overflow: hidden;
}
#homeList ul li::after{
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  width: calc(100% + 200px);
  height: 100%;
  background: #f2f2f2;
  transform-origin: left;
  transform: skew(-30deg);
  transition: width 1.0s, opacity 1.0s;
  opacity: 1;
}
#homeList.fade ul li::after{
  width: 0;
  opacity: 0;
}
@media only screen and (max-width:768px) {
#homeList h2{
  font-size: 20px;
}
#homeList ul{
  margin-top: 15px;
  justify-content: center;
}
#homeList ul li,
#homeList ul li:nth-child(3n){
  width: calc(33.333% - 2px);
  margin: 3px 3px 0 0;
}
#homeList ul li:nth-child(3n){
  margin-right: 0;
}
#homeList ul li a{
  padding: 20px 10px;
}
#homeList ul li a p{
  font-size: 13px;
}
#homeList ul li a img{
  margin-top: 5px;
  width: 60px;
}
#homeList ul li a div{
  margin: -8% auto -11%;
}
#homeList ul li a h3{
  font-size: 11px;
  margin-top: 5px;
}
#homeList ul li > p{
  font-size: 11px;
  margin-top: 10px;
}
}