@charset "utf-8";
body{
	font-family: 'Noto Sans Japanese',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-weight: 400;
}
.mt-6{margin-top:4rem;}.mt-7{margin-top:5rem;}.mt-8{margin-top:6rem;}.mt-9{margin-top:7rem;}.mt-10{margin-top:8rem;}
.mb-6{margin-bottom:4rem;}.mb-7{margin-bottom:5rem;}.mb-8{margin-bottom:6rem;}.mb-9{margin-bottom:7rem;}.mb-10{margin-bottom:8rem;}
.w-1{width:1%;}.w-2{width:2%;}.w-3{width:3%;}.w-4{width:4%;}.w-5{width:5%;}.w-6{width:6%;}.w-7{width:7%;}.w-8{width:8%;}.w-9{width:9%;}.w-10{width:10%;}.w-11{width:11%;}.w-12{width:12%;}.w-13{width:13%;}.w-14{width:14%;}.w-15{width:15%;}.w-16{width:16%;}.w-17{width:17%;}.w-18{width:18%;}.w-19{width:19%;}.w-20{width:20%;}.w-21{width:21%;}.w-22{width:22%;}.w-23{width:23%;}.w-24{width:24%;}.w-25{width:25%;}.w-26{width:26%;}.w-27{width:27%;}.w-28{width:28%;}.w-29{width:29%;}.w-30{width:30%;}.w-31{width:31%;}.w-32{width:32%;}.w-33{width:33%;}.w-34{width:34%;}.w-35{width:35%;}.w-36{width:36%;}.w-37{width:37%;}.w-38{width:38%;}.w-39{width:39%;}.w-40{width:40%;}.w-41{width:41%;}.w-42{width:42%;}.w-43{width:43%;}.w-44{width:44%;}.w-45{width:45%;}.w-46{width:46%;}.w-47{width:47%;}.w-48{width:48%;}.w-49{width:49%;}.w-50{width:50%;}.w-51{width:51%;}.w-52{width:52%;}.w-53{width:53%;}.w-54{width:54%;}.w-55{width:55%;}.w-56{width:56%;}.w-57{width:57%;}.w-58{width:58%;}.w-59{width:59%;}.w-60{width:60%;}.w-61{width:61%;}.w-62{width:62%;}.w-63{width:63%;}.w-64{width:64%;}.w-65{width:65%;}.w-66{width:66%;}.w-67{width:67%;}.w-68{width:68%;}.w-69{width:69%;}.w-70{width:70%;}.w-71{width:71%;}.w-72{width:72%;}.w-73{width:73%;}.w-74{width:74%;}.w-75{width:75%;}.w-76{width:76%;}.w-77{width:77%;}.w-78{width:78%;}.w-79{width:79%;}.w-80{width:80%;}.w-81{width:81%;}.w-82{width:82%;}.w-83{width:83%;}.w-84{width:84%;}.w-85{width:85%;}.w-86{width:86%;}.w-87{width:87%;}.w-88{width:88%;}.w-89{width:89%;}.w-90{width:90%;}.w-91{width:91%;}.w-92{width:92%;}.w-93{width:93%;}.w-94{width:94%;}.w-95{width:95%;}.w-96{width:96%;}.w-97{width:97%;}.w-98{width:98%;}.w-99{width:99%;}.w-100{width:100%;}
.fs-05{	font-size:0.5rem; }
.fs-06{	font-size:0.6rem; }
.fs-07{	font-size:0.7rem; }
.fs-08{	font-size:0.8rem; }
.fs-09{	font-size:0.9rem; }
.fs-10{	font-size:1.1rem; }
.fs-11{	font-size:1.2rem; }
.fs-12{	font-size:1.3rem; }
.fs-13{	font-size:1.4rem; }
.fs-14{	font-size:1.5rem; }
.fs-15{	font-size:1.75rem; }
.fs-20{	font-size:2.5rem; }
.fs-30{	font-size:3.5rem; }
.fs-40{	font-size:4.5rem; }

.w-100{width: 100px !important}
.w-150{width: 150px !important}
.w-200{width: 200px !important}
.w-250{width: 250px !important}
.w-300{width: 300px !important}

a img{
  opacity: 1;
  transition: 0.3s;
}
a:hover img{
  opacity: .5;
}
.li-hover > li:hover{
	background-color:#fdf0e4;
}

/*
common
*/

.main-bgc{
	background-color: #fffef3;
}
.bgc-white{
	background-color:white;
}
.bgc-gray{
	background-color:dimgray;
}
.fc-red{
	color:red;
}

.center-block{
	display:block;
	margin-left: auto;
	margin-right: auto;
}


/*動画確認画面*/
.spinner {
  width: 40px; /* サイズ - 可変 */
  height: 40px; /* サイズ - 可変 */
  background-color: OrangeRed; /* ベースの色 - 可変 */

  margin: 0 auto; /* 上下マージン - 可変 */
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes sk-rotateplane {
  0% { 
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 
  } 50% { 
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 
  } 100% { 
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#fullOverlay{
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  z-index: 2147483647;
}

.point-back{
	background-image:url("../images/point-back.png");
	background-size: cover;
}

.check-fix{
	width: 100%; height: 100%;background-color:#000000b5;
}

.table td, .table th {
	font-size: 11pt;
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
@media only screen and (max-width : 600px) {
	.table td, .table th {
	font-size: 11pt;
    padding: 0.4rem!important;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
}
@media only screen and (max-width : 500px) {
	.table td, .table th {
	font-size: 11pt;
    padding: 0.3rem!important;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
}



