@charset "UTF-8";

/*------------------------------------------------------------
	header
------------------------------------------------------------*/
header{
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  width: calc(100% - 350px);
  padding: 30px 150px 0 30px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
header > *{
  pointer-events: auto;
}
header .ttl{
  display: flex;
}
header .ttl .logo{
  width: 60px;
}
header .ttl .logo img{
  display: block;
  max-height: 60px;
  max-width: 60px;
  margin: 0 auto;
}
header .ttl .txt{
  padding-left: 20px;
}
header .ttl h1{
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}
header .ttl p{
  line-height: 1.2;
  margin-top: 5px;
  font-size: 13px;
}
header .btnList{
  position: absolute;
  right: 20px;
  top: 50px;
}
header .btnList ul{
  font-size: 0;
}
header .btnList ul li{
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
}
header .btnList ul li > *{
  display: block;
  width: 40px;
  height: 40px;
}
#planPage header{
  width: 100%;
}
#planPage header .btnList{
  top: 20px;
}
@media only screen and (max-width:960px) {
header{
  width: 100%;
}
header .ttl h1{
  font-size: 22px;
}
header .ttl p{
  font-size: 12px;
}
header .btnList{
  position: absolute;
  right: 7px;
  top: 62px;
}
header .btnList ul li{
  display: block;
  margin-left: 0;
  height: 34px;
  overflow: hidden;
}
header .btnList ul li > *{
  position: relative;
  top: -3px;
}
}
@media only screen and (max-width:767px) {
header{
  padding: 15px 55px 0 15px;
}
header .ttl .logo{
  width: 40px;
}
header .ttl .logo img{
  max-height: 40px;
  max-width: 40px;
}
header .ttl h1{
  font-size: 16px;
}
header .ttl p{
  font-size: 11px;
  margin-top: 4px;
}
header .ttl .txt{
  padding-left: 10px;
}
}


/*------------------------------------------------------------
	menu
------------------------------------------------------------*/
#menu{
  position: absolute;
  top: 0;
  right: 0!important;
  z-index: 3;
  max-height: calc(100% - 100px);
  height: 100%;
  pointer-events: none;
}
#menuBtn{
  display: none;
}
#menu .over{
  overflow-y: auto;
  max-height: calc(100%);
  width: 350px;
  pointer-events: auto;
}
#menu .inner{
  padding: 30px 0 0 0;
  max-width: 320px;
  margin-top: -10px;
}
#menu .box{
  margin-top: 10px;
  background: #333;
  border-radius: 8px;
}
#menu .box .btn{
  position: relative;
  min-height: 40px;
  padding: 30px;
  cursor: pointer;
}
#menu .box .btn h2{
  font-size: 14px;
  color: #fff;
}
#menu .box .btn::before{
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 6px);
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}
#menu .box .btn.active::before{
  top: calc(50% - 3px);
  transform: rotate(-45deg);
}
#menu .box .selectList{
  padding: 0 30px 30px 30px;
  display: none;
}
@keyframes fade{
  0% {opacity: 0;}
  100% {opacity: 1;}
}
#menu .box .selectList li{
  position: relative;
  margin-top: 20px;
  opacity: 0;
  animation: fade .8s forwards;
  display: flex;
}
#menu .box .selectList li:first-child{
  margin-top: 5px;
}
#menu .box .selectList li input{
  display: none;
}
#menu .box .selectList li label{
  display: inline-flex;
  cursor: pointer;
  width: 100%;
}
#menu .box .selectList li .img{
  position: relative;
  border-radius: 6px;
}
#menu .box .selectList li label .img::before{
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 6px;
  background-image: repeating-linear-gradient(0deg, #fff, #fff 7px, transparent 7px, transparent 14px, #fff 14px), repeating-linear-gradient(90deg, #fff, #fff 7px, transparent 7px, transparent 14px, #fff 14px), repeating-linear-gradient(180deg, #fff, #fff 7px, transparent 7px, transparent 14px, #fff 14px), repeating-linear-gradient(270deg, #fff, #fff 7px, transparent 7px, transparent 14px, #fff 14px);
  background-size: 3px calc(100% + 14px), calc(100% + 14px) 3px, 3px calc(100% + 14px) , calc(100% + 14px) 3px;
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-repeat: no-repeat;
  animation: borderAnimation 0.9s infinite linear;
}
@keyframes borderAnimation {
from { background-position: 0 0, -14px 0, 100% -14px, 0 100%; }
to { background-position: 0 -14px, 0 0, 100% 0, -14px 100%; }
}
#menu .box .selectList li label .img::before{
  pointer-events: none;
  opacity: 0;
}
#menu .box .selectList li :checked + label .img::before{
  opacity: 1;
}
#menu .box .selectList li label::before,
#menu .box .selectList li label::after{
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
#menu .box .selectList li label::before{
  left: 55px;
  top: -5px;
  width: 20px;
  height: 20px;
  background: #fff;
  z-index: 2;
  border-radius: 50%;
}
#menu .box .selectList li label::after{
  left: 60px;
  top: 0px;
  z-index: 2;
  width: 8px;
  height: 4px;
  border-left: 3px solid #000;
  border-bottom: 3px solid #000;
  transform: rotate(-45deg);
}
#menu .box .selectList li :checked + label::before,
#menu .box .selectList li :checked + label::after{
  opacity: 1;
}
#menu .box .selectList li img{
  width: 70px;
  align-self: top;
  border-radius: 6px;
}
#menu .box .selectList li .txt{
  width: calc(100% - 70px);
  padding: 0 10px;
  align-self: center;
}
#menu .box .selectList li .txt h3{
  font-size: 14px;
  color: #fff;
}
#menu .box .selectList li .txt p{
  font-size: 12px;
  color: #f4f4f4;
}
#menu .box .selectList li .info{
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  text-align: center;
  font-size: 0;
}
#menu .box .selectList li .info::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #F2F2F2;
  opacity: .3;
}
#menu .box .selectList li .info::after{
  content: "i";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 20px;
  font-size: 12px;
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: .6;
}
@media only screen and (max-width:960px) {
#menu{
  right: max(calc(-100vw + 55px),calc(-385px + 55px))!important;
  transform: translateX(0);
  transition: transform .5s;
  max-height: 100%;
  height: 100%;
}
#menu::before{
  right: max(calc(-100vw + 55px),calc(-385px + 55px));
  transform: translateX(0);
  transition: transform .5s;
  max-height: 100%;
  height: 100%;
}
#menu::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: .95;
}
#menu.active{
  transform: translateX(-100%);
}
#menuBtn{
  display: block;
  width: 55px;
  height: 55px;
  background: #fff;
  position: absolute;
  left: -55px;
  top: 0;
  cursor: pointer;
}
#menuBtn::before{
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  right: 15px;
  transform: rotate(-135deg);
}
#menuBtn.active::before{
  right: 23px;
  transform: rotate(45deg);
}
#menu .over{
  width: calc(100vw - 55px);
  max-width: 330px;
  max-height: 100%;
  height: 100%;
}
#menu .over .inner{
  padding: 15px;
  max-width: none;
  margin-top: -5px;
}
#menu .box .btn{
  padding: 20px 30px
}
#menu .box .btn h2{
  font-size: 13px;
}
#menu .box{
  margin-top: 5px;
}
#menu .box .selectList li{
  margin-top: 8px;
}
#menu .box .selectList li .txt{
  padding: 0 10px;
}
#menu .box .selectList li .txt h3,
#menu .box .selectList li .txt p{
  font-size: 13px;
}
}


/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
footer{
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 0 30px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
footer > *{
  pointer-events: auto;
}
footer .btnList ul{
  font-size: 0;
  padding-bottom: 5px;
}
footer .btnList ul li{
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}
footer .btnList ul li a,
footer .btnList ul li button{
  display: block;
  line-height: 38px;
  font-size: 12px;
  font-weight: bold;
}
footer .btnList ul li button .spOnly{
  display: none;
}
footer .btnList ul li#func_back a{
  display: block;
  width: 40px;
  height: 40px;
}
footer .btnList ul li .icon{
  display: inline-block;
  vertical-align: top;
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
}
footer .btnList ul li .func_bgmOn,
footer .btnList ul li .func_bgmOff{
  opacity: .5;
  font-weight: normal;
  cursor: pointer;
}
footer .btnList ul li .func_bgmOn.active,
footer .btnList ul li .func_bgmOff.active{
  opacity: 1;
}
footer .btnList ul li .selectBox{
  overflow: hidden;
	position: relative;
  border-radius: 8px;
}
footer .btnList ul li .selectBox .arrow{
	position: absolute;
	top: 0;
	right: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
}
footer .btnList ul li .selectBox .arrow div{
  height: 50%;
  cursor: pointer;
}
footer .btnList ul li .selectBox svg{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
footer .btnList ul li .selectBox::after{
  content: "";
  position: absolute;
  right: 2px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  pointer-events: none;
}
footer .btnList ul li .selectBox select{
  height: 40px;
  width: 100%;
  background: transparent;
  font-size: 12px;
  font-weight: bold;
  padding: 0 20px 0 40px;
	border: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
footer .cost{
  display: flex;
  align-items: center;
}
footer .cost .price{
  margin-right: 10px;
}
footer .cost .price > span{
  position: relative;
  top: -2px;
  display: block;
  font-size: 14px;
  line-height: 1;
}
footer .cost .priceInner > span{
  display: block;
  line-height: 1;
}
footer .cost .price p{
  font-size: 16px;
  line-height: 1;
}
footer .cost .price p span:first-child{
  vertical-align: middle;
}
footer .cost .price p strong{
  font-size: 24px;
}
footer .cost .btn button{
  background: #333;
  color: #fff;
  font-size: 14px;
  height: 40px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
footer .cost .btn button svg{
  content: "";
  vertical-align: middle;
  width: 12px;
  height: 14px;
  margin-right: 5px;
}
footer .copyright{
  position: relative;
  bottom: -5px;
  font-size: 0;
}
footer .copyright p{
  display: inline-block;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
}
footer .copyright p{
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
}
footer .copyright p + p::before{
  content: "｜";
  margin: 0 5px;
}
@media only screen and (min-width:960px) {
footer .btnList ul li{
  display: inline-block;
  min-width: 76px;
  vertical-align: top;
  text-align: center;
  margin-right: 0;
}
footer .btnList ul li#func_back{
  margin-top: 5px;
  margin-right: 10px;
  min-width: auto;
}
footer .btnList ul li a,
footer .btnList ul li button{
  display: block;
  width: 100%;
  line-height: normal;
}
footer .btnList ul li .icon{
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto -10px;
}
footer .btnList ul li .selectBox{
  display: inline;
}
footer .btnList ul li .selectBox svg{
  position: relative;
	content: "";
	display: block;
  width: 40px;
  height: 40px;
  pointer-events: none;
  margin: 0 auto -10px;
}
footer .btnList ul li .selectBox select{
  height: auto;
  width: auto;
  vertical-align: top;
  padding: 0 20px 0 0;
  line-height: 1.5;
}
footer .btnList ul li .selectBox::after{
    top: 33px;
}
}
@media only screen and (max-width:960px) {
footer .btnList{
  position: absolute;
  left: 18px;
  bottom: 85px;
}
footer .btnList{
  position: static;
  left: 0;
  bottom: 0;
}
footer .btnList ul{
  position: absolute;
  left: 20px;
  bottom: 100px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding-bottom: 0;
}
footer .cost{
  position: relative;
  justify-content: space-between;
  width: 100%;
}
footer .cost .price{
  padding: 0;
}
footer .cost .btn{
  padding: 0;
}
footer .copyright{
  position: absolute;
  left: 30px;
  bottom: 10px;
}
}
@media only screen and (max-width:767px) {
footer{
  padding: 0 15px 30px;
  display: block;
}
footer .btnList ul{
  left: 5px;
  bottom: 85px;
}
footer .btnList ul li{
  overflow: hidden;
  height: 30px;
}
footer .btnList ul li > *{
  position: relative;
  top: -5px;
}
footer .cost{
  margin-top: 10px;
}
footer .cost .price > span{
  font-size: 12px;
}
footer .cost .price p{
  font-size: 0;
}
footer .cost .price p strong{
  display: inline-block;
}
footer .cost .btn button{
  font-size: 13px;
  padding: 0 15px;
  line-height: 40px;
}
footer .copyright p{
  font-size: 11px;
}
footer .copyright{
  left: 15px;
}
}


/*------------------------------------------------------------
	UIcolor
------------------------------------------------------------*/
#menu .box{
  background: var(--uiColor);
}
#menu .box .selectList li label .img::before{
  background-image: repeating-linear-gradient(0deg, var(--uiTextColor), var(--uiTextColor) 7px, transparent 7px, transparent 14px, var(--uiTextColor) 14px), repeating-linear-gradient(90deg, var(--uiTextColor), var(--uiTextColor) 7px, transparent 7px, transparent 14px, var(--uiTextColor) 14px), repeating-linear-gradient(180deg, var(--uiTextColor), var(--uiTextColor) 7px, transparent 7px, transparent 14px, var(--uiTextColor) 14px), repeating-linear-gradient(270deg, var(--uiTextColor), var(--uiTextColor) 7px, transparent 7px, transparent 14px, var(--uiTextColor) 14px);
  background-size: 3px calc(100% + 14px), calc(100% + 14px) 3px, 3px calc(100% + 14px) , calc(100% + 14px) 3px;
}


/*------------------------------------------------------------
	load
------------------------------------------------------------*/
#menu .inner{
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1.0s,transform 1.0s;
  transition-delay: 1s;
}
.load #menu .inner{
  opacity: 1;
  transform: translateX(0);
}
#menuBtn{
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1.0s,transform 1.0s;
  transition-delay: 1s;
}
.load #menuBtn{
  opacity: 1;
  transform: translateX(0);
}