@import url("https://use.typekit.net/mea7mch.css");

html, body{
  margin: 0;
  padding: 0;
}

body{
  background-color: #000;
}

.ib{
  display: inline-block;
}

.fb{
  font-weight: bold;
}

a{
  text-decoration: none;
  color: unset;
}

a:hover{
  color: white;
}

.lg_textwrap{
  display: none;
}

#header {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  z-index: 999;
  justify-content: space-between;
}

.logo-container {
  width: 25%;
  padding-left: 5%;
}

.logo {
  margin: 0;
}

.logo img {
  width: inherit;
}

.spacer{
  width: 100%;
  height: 90px;
}

.g-nav {
  width: 50%;
  padding-right: 5%;
}

.g-nav-menu {
  width: 100%;
  display: flex;
  color: #ffffff;
  justify-content: flex-end;
  text-align: center;
  padding-right: 5%;

}

.slottextbtn:not(:first-child) {
  border-left: 1px solid #ffffff;
}

.slottextbtn {
  padding-left: 3.1%;
  padding-right: 3.1%;
  position: relative;
  display: inline-flex;
  justify-content: center;
  min-width: fit-content;
  width: 8%;
  height: 20px; /* 縦幅 */
  line-height: 20px; /* 行の高さ(heightと同じ値にする) */
  overflow-y: hidden; /* はみ出し部分を隠す */
  cursor: pointer; /* カーソルをポインターにする */
}

.slottext{
  position: absolute;
  color: white;
  transition: all 0.3s; /* アニメーション実行時間 */
}

/* ボタンのテキスト(デフォルトのテキスト) */
.slottext:nth-child(1) {
  top: 0;
  width: 100%;
}

.slottextbtn:hover .slottext:nth-of-type(1) {
  top: 100%;
}

/* ボタンのテキスト(隠れているテキスト) */
.slottext:nth-child(2) {
  top: -100%;
  width: 100%;
  color: #C1B096;
}

/* ボタンのテキスト(隠れているテキスト) */
.slottextbtn:hover .slottext:nth-of-type(2) {
  top: 0;
  width: 100%;
}


.humburgermenu-container {
  display: none;
}

.humburgermenu {
}

.video-container {
  /* margin-top: 90px; */
  width: 100%;
  /* height: calc(100vh - 90px); */
  height: 100vh;
}

video {
  width: 100%;
  height: calc(100vh - 90px);
  position: absolute;
}

/*スクロールダウン全体の場所*/
.scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 5%;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  /* left: -35px; */
  left: -25px;
  top: -20px;
  /*テキストの形状*/
  color: #eee;
  /* font-size: 1.25rem; */
  letter-spacing: 0.15em;
}

.video-container img{
  height: 100%;
  max-height: 480px;
  margin-top: 240px;
}

/* 線の描写 */
.scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /* left: 0; */
  left: 0;
  /*線の形状*/
  width: 1px;
  height: 15px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 80px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 180px;
    opacity: 0;
  }
}

/* concept */
#concept{
  width: 100%;
  padding-top: 210px;
  min-height: 1450px;
  background-color: #101010;
  position: relative;
  z-index: -1;
}

/* #concept::after{
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  height: 470px;
  background-image: url(../assets/images/geometric-lb.png);
  bottom: 0;
  left: 0;
} */

.section-header{
  width: fit-content;
  margin: 0 auto;
  font-size: 1.125rem;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  color: white;
  position: relative;
  padding-bottom: 0.85rem;
}

.section-header::after{
  content: "";
  position: absolute;
  left: calc(50% - 12px);
  bottom: -1px;
  /* width: 25%; */
  width: 24px;
  height: 1px;
  background-color: white;
}

.section-tit{
  width: 100%;
  display: inline-block;
  margin-top: 0.94em;
  margin-bottom: 0.84em;
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

.section-tit span{
  display: block;
  font-size: 0.9em;
  /* padding-top: 0.3em; */
}

.section-subtit{
  font-family: 'Yu Mincho';
  font-size: 1.5rem;
  color: #fff;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.section-desc{
  font-family: 'Yu Gothic';
  color: #fff;
  width: 85%;
  max-width: 1060px;
  margin: 0 auto;
  margin-top: 2.5em;
  text-align: center;
  line-height: 2;
  font-size: 1.1rem;
  word-break: keep-all;
}

.crubconcepts{
  display: flex;
  /* width: 65%; */
  width: 85%;
  margin: 0 auto;
  margin-top: 80px;
  justify-content: space-evenly;
  padding-bottom: 150px;
  max-width: 1280px;
}

.crubconcepts-img{
  width: 40%;
}

.crubconcepts-img img{
  width: 100%;
  display: inline-block;
}

.crubconcepts-concepts{
  width: 50%;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.crubconcepts-conceptol, .crubconcepts-concepttit{
  font-family: 'Cinzel', serif;
  margin-top: 30px;
}

.crubconcepts-conceptol{
  font-size: 1.15rem;
}

.crubconcepts-concepttit{
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  display: flex;
  justify-content: space-between;
}

.crubconcepts-concepttiten{
  font-size: 2.55rem;
  width: 50%;
}
.crubconcepts-concepttitja{
  font-size: 2.45rem;
  font-family: "游明朝";
  color: #5E5548;
  text-align: right;
  width: 40%;
}

.section-text{
  line-height: 2;
  padding-bottom: 30px;
  font-family: "Yu Gothic";
  border-bottom: 1px dotted #707070;
}

.section-text__last{
  border-bottom: none;
  padding-bottom: 0;
}

.geobg-lb{
  background-image: url('../assets/images/geometric-lb.png');
  background-repeat: no-repeat;
  width: 100%;
  height: 470px;
  position: absolute;
  bottom: 0;
  background-position: left;
}

/* concept ends*/

/* system */
#system{
  width: 100%;
  padding-top: 150px;
  position: relative;
  z-index: -2;
}

.skyscrapper-lb{
  width: 100%;
  height: 616px;
  position: absolute;
  bottom: -100px;
  z-index: -1;
}

.section-header_left{
  margin: 0 auto 0 20%;
}

.section-header_left::after{
  width: 50%;
  left: 0;
}

.system-container{
  width: 65%;
  margin: 0 auto;
  margin-top: 30px;
  padding-bottom: 85px;
  min-width: 1280px;
}

.system-img{
  text-align: center;
}

.system-img img{
  width: 70%;
  margin-bottom: 60px;
}

.system-centering{
  margin: 0 auto;
  width: 70%;
  min-width: 740px;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  text-shadow: 0 0 3em #000, 0 0 0.5em #000, 0 0 0.2em #000;
}

.system-conceptol{
  margin-top: 2rem;
  margin-right: 1.5rem;
}

.system-concepttit{
  display: block;
  margin-top: 1.8rem;
}

/* lsp */

#lsp{
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
  min-height: 1150px;
  background-color: #131313;
  position: relative;
  z-index: -5;
}

.supportplan-container{
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  max-width: 1280px;
}

.supportplan-img{
  width: fit-content;
  width: 45%;
}

.supportplan-img img{
  width: 100%;
  display: inline-block;
}

.supportplan-txt{
  font-family: 'Yu Gothic';
  width: 45%;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.txt_yellow{
  color: #EEB92A;
}

.pickup-service{
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Yu Mincho';
}

.pickup-txt{
  line-height: 2;
  margin-top: 20px;
}

.lsp-header::after{
  left: 3.85em;
  width: 15%;
}

.lsp-centering{
  margin: 0 auto;
  width: 100%;
}

.foot-rb{
  position: absolute;
  right: 0;
  bottom: 15%;
  z-index: -5;
}


/* mlsp */

#mlsp{
  width: 100%;
  padding-top: 98px;
  padding-bottom: 120px;
  /* min-height: 805px; */
  height: auto;
  position: relative;
  z-index: -2;
  text-align: center;
}

#mlsp:before{
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    width: 100%;
    height: 470px;
    background-image: url('../assets/images/geometric-lb.png');
    bottom: 0;
    left: 0;
}

#mlsp:after{
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  width: 505px;
  height: 380px;
  display: block;
  background-image: url('../assets/images/geometric-rt.png');
  right: 0;
  top: 0;
}

.mlsp-container{
  display: block;
  position: relative;
  margin: 0 auto;
  margin-top: 40px;
  width: 75%;
  /* height: 805px; */
  text-align: center;
}

.mlsp-triangle{
  position: relative;
  width: 100%;
  display: block;
}

.mlsp-triangle{
  content: "";
  display: inline-block;
  text-align: center;
  width: fit-content;
  border-style: solid;
  border-color: #C1B096 transparent transparent transparent;
  border-width: 25px 27.5px 0 27.5px;
}

.mlsp-header{
  width: 100%;
  position: relative;
}

.mlsp-tit{
  text-align: center;
  color: #fff;
  font-size: 4rem;
  font-family: 'Cinzel', serif;
  position: absolute;
  left: 30%;
  margin-top: 55px;
}

.mlsp-titja{
  text-align: center;
  color: #fff;
  font-size: 3.2rem;
  font-family: 'Yu Mincho';
  position: relative;
  left: 42%;
  margin-top: 125px;
}

/* .concept-header{
  font-size: 1.25rem;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  color: white;
  position: relative;
  padding-bottom: 0.85rem;
  display: inline;
  padding-top: 60px;
} */

/* .concept-header::after{
  content: "";
  position: absolute;
  left: 43%;
  bottom: -1px;
  width: 15%;
  height: 1px;
  background-color: white;
} */

.concept-tit{
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  color: #fff;
  padding-top: 85px;
}

.concept-subtit{
  color: white;
  padding-top: 10px;
  font-size: 3rem;
  font-family: 'Yu mincho';
}

/* .merit-container{
  width: 100%;
  min-height: 365px;
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
  padding-top: 55px;
} */

.merit-container{
  display: flex;
  justify-content: space-between;
  max-width: 1156px;
  margin: 0 auto;
}

/* .merit-circle{
  display: block;
  width: 365px;
  height: inherit;
  color: white;
  background-color: hsla(34, 19%, 37%, 0.65);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: normal;
  aspect-ratio: 1 / 1;
  box-shadow: inset 0 0 15px 25px rgba(0, 0, 0, 0.95);
  position: relative;
  z-index: 1;
  border-radius: 50%;
} */

.merit-circle{
  position: relative;
  width: 32%;
  padding-top: 32%;
  color: #fff;
  /* background-color: hsla(34, 19%, 37%, 0.65); */
  background: radial-gradient(rgba(112,97,77,100%) 0%, rgba(83,75,62,83%) 55%, #000 75%);
  /* box-shadow: inset 0 0 15px 25px rgba(0, 0, 0, 0.95); */
  border: 2px dotted white;
  border-radius: 50%;
  max-width: 365px;
}

.merit-circle-inner{
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);

}

/* .merit-circle::after{
  content: "";
  position: absolute;
  border: 2px dotted white;
  top: -5px;
  right: -5px;
  left: -5px;
  bottom: -5px;
  border-radius: 50%;
} */


.circle-num{
  font-family: 'Cinzel', serif;
  /* font-size: 64px; */
  font-size: clamp(50px, 7vw, 64px) ;
  color: #EEB92A;
  opacity: 50%;
  margin-bottom: 0.2em;
}

.circle-text{
  font-size: clamp(11px, 1.2vw, 18px);
  line-height: 1.5;
  font-family: 'Yu Mincho';
}


/* entry plan */

#pricing{
  width: 100%;
  padding-top: 98px;
  padding-bottom: 120px;
  min-height: 805px;
  height: auto;
  position: relative;
  z-index: -2;
  text-align: center;
}

/*
.pricing-header{
  font-size: 1.25rem;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  color: white;
  position: relative;
  padding-bottom: 0.85rem;
  display: inline;
  padding-top: 60px;
}

.pricing-header::after{
  content: "";
  position: absolute;
  left: 43%;
  bottom: -1px;
  width: 30%;
  height: 1px;
  background-color: white;
}

.pricing-tit{
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  color: #fff;
  padding-top: 85px;
} */

.pricing-thr{
  width: 100%;
}

.pricing-table{
  width: 90%;
  color: #fff;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: 'Yu mincho';
  /* min-width: 1170px; */
  max-width: 1245px;
}

.pricing-thead{
  width: 100%;
  height: 64px;
  display: inline-flex;
  margin: 0 auto;
  justify-content: flex-end;
}

.pricing-body{
  width: 100%;
  display: flex;
  /* justify-content: center; */
  align-items: flex-end;
  margin: 0 auto;
  flex-wrap: wrap;
}

.pricing-th-box{
  display: flex;
  flex-direction: column;
  text-align: left;
  /* width: fit-content; */
}

.pricing-th{
  display: block;
  font-size: 1rem;
  padding: 1.8rem;
  /* height: 33.85px; */
  border-bottom: 1px dotted #fff;
	line-height: 1.5;
}

.pricing-th-height{
	height: 3.9rem;
	display: flex;
    align-items: center; /* 上下中央 */
}

.pricing-th-height-sec{
	height: 2.7rem;
	display: flex;
    align-items: center; /* 上下中央 */
}

.pricing-td-height-sec{
	height: 6.35rem;
	display: flex;
    align-items: center; /* 上下中央 */
}

.pricing-td{
  border-bottom: 1px dotted #fff;
  display: block;
  font-size: 1rem;
  padding: 1.8rem;
  /* height: 95px; */
  box-sizing: border-box;
  border-collapse:collapse;
	line-height: 1.5;
}

.pricing-td-txt{
	display: block;
	font-size: 0.8rem;
}

.pricing-size-s{
	font-size: 1.3rem;
}

@media screen and (max-width: 768px){
	.pricing-size-s{
		font-size: 1rem;
	}
}

.last-th{
  border-bottom: none;
}

.last-td{
  border-bottom: none;
}

.pricing-td-box{
  width: 20%;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1 0 auto;
}

.pricing-td-planname{
  background-color: #3A352D;
  height: 70px;
  margin: 0 auto;
  width: 100%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: polygon(0% 0%, 100% 0, 100% 60%, 50% 100%, 0 60%);
}
.pricing-td-planname.jack{
  background-color: #3A352D;
}
.pricing-td-planname.queen{
  background-color: #6D5E46;
}
.pricing-td-planname.king{
  background: linear-gradient(60deg, #E4B93A, #FAE578 20%, #E0AD26 40%, #E0AD26 60%, #FAE474 80%, #E9C243 90%);
}
.pricing-td-planname::before{
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #F5E0C0;
  position: absolute;
  top: 2px;
  left: 0;
}

.pricing-td-planname small{
  display: block;
  font-size: 70%;
  margin-top: 8px;
}


/* .pricing-td-box:first-child{
  margin-top: 300px;
}

.pricing-td-box:nth-of-type(2)::before{
  content: "";
  display: block;
  position: absolute;
  background-image: url("../assets/images/jack.png");
  width: 100%;
  top: -60px;
  left: 0;
  background-repeat: no-repeat;
  background-size: 98%;
  height: 60px;
  background-position: center;
}

.pricing-td-box:nth-of-type(3)::before{
  content: "";
  display: block;
  position: absolute;
  background-image: url("../assets/images/queen.png");
  width: 100%;
  top: -60px;
  left: 0;
  background-repeat: no-repeat;
  background-size: 98%;
  height: 60px;
  background-position: center;
}

.pricing-td-box:nth-of-type(4)::before{
  content: "";
  display: block;
  position: absolute;
  background-image: url("../assets/images/king.png");
  width: 100%;
  top: -60px;
  left: 0;
  background-repeat: no-repeat;
  background-size: 98%;
  height: fill;
  max-height: 60px;
  height: -webkit-fill-available;
  background-position: center;
} */

.pricing-td-boxr{
  width: 20%;
}

.admissionfee{
  font-size: 2rem;
  color: #F5E0C0;
}

.last-row{
  background-color: #5E5548;
}

.last-th{
  color: #EEB92A;
  /* height: 35px; */
}

.last-th .pricing-th{
  height: 34.85px;
}

.pricing-anotation{
  width: 90%;
  line-height: 1.5;
  margin: 0 auto;
  display: block;
  text-align: left;
  color: #fff;
  font-size: 15px;
  /* min-width: 1170px; */
  max-width: 1245px;
}

.pricing-anotaion-inner{
  margin: 0 auto;
  border-bottom: 1px solid #707070;
  padding-bottom: 80px;
}

.l-support{
  display: block;
  width: fit-content;
  margin: 0 auto;
  margin-top: 40px;
  padding: 1em 2em;
  font-family: 'Cinzel', serif;
  background-color: #5E5548;
  color: #fff;
}

.additional-price{
  display: flex;
  width: 25%;
  color: #fff;
  font-family: 'Yu Mincho';
  font-size: 1.5rem;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 30px;
  align-items: center;
  justify-content: space-evenly;
}

.additional-monthly{
  color: #F5E0C0;
  font-size: 2rem;
}

.additional-anotation{
  color: #fff;
}

.cc-support{
  padding-bottom: 120px;
}

.cc-supoort-box{
  width: 70%;
  height: 300px;
  margin: 0 auto 50px;
  position: relative;
  font-family: 'Yu Mincho';
  line-height: 2.5;
  background-color: #2A2825;
  /* background-clip: border-box;
  background:
    linear-gradient(45deg,  transparent 50px, #2A2825 50px),
    linear-gradient(135deg, transparent 0, #2A2825 0),
    linear-gradient(225deg, transparent 50px, #2A2825 50px),
    linear-gradient(315deg, transparent 0, #2A2825 0);
  background-position: bottom left, top left, top right, bottom right;
  background-size: 50% 50%;
  background-repeat: no-repeat; */
  border: 1px solid #F5E0C0;
  position: relative;
}

.cc-supoort-box:before{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: -2px;
  right: -2px;
  border-style: solid;
  border-width: 0 70px 70px 0;
  border-color: transparent #050505 transparent transparent;
  position: absolute;
  /* width: 5px; */
  height: 2px;
  z-index: 2;
}

.cc-supoort-box:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: -1px;
  bottom: -1px;
  border-style: solid;
  border-width: 70px 0 0 70px;
  border-color: transparent transparent transparent #000000;
}

.wesupport{
  color: #fff;
  font-size: 1.8rem;
  margin: 0 auto;
  line-height: 1.5;
  text-align: center;
  padding-top: 30px;
  position: relative;
}

.wesupport::before{
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  right: 0px;
  top: 0;
  border-top: 35px solid #F5E0C0;
  border-right: 35px solid #F5E0C0;
  border-left: 35px solid transparent;
  border-bottom: 35px solid transparent;
}

.support-target-container{
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  margin: 50px auto 0;
}

.support-target-container::before{
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  left: 0px;
  bottom: 0;
  border-top: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 35px solid #F5E0C0;
  border-left: 35px solid #F5E0C0;
}

.support-target{
  position: relative;
  width: 42%;
  padding-left: 8%;
  color: #fff;
  white-space: nowrap;
}

.support-target::before{
  content: "";
  position: absolute;
  display: inline-block;
  width: 40px;
  height: fill-available;
  height: -webkit-fill-available;
  background-repeat: no-repeat;
  background-image: url("../assets/images/checkedbox.png");
  left: -5px;
}

.releasenote{
  display: block;
  height: fit-content;
  font-size: 2.5rem;
  margin: 50px auto;
  text-align: center;
  color:#FEAC30;
  text-decoration: underline;
  font-family: 'Yu Mincho';
  line-height: 1.3;
}

.releasenote span{
  text-decoration: underline;
}

.formctabtn{
  display: block;
  width: 25%;
  text-align: center;
  padding: 30px;
  text-align: center;
  color: #fff;
  background-color: #947A53;
  border: 1px solid #fff;
  margin: 0 auto;
  font-size: 1.4rem;
  font-family: 'Yu Mincho';
  position: relative;
}

.formctabtn::after{
  content: "\27A4";
  position: absolute;
  right: 0.4em;
  color: #fff;
  font-size: 1.25rem;
  transform: scaleX(0.75);
}

.trade-low-section{
  width: 100%;
  color: #fefefe;
  background-color: black;
  height: auto;
  margin: 0 auto;
}

.subpage-tit{
  font-size: 2rem;
  text-align: center;
}

.trade-low-contents{
  width: 70%;
  display: block;
  margin: 0 auto;
  padding: 150px 0;
}

.trade-low-contents table tbody{
  width: 100%;
}

.trade-low-contents table{
  display: table;
  margin: 0 auto;
  margin-top: 50px;
}

.trade-low-contents table tr{
  height: auto;
  padding: 30px 0;
  display: flex;
  text-align: left;
  align-items: center;
  border-bottom: 1px solid white;
}

.trade-low-contents table th{
  width: 20%;
  padding: 0 5%;
  line-height: 1.5;
}
.trade-low-contents table td{
  width: 60%;
  line-height: 2;
}

.trade-low-contents table td ul{
  list-style-type: disc;
  padding-left: 1.5rem;
}

/* #formWrap {
  width: 80%;
  margin:0 auto;
  color: #fefefe;
  line-height:120%;
  font-size:90%;
}

.form-descript{
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.125rem;
  color: white;
}

.form-descript p{
  word-break: keep-all;
  line-height: 1.5;
}

.form-btn-container{
  display: block;
  width: 60%;
  margin: 0 auto;
  text-align: center;
  margin-top: 40px;
}

table.formTable{
  width:100%;
  margin:0 auto;
  border-collapse:collapse;
}

table.formTable input{
  height: 15px;
}

table.formTable td,table.formTable th{
  padding:10px;
}

table.formTable td{
  padding: 0 20px;
  line-height: 3;
  word-break: keep-all;
}

table.formTable th{
  width: 20%;
  font-weight:normal;
  color: #efefef;
  text-align:left;
  background-color: #707070;
}

td.ziparea{
  width: 100%;
}

td.ziparea div{
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

td.ziparea span{
  display: inline-block;
  width: 30%;
}

td.ziparea input{
  display: inline-block;
  width: 70%;
}

.ziparea{
  display: flex;
  flex-direction: column;
} */

.privacy-content{
  width: 100%;
  line-height: 2;
  margin: 0 auto;
  margin-top: 60px;
}

.privacy-content h3{
  font-size: 1.5rem;
}

.privacy-contatarea{
  background-color: #707070;
  border-radius: 10px;
  padding: 30px;
  border: 5px solid #404040;
}

/* system ends */

#footer{
  width: 100%;
  height: auto;
  /* min-height: 385px; */
  height: auto;
  /* position: relative; */
  border-top: 1px solid #707070;
  padding-top: 60px;
}

.footer-address-tit{
  font-size: 1.8rem;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  font-family: 'Yu Mincho';
  color: white;
  position: relative;
  padding-bottom: 0.85rem;
  /* padding-top: 60px; */
}

.footer-address-tit::after{
  content: "";
  position: absolute;
  left: 2.3em;
  width: 25%;
  bottom: 0;
  height: 1px;
  background-color: white;
}

.footer-address-info{
  width: 35%;
  /* height: 150px; */
  margin: 0 auto;
  /* background: rgb(180, 115, 115); */
  margin: 40px auto 60px;
}

.footer-info-line{
  display: flex;
  color: #fff;
  font-family: 'Yu Mincho';
  text-align: center;
  font-size: 1rem;
}

.footer-info-line:not(:first-child){
  margin-top: 15px;
}

.footer-info-tit{
  width: 30%;
  line-height: 1.5;
}

.footer-info-desc{
  width: 70%;
  text-align: left;
  line-height: 1.5;
}

.copy{
  width: 100%;
  /* height: fit-content; */
  /* bottom: 0; */
  /* z-index: 10; */
  /* position: absolute; */
  background-color: #1e1e1e;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9375rem;
}

.copywrite{
  font-size: 0.9rem;
  line-height: 1.4;
}

.link-container{
  width: 90%;
  height: inherit;
  margin: 0 auto;
  display: flex;
  color: #fff;
  justify-content: space-between;
  align-items: center;
}

.site-link{
  text-decoration: underline;
}

.site-link:not(:first-child){
  margin-left: 30px;
}

.br-lessmd{
  display: none;
}

.br-lesssm{
  display: none;
}

/* .contact-contents{
  width: 85%;
  margin: 0 auto;
  padding-top: 150px;
} */


#topbtn{
  width: 48px;
  height: 48px;
  display: block;
  position: fixed;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 99999;
}

#topbtn::after{
  content: "▲";
  color: #fff;
  position: absolute;
  left: 16px;
  top: 16px;
}

.fix-parent{
  height: inherit;
  display: inline-block;
  position: relative;
}

.fix-parent2{
  height: inherit;
  display: inline-block;
  position: relative;
}

.sidefix{
  top: 0%;
  position: absolute;
  display: inline-block;
}

.sidefix2{
  top: 0%;
  position: absolute;
  display: inline-block;
}

@media screen and (max-width: 1366px){
  .system-container {
    width: 75%;
    min-width: unset;
  }

  /* .merit-circle{
    width: 320px;
    min-width: 320px;
  } */

  /* .merit-container{
    min-height: 320px;
  } */

  .mlsp-container{
    width: 90%;
  }

  /* .circle-text {
    font-size: 1rem;
  } */

  .additional-price {
    width: 40%;
  }
}


@media screen and (max-width: 1024px) {
    .br-onlypc{
      display: inline;
    }

  .foot-rb{
    position: absolute;
    right: 0.5%;
    bottom: -5%;
    text-align: end;
  }

  .section-subtit{
    font-size: 1.125rem;
  }

  .pricing-table{
    width: 85%;
    min-width: auto;
  }

  .pricing-thead{
    display: none;
  }

  .g-nav {
    /* display: none; */
  }

  .logo {
    margin: 0;
    width: 230px;
  }

  .slottextbtn{
    width: 12%;
  }

  .g-nav-menu{
    padding-right: 5.5%;
    padding-left: 5.5%;
  }

  .crubconcepts{
    flex-direction: column;
    margin-top: 40px;
  }

  .crubconcepts-img {
    width: 65%;
    margin: 0 auto;
  }


  .crubconcepts-concepts{
    width: 90%;
    margin: 0 auto;
  }

  .section-desc{
    width: 90%;
    word-break: break-all;
  }

  #system {
    padding-top: 320px;
  }

  .system-img img{
    margin-bottom: 0;
  }

  .section-text{
    font-size: 0.87rem;
  }

  .lg_textwrap{
    display: inline;
  }

  .supportplan-container{
    flex-direction: column;
  }

  .supportplan-txt{
    width: 100%;
  }

  .support-target-container{
    width: 55%;
  }

  .supportplan-img {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 60px;
}

  .crubconcepts-concepts {
    width: 100%;
  }

  .crubconcepts-concepttiten{
    font-size: 2.25rem;
    width: 50%;
  }
  .crubconcepts-concepttitja{
    font-size: 2.15rem;
    font-family: "游明朝";
    color: #5E5548;
    text-align: right;
    width: 40%;
    word-break:keep-all
  }

  .pricing-td-box {
    margin-bottom: 3rem;
  }

  .pricing-td{
    font-size: 1.15rem;
    text-align: right;
  }

  .pricing-td::before{
    content: attr(label);
    float: left;
    font-family: "游明朝";
    color: white;
    font-size: 1.2rem;
  }

  .pricing-anotation{
    width: 78%;
    min-width: auto;
  }

  .admissionfee {
    font-size: 1.5rem;
  }

  .last-td::before{
    color: #EEB92A;
    font-size: 1.2rem;
  }

  .system-container {
    width: 85%;
    min-width: unset;
  }

  .system-img img {
    width: 100%;
  }

  .system-centering{
    width: 100%;
    margin: 0;
    min-width: auto;
  }

  .pickup-txt{
    width: 100%;
  }

  .skyscrapper-lb {
    top: 100px;
    width: 75%;
  }

  .section-header_left {
    margin: 0 auto 0 10%;
  }

  .section-header {
    font-size: 1.25rem;
  }

  .supportplan-container {
    width: 85%;
  }

  .mlsp-container{
    width: 85%;
    /* height: 1200px; */
  }

  /* .merit-container{
    align-items: center;
    flex-direction: column;
    height: inherit;
  } */

  .section-tit{
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
  }

  .cc-supoort-box{
    height: 290px;
  }

  .support-target::before {
    left: -10px;
  }

  .additional-price{
    width: 55%;
  }

  .logo-container {
    padding-left: 5%;
  }

  .g-nav {
    width: 55%;
  }

  .g-nav-menu {
    justify-content: space-around;
  }

  .releasenote {
    font-size: 2.25rem;
    width: 70%;
  }



  .pricing-tr th{
    display: none;
  }

  .pricing-th-box{
    display: none;
  }

  .pricing-td-box {
    width: 100%;
  }

  /* .pricing-td-box:nth-child(n + 3){
    margin-bottom: 160px;
  } */

  /* .pricing-td-box:nth-of-type(2)::before{
    content: "";
    background-image: url("../assets/images/jack768.png");
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
    max-height: 105px;
    height: 105px;
  }
  .pricing-td-box:nth-of-type(3)::before{
    content: "";
    background-image: url("../assets/images/queen768.png");
    background-repeat: no-repeat;
    background-size: contain;
    max-height: 105px;
    height: 105px;
  }
  .pricing-td-box:nth-of-type(4)::before{
    content: "";
    background-image: url("../assets/images/king768.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    max-height: 105px;
    height: 105px;
  } */

  /* .pricing-td{
    padding: 2.15em 1em;
  } */



  #mlsp{
    /* min-height: 2450px; */
    z-index: -10;
  }

  /* .merit-circle{
    width: 80%;
    height: auto;
    margin-bottom: 30px;
  } */
  /* .merit-circle:last-child{
    margin-bottom: none;
  } */

  .formctabtn {
    width: 40%;
  }

  .link-left{
    align-items: center;
    margin-bottom: 24px;
  }

  .site-link:not(:first-child) {
    margin-left: 0;
    margin-top: 1rem;
  }

  .support-target-container {
    width: 55%;
  }

  .cc-supoort-box{
    width: 85%;
  }

  .link-container{
    flex-direction: column;
  }

  .link-left{
    display: flex;
    flex-direction: column;
  }

  /* #footer{
    min-height: 435px;
  } */

  .br-lessmd{
    display: none;
  }

  .br-lesspc{
    display: inline;
  }

  .copy{
    font-size: 0.875rem;
  }

  .copywrite{
    font-size: 0.8rem;
  }

  .sidefix, .sidefix2 {
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  #header{
    justify-content: space-between;
  }

  #g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 998;
    top: 90px;
    right: -120%;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    display: block;
    background:rgba(0, 0, 0, 0.85);
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive{
    right: 0%;
    padding: 0;
  }

  #g-nav .g-nav-menu{
      flex-direction: column;
      margin-top: 70px;
      padding: 0;
  }

  #g-nav .g-nav-menu .slottextbtn{
    border-left: none;
    text-align: center;
    margin: 0 auto;
    height: 100px;
    line-height: 100px;
  }

  #g-nav.panelactive .g-nav-menu .slottextbtn::after{
    content: "";
    width: 75%;
    border-bottom: 1px solid white;
  }

  #g-nav.panelactive .g-nav-menu .slottextbtn{
    border: none;
    height: 100px;
    line-height: 100px;
  }

  #g-nav.panelactive .g-nav-menu .slottextbtn:not(:first-child){
    border-left: none;
  }

  #g-nav.panelactive .g-nav-menu .slottextbtn:last-child{
    border-bottom: none;
  }

  .system-centering{
    flex-direction: column;
  }

  .system-concepttit{
    margin-top: 1.25rem;
  }

  /* #mlsp{ */
    /* min-height: 1950px; */
  /* } */


  .logo-container{
    width: 75%;
    padding-left: 5%;
  }

  .humburgermenu-container {
    display: block;
    width: 12%;
    min-width: 100px;
    height: 60px;
  }

  .humburgermenu {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    cursor: pointer;
  }

  .humburgermenu {
    display: block;
    width: 80px;
    height: 60px;
    position: relative;
    cursor: pointer;
  }

  .humburgermenu span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    right: 20px;
    top: 10px;
    height: 2px;
    background-color: white;
  }

  .humburgermenu span:nth-of-type(1) {
    top: 20px;
    width: 50%;
  }

  .humburgermenu span:nth-of-type(2) {
    top: 35px;
    width: 50%;
  }

  /*activeクラスが付与されると線が回転して×に*/

  .humburgermenu.active span:nth-of-type(1) {
    top: 20px;
    right: 20px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }

  .humburgermenu.active span:nth-of-type(2) {
    top: 32px;
    right: 20px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
  }

  /* .merit-circle{
    width: 90%;
  } */

  .merit-container{
    display: block;
  }

  .merit-circle{
    width: 100%;
    padding-top: 100%;
    max-width: none;
    margin-bottom: 30px;
  }

.circle-num{
  font-size: clamp(50px, 60vw, 64px) ;
}

.circle-text{
  font-size: clamp(12px, 4vw, 18px);
}

  .pricing-tr th{
    display: none;
  }

  .pricing-td-box {
    width: 100%;
  }

  .pricing-td-box:last-child{
    margin-bottom: 0;
  }

  /* .pricing-td-box:nth-of-type(2)::before{
    content: "";
    background-image: url("../assets/images/jack768.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .pricing-td-box:nth-of-type(3)::before{
    content: "";
    background-image: url("../assets/images/queen768.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .pricing-td-box:nth-of-type(4)::before{
    content: "";
    background-image: url("../assets/images/king768.png");
    background-repeat: no-repeat;
    background-size: contain;
  } */

  .pricing-td-box:first-child{
    margin-top: 0px;
  }


  .additional-price{
    width: 80%;
  }

  .pricing-anotaion-inner{
    width: 100%;
  }

  .additional-anotation{
    width: 70%;
    display: inline-block;
    margin: 0 auto;
  }

  .cc-supoort-box{
    height: auto;
  }

  .wesupport{
    width: 100%;
  }

  .support-target-container{
    justify-content: center;
    margin-top: 15px;
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    text-align: left;
    margin-top: 30px;
    padding-bottom: 30px;
  }

  .support-target {
    position: relative;
    width: 50%;
    padding-left: 10%;
  }

  .footer-address-info {
    width: 50%;
  }

  .br-lessmd{
    display: inline;
  }

  .additional-anotation{
    color: #fff;
    line-height: 1.5;
  }

  .privacy-content{
    width: 100%;
  }

  .trade-low-contents table tr{
    flex-direction: column;
    padding: 0;
    border-bottom: 2px solid #fff;
  }

  .trade-low-contents table th{
    width: 100%;
    border-bottom: 1px dotted #fff;
    font-weight: bold;
    padding: 20px 0;
  }

  .trade-low-contents table td{
    width: 100%;
    padding: 15px 0;
  }
}

@media screen and (max-width: 480px) {
  #header {
    height: 60px;
  }

  /* #footer {
    min-height: 480px;
  } */

  #topbtn{
    width: 48px;
    height: 48px;
    display: block;
    position: fixed;
    right: 15px;
    bottom: 15px;
    border: 1px solid #fff;
    border-radius: 50%;
    z-index: 99999;
  }

  #topbtn::after{
    content: "▲";
    color: #fff;
    position: absolute;
    left: 16px;
    top: 16px;
  }

  .slottextbtn{
    height: 90px;
  }

  .releasenote {
    font-size: 2rem;
    width: 90%;
  }

  .footer-address-tit {
    font-size: 1.25rem;
    /* padding-top: 50px; */
  }

  /* .merit-circle{
    width: 90.5%;
    min-width: 240px;
    max-width: 365px;
  } */

  /* .circle-text{
    word-break: keep-all;
    font-size: 1rem;
  } */

  #pricing{
    padding-bottom: 80px;
  }

  .pricing-td {
    display: inline-flex;
    justify-content: space-between;
    text-align: initial;
    word-break: keep-all;
    text-align: right;
    line-height: 1.5;
    align-items: center;
  }

  .pricing-anotation {
    width: 78%;
    line-height: 1.5;
    margin: 0 auto;
    display: block;
    text-align: left;
    color: #fff;
  }

  .pricing-anotaion-inner{
    border-bottom: 1px solid #707070;
    padding-bottom: 80px;
  }

  .pricing-td {
    font-size: 0.9375rem;
    padding: 1.15em 1em;
    height: 80px;
}

  .pricing-td::before {
    text-align: left;
    font-size: 0.9375rem;
  }



  /* .pricing-td-box:nth-child(n + 3) {
    margin-top: 100px;
  } */

  .section-tit {
    font-size: 1.85rem;
  }

  .crubconcepts-img{
    width: 100%;
  }

  .system-img{
    width: 100%;
  }

  .supportplan-img {
    width: 100%;
  }

  .formctabtn {
    width: 70%;
    font-size: 1.25rem;
  }

  .support-target {
    width: 80%;
    max-width: 220px;
    font-size: 1.125rem;
    padding-left: 10%;
    white-space: initial;
  }

  .support-target::before {
    width: 25px;
    background-size: 25px;
    left: 0;
    top: 8px;
  }

  .support-target-container {
    width: 100%;
    padding-bottom: 55px;
  }

  .wesupport {
    padding-top: 55px;
  }

  .l-support{
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    width: fit-content;
    padding: 0.75em 1em;
  }

  .footer-address-info {
    width: 85%;
  }

  /* .foot-rb{
    right: -30px;
  } */

  .subpage-tit {
    font-size: 1.4rem;
  }

  .privacy-content{
    font-size: 0.85rem;

  }

  .trade-low-contents h3{
    font-size: 1.125rem;
  }

  .trade-low-contents {
    width: 85%;
  }

  /* .contact-contents{
    padding-top: 100px;
    background-color: ;
  }

  .contact-contents{
    width: 100%;
  } */

  .foot-rb img{
    width: 70%;
  }

  .g-nav {
    display: none;
  }

  #g-nav {
    position: fixed;
    z-index: 998;
    top: 60px;
  }

  #g-nav.panelactive .g-nav-menu .slottextbtn{
    width: 15%;
  }

  #mlsp{
    /* min-height: 1600px; */
    padding-top: 140px;
  }


  .logo-container{
    width: 85%;
    padding-left: 5%;
  }

  .crubconcepts-concepttitja{
    width: 50%;
  }

  .logo img {
    height: 30px;
  }

  .humburgermenu-container {
    display: block;
    width: 15%;
    min-width: 80px;
    height: 60px;
  }

  .humburgermenu {
    display: block;
    width: 80px;
    height: 60px;
    position: relative;
    cursor: pointer;
  }

  .humburgermenu span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    right: 20px;
    top: 10px;
    height: 2px;
    background-color: white;
  }

  .humburgermenu span:nth-of-type(1) {
    top: 25px;
    width: 40%;
  }

  .humburgermenu span:nth-of-type(2) {
    top: 35px;
    width: 40%;
  }

  /*activeクラスが付与されると線が回転して×に*/

  .humburgermenu.active span:nth-of-type(1) {
    top: 20px;
    right: 20px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
  }

  .humburgermenu.active span:nth-of-type(2) {
    top: 32px;
    right: 20px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
  }

  #g-nav.panelactive .g-nav-menu .slottextbtn {
    height: 80px;
  }

  .crubconcepts-concepttiten{
    font-size: 1.625rem;
    width: 50%;
  }
  .crubconcepts-concepttitja{
    font-size: 1.65rem;
    font-family: "游明朝";
    color: #5E5548;
    text-align: right;
    width: 40%;
  }

  .concept-tit{
    font-size: 2.4rem;
  }

  .concept-subtit{
    color: white;
    padding-top: 10px;
    font-size: 2.2rem;
  }

  .wesupport {
    width: 100%;
  }

  .additional-price{
    height: 70px;
    justify-content: space-between;
    flex-direction: column;
  }

  .admissionfee {
    font-size: 1.35rem;
  }

  .cc-supoort-box{
    width: 85%;
    font-family: 'Yu Mincho';
    line-height: 2.5;
    background-color: #2A2825;
  }

  .br-lesssm{
    display: inline;
  }

  .copy{
    text-align: center;
  }

  .copywrite{
    font-size: 0.875rem;
  }

  .skyscrapper-lb img{
    width: 100%;
  }

  video {
    width: 100%;
    height: calc(100vh - 60px);
  }

  .video-container {
    /* margin-top: 60px; */
    width: 100%;
    height: calc(100vh - 60px);
  }

  #video img{
    width: 40% !important;
    max-height: 220px;
    margin-top: 140px !important;
  }
}

@media screen and (max-width: 320px){
  #video img{
    width: 40% !important;
    margin-top: 90px !important;
  }
}

.error-tit{
  margin-top: 3rem;
  font-size: 3rem;
  text-align: center;
}

.error-text{
  margin-top: 3rem;
  text-align: center;
  margin-bottom: 12vh;
}
