@charset "UTF-8";

html {
  font-weight: normal;
  height: 100%;
}

body {
  font-family: "a-otf-ryumin-pr6n", "a-otf-gothic-mb101-pro";
  color: #fff;
  background: #fff;
  font-style: normal;
  font-size: 18px;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
}

/*コンテンツ幅の設定*/
.container {
  width: 1200px;
  margin: auto;
}

article {
  background: url("../img/bg_top.jpg") 0 0 no-repeat,
    -webkit-gradient(linear, left top, right bottom, from(#000),
      to(#000));

  background: url("../img/bg_top.jpg") 0 0 no-repeat,
    -ms-linear-gradient(top, #000, #000);

}



/*////////////////////////////////////////
　　　　　　　　　　    header
////////////////////////////////////////*/
header {
  padding-top: 35px;
}

h1,
.hd_right {
  width: 44%;
  display: inline-block;
}

h1 {
  margin-left: 87px;
}

.hd_right {
  margin-right: 50px;
  text-align: right;
}


/*    nav     */
.hd_nav {
  background: url("../img/bg_hd.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 32px;
  height: 90px;
}

.hd_nav ul {
  width: 1200px;
  margin: auto;
  padding-top: 15px;
  display: flex;
  text-align: center;
  justify-content: center;
}

.hd_nav ul li {
  font-size: 16px;
  padding: 1px;
  width: 150px;
  height: 62px;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #ab9550), color-stop(0.72, #c2b385), color-stop(0.50, #e8e4da), color-stop(0.24, #c2b385), color-stop(0.00, #ab9550));
  background: -webkit-linear-gradient(top, #ab9550 0%, #c2b385 24%, #e8e4da 50%, #c2b385 72%, #ab9550 100%);
  background: -moz-linear-gradient(top, #ab9550 0%, #c2b385 24%, #e8e4da 50%, #c2b385 72%, #ab9550 100%);
  background: -o-linear-gradient(top, #ab9550 0%, #c2b385 24%, #e8e4da 50%, #c2b385 72%, #ab9550 100%);
  background: -ms-linear-gradient(top, #ab9550 0%, #c2b385 24%, #e8e4da 50%, #c2b385 72%, #ab9550 100%);
  background: linear-gradient(to bottom, #ab9550 0%, #c2b385 24%, #e8e4da 50%, #c2b385 72%, #ab9550 100%);
}

.hd_nav ul li .nav_box {
  background-color: #fff;
  padding: 14.5px 0;
}

.hd_nav ul li a {
  color: #535353;
}

.hd_nav ul li span {
  display: block;
  font-size: 11px;
  color: #ae944e;
  margin-top: 6px;
}

.hd_nav ul li:not(:last-child) {
  margin-right: 6px;
}

.hd_nav ul li a::before {
  position: absolute;
  content: "";
  background: url("../img/bg_hd_li.png");
  width: 147px;
  height: 30px;
  left: 2px;
  top: 2px;
}

/*    headline     */
#headline {
  background-color: rgba(16, 11, 6, 0.8);
  height: 33px;
}

#headline .headnews {
  width: 1200px;
  margin: auto;
  padding: 5px 0;
  text-align: left;
  position: relative;
}

#headline h4 {
  display: inline-block;
  margin-left: 70px;
  width: 28%;
  position: relative;
}

#headline p {
  font-size: 12px;
  display: inline-block;
  font-family: "Mplus 1p";
}

#headline h4::after {
  position: absolute;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 4px;
  height: 4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 9px;
  left: 120px;
}


/*---------------------------------------
marquee
------------------------------------------*/
.marquee {
  width: 600px;
  padding: 0.5em 0;
  overflow: hidden;
  /* background-color: #f6f6f6; */
  margin-bottom: 10px;
  position: absolute;
  top: -6px;
  /* right: 50%; */
  left: 17%;
}

.marquee p:after {
  content: "";
  white-space: nowrap;
  padding-right: 50px;
}

.marquee p {
  margin: 0;
  padding-left: 600px;
  display: inline-block;
  white-space: nowrap;
  -webkit-animation-name: marquee;
  -webkit-animation-timing-function: linear;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: marquee;
  -moz-animation-timing-function: linear;
  -moz-animation-duration: 10s;
  -moz-animation-iteration-count: infinite;
  -ms-animation-name: marquee;
  -ms-animation-timing-function: linear;
  -ms-animation-duration: 10s;
  -ms-animation-iteration-count: infinite;
  -o-animation-name: marquee;
  -o-animation-timing-function: linear;
  -o-animation-duration: 10s;
  -o-animation-iteration-count: infinite;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translate(0%);
  }

  99%,
  to {
    -webkit-transform: translate(-100%);
  }
}

@-moz-keyframes marquee {
  from {
    -moz-transform: translate(0%);
  }

  99%,
  to {
    -moz-transform: translate(-100%);
  }
}

@-ms-keyframes marquee {
  from {
    -ms-transform: translate(0%);
  }

  99%,
  to {
    -ms-transform: translate(-100%);
  }
}

@-o-keyframes marquee {
  from {
    -o-transform: translate(0%);
  }

  99%,
  to {
    -o-transform: translate(-100%);
  }
}

@keyframes marquee {
  from {
    transform: translate(0%);
  }

  99%,
  to {
    transform: translate(-100%);
  }
}

/*////////////////////////////////////////
　　　　　　　　　　    top
////////////////////////////////////////*/

/*------------------------------------
　　　　　　　　　   recruit_bnr
--------------------------------------*/
.rcrt_bnr {
  margin-top: 50px;
  text-align: center;
}

/*------------------------------------
　　　　　　　　　 today_cast
--------------------------------------*/
.cast {
  margin-top: 85px;
}

/*    共通    */
.td_cast .cv_girl,
.td_cast .pcup_girl {
  position: relative;
  float: left;
  width: 331px;
}

.td_cast .cv_girl a::after,
.td_cast .pcup_girl a::after {
  position: absolute;
  background: url("../img/bg_left.png");
  content: "";
  width: 415px;
  height: 590px;
  top: -41px;
  left: -44px;
}

.td_cast .cv_girl .cv_about,
.td_cast .pcup_girl .pcup_about {
  position: absolute;
  background-color: rgba(16, 11, 6, 0.8);
  width: 307px;
  text-align: center;
  font-size: 16px;
  padding: 12px 11px 8px 12px;
}

.cv_text,
.pcup_text {
  text-align: left;
  display: inline-block;
  margin-right: 25px;
}

.cv_text .name,
.pcup_text .name {
  font-size: 20px;
  margin-top: 11px;
  display: inline-block;
}

.cv_text .age,
.pcup_text .age {
  display: inline-block;
}


.cv_text .size,
.pcup_text .size {
  margin-top: 8px;
}

.cv_about .rank,
.pcup_about .rank {
  display: inline-block;
}


/*  cover_girl   */
.td_cast .cv_girl {
  float: left;
  margin-left: 50px;
}

.td_cast .cv_girl .cv_about {
  bottom: 30px;
}

/*  pickup_girl   */
.td_cast .pcup_girl {
  float: right;
  margin-right: 50px;
}

.td_cast .pcup_girl .pcup_about {
  bottom: 80px;
}

.pcup_girl .pcup_box {
  position: absolute;
  font-size: 10px;
  background-color: #000;
  width: 316px;
  padding: 3px 0 3px 15px;
  bottom: 2px;
  line-height: 15px;
  font-family: "Mplus 1p";
  letter-spacing: 0.2px;
}


/*    news    */
#scroll {
  background-color: rgba(6, 3, 1, 0.8);
  height: 500px;
  width: 350px;
  float: right;
  margin-right: 45px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.news h3 {
  margin: 18px 0 0 8px;
}

.news h3 span {
  display: block;
  margin: 3px 0 18px 5px;
  font-size: 14px;
}

.news p {
  font-size: 10px;
  color: #b80000;
  padding-left: 12px;
}

/*    news_text   */
.news .news_text {
  padding: 15px 0 0 12px;
  letter-spacing: 1px;
}

.news .news_text p {
  color: #fff;
  font-size: 14px;
  padding-left: 0;
}

.news .news_text p:nth-of-type(2) {
  font-size: 20px;
  color: #ff0000;
  margin: 12px 0 25px;
}

.news .news_text p:not([class="day"]) {
  font-family: "a-otf-gothic-mb101-pro";
  font-weight: bold;
  line-height: 21px;
}

.news .news_text .name,
.news .news_text .age,
.news .news_text .rank {
  display: inline-block;
}

.news .news_text .cmnt,
.news .news_text .class {
  margin-top: 27px;
}

.news .news_text span {
  color: #e6df67;
}

/*------------------------------------
　　　　　　　　　 today_schedule
--------------------------------------*/
.td_scdl h2 {
  clear: both;
  text-align: center;
  padding-top: 90px;
}

.td_scdl h2 span {
  display: block;
  margin-top: 12px;
  font-size: 25px;
}

hr {
  background: url("../img/border.png") no-repeat;
  height: 33px;
  border: none;
  /*  text-align: center;*/
  width: 1102px;
  margin-top: 20px;
}


/*    本日の出勤    */
#td_girl {
  background-color: #000;
  height: 1850px;
}


/*    frame    */
.girls_wrap {
  text-align: center;
}

.frame {
  width: 200px;
  height: 400px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #131313), color-stop(1.00, #131313), color-stop(0.66, #191919), color-stop(0.51, #2e2e2e), color-stop(0.29, #393939), color-stop(0.00, #575757));
  background: -webkit-linear-gradient(top, #575757 0%, #393939 28%, #2e2e2e 51%, #191919 66%, #131313 100%, #131313 100%);
  background: -moz-linear-gradient(top, #575757 0%, #393939 28%, #2e2e2e 51%, #191919 66%, #131313 100%, #131313 100%);
  background: -o-linear-gradient(top, #575757 0%, #393939 28%, #2e2e2e 51%, #191919 66%, #131313 100%, #131313 100%);
  background: -ms-linear-gradient(top, #575757 0%, #393939 28%, #2e2e2e 51%, #191919 66%, #131313 100%, #131313 100%);
  background: linear-gradient(to bottom, #575757 0%, #393939 28%, #2e2e2e 51%, #191919 66%, #131313 100%, #131313 100%);
  display: inline-block;
  margin: 28px 17px 0 0;
}

.girls_list:nth-child(4n) {
  margin-right: auto;
}

/*    girls_list   */
.girls_list {
  position: relative;
  vertical-align: top;
  font-family: "Mplus 1p";
  letter-spacing: 1px;
  margin-top: 35px;
  margin-right: 45px;
}

.girls_list img {
  margin-top: 45px;
}

.platinum::before {
  position: absolute;
  background: url("../img/girls_platinum.jpg");
  content: "";
  width: 150px;
  height: 20px;
  top: 23px;
  left: 25px;
}

.gold::before {
  position: absolute;
  background: url("../img/girls_gold.jpg");
  content: "";
  width: 150px;
  height: 20px;
  top: 23px;
  left: 25px;
}

.black::before {
  position: absolute;
  background: url("../img/girls_black.jpg");
  content: "";
  width: 150px;
  height: 20px;
  top: 23px;
  left: 25px;
}

.girls_list a::after {
  position: absolute;
  background: url("../img/bg_girls.png");
  content: "";
  width: 175px;
  height: 290px;
  top: 5px;
  left: 12px;
}

.girls_list .name {
  background-color: #2e2519;
  font-size: 16px;
  /*    color: #ce1515;*/
  color: #fff;
  width: 150px;
  margin: auto;
  padding: 4px 0;
  margin-top: 5px;
}

.girls_list .name span {
  color: #ce1515;
  font-size: 14px;
  margin-right: 4px;
}

.girls_list .age,
.girls_list .hgt {
  display: inline-block;
  font-size: 14px;
  margin-top: 10px;
}

.girls_list .size {
  font-size: 14px;
  margin-top: 2px;
}

.girls_list .time {
  background: url("../img/bg_time.png") no-repeat;
  width: 150px;
  margin: auto;
  margin-top: 10px;
  font-size: 14px;
  color: #c1bd6b;
  padding: 3px 0;
}

.btn_readmore {
  text-align: center;
  margin-top: 20px;
  background: #f5e368;
  background: -moz-linear-gradient(top, #f5e368 0%, #ae9910 100%);
  background: -webkit-linear-gradient(top, #f5e368 0%, #ae9910 100%);
  background: linear-gradient(to bottom, #f5e368 0%, #ae9910 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5e368', endColorstr='#ae9910', GradientType=0);
  width: 300px;
  margin: 60px auto;
  padding: 15px 10px;
}

/*////////////////////////////////////////
　　　　　　　　　　  　共通タイトル
////////////////////////////////////////*/

/*      タイトル     */
.tp_ttl {
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
  margin: auto;
}

.ttl {
  padding: 58px 0;
  position: relative;
}

.ttl span {
  display: block;
  width: 400px;
  margin: auto;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #fff;
  font-size: 24px;
  letter-spacing: 5px;
}

.ttl::before {
  position: absolute;
  content: "";
  background: url('../img/ttl_left.png');
  width: 702px;
  height: 145px;
  top: 28px;
  left: 0;
}

.ttl::after {
  position: absolute;
  content: "";
  background: url('../img/ttl_right.png');
  width: 702px;
  height: 145px;
  top: 28px;
  right: 0;
}

/*////////////////////////////////////////
　　　　　　　　　　    concept
////////////////////////////////////////*/

/*------------------------------------
　　　　　　　　　 concept_inner
--------------------------------------*/
.concept {
  background: url('../img/bg_cncpt.png') no-repeat;
  background-position: center;
  text-align: center;
  height: 1710px;
  padding-bottom: 80px;
}

.concept h3 {
  padding: 12% 0 0px 6%;
  text-align: left;
}

.bg_cncpt {
  text-align: left;
  width: 1050px;
  margin: auto;
}

.bg_cncpt p {
  font-size: 20px;
  margin-top: 40px;
  line-height: 40px;
}

.bg_cncpt .text_ud {
  font-size: 22px;
  margin-top: 20px;
  margin-left: 35px;
  line-height: 35px;
}

.bg_cncpt p img {
  vertical-align: sub;
}


/*      cncpt_col      */
.cncpt_col {
  padding: 30px 0 30px 25px;
  margin-top: 25px;
  position: relative;
  background: -webkit-gradient(radial, 100% 57%, 0, 100% 57%, 300, color-stop(1.00, rgba(112, 112, 112, 0.1)), color-stop(0.00, rgba(248, 246, 246, 0.1)), color-stop(0.00, rgba(248, 246, 246, 0.1)));
  background: -webkit-radial-gradient(100% 57%, circle, rgba(248, 246, 246, 0.1) 0%, rgba(248, 246, 246, 0.1) 0%, rgba(112, 112, 112, 0.1) 100%);
  background: -moz-radial-gradient(100% 57%, circle, rgba(248, 246, 246, 0.1) 0%, rgba(248, 246, 246, 0.1) 0%, rgba(112, 112, 112, 0.1) 100%);
  background: -o-radial-gradient(100% 57%, circle, rgba(248, 246, 246, 0.1) 0%, rgba(248, 246, 246, 0.1) 0%, rgba(112, 112, 112, 0.1) 100%);
  background: -ms-radial-gradient(100% 57%, circle, rgba(248, 246, 246, 0.1) 0%, rgba(248, 246, 246, 0.1) 0%, rgba(112, 112, 112, 0.1) 100%);
  background: radial-gradient(100% 57%, circle, rgba(248, 246, 246, 0.1) 0%, rgba(248, 246, 246, 0.1) 0%, rgba(112, 112, 112, 0.1) 100%);
}

.cncpt_col:nth-of-type(1) {
  margin-top: 30px;
}

.cncpt_col:nth-of-type(4) {
  padding: 50px 0 50px 25px;
}

.cncpt_col>img {
  display: inline-block;
  position: absolute;
  top: 8px;
}

.cncpt_col:nth-of-type(2)>img,
.cncpt_col:nth-of-type(4)>img {
  top: -22px;
  right: 25px;
}

.cncpt_col:nth-of-type(3)>img {
  top: -20px;
}

.cncpt_col p {
  font-size: 15px;
  margin: auto;
  display: inline-block;
  line-height: 30px;
  vertical-align: top;
  padding-left: 10px;
}

.cncpt_col .text_right {
  padding-left: 270px;
}

.cncpt_col p .pd {
  padding: 0 2px 0 5px;
}

/*////////////////////////////////////////
　　　　　　　　　　   schedule
////////////////////////////////////////*/
.schedule {
  background: url('../img/bg_schedule.png') no-repeat;
  background-position: center;
  text-align: center;
  height: 1710px;
  padding-bottom: 80px;
  position: relative;
}

.schedule .week {
  transform: skew(-10deg);
  display: flex;
  position: absolute;
  top: 8%;
  left: 8.6%;
}

.schedule ul li {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #000), color-stop(0.00, #242424));
  background: -webkit-linear-gradient(#242424, #000);
  background: -moz-linear-gradient(#242424, #000);
  background: -o-linear-gradient(#242424, #000);
  background: -ms-linear-gradient(#242424, #000);
  background: linear-gradient(#242424, #000);
  border: 1px solid #d5ba74;
  box-shadow: 0 -2px 10px rgba(190, 161, 84, 0.35), 0 2px 10px rgba(190, 161, 84, 0.35);
  text-transform: uppercase;
  color: #555;
  font-weight: bolder;
  transition: all 0.3s linear;
}

.schedule ul li a {
  display: block;
  font-weight: 100;
  padding: 10% 0 12% 7%;
  width: 130px;
  color: #fff;
  transform: skew(10deg);
  font-size: 16px;
  letter-spacing: 1px;
}

.schedule ul li.active {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #8d7031), color-stop(0.65, #f5ed72), color-stop(0.00, #cb982b));
  background: -webkit-linear-gradient(-85deg, #cb982b 0%, #f5ed72 65%, #8d7031 100%);
  background: -moz-linear-gradient(-85deg, #cb982b 0%, #f5ed72 65%, #8d7031 100%);
  background: -o-linear-gradient(-85deg, #cb982b 0%, #f5ed72 65%, #8d7031 100%);
  background: -ms-linear-gradient(-85deg, #cb982b 0%, #f5ed72 65%, #8d7031 100%);
  background: linear-gradient(175deg, #cb982b 0%, #f5ed72 65%, #8d7031 100%);
}

.schedule ul li.active a {
  color: #000;
}

.schedule .scdl_ttl {
  background: url('../img/bg_ttl.png') no-repeat;
  width: 590px;
  height: 90px;
  position: absolute;
  top: 13%;
  left: 26%;
}

.schedule .scdl_ttl h2 {
  color: #995d15;
  font-size: 20px;
  letter-spacing: 3px;
  padding: 7.5% 0;
}

.schedule .girls_wrap {
  padding-top: 17%;
  width: 960px;
  margin: auto;
}

.schedule .girls_list {
  margin-top: 35px;
  margin-right: 45px;
}

.schedule .girls_list:nth-child(4n) {
  margin-right: auto;
}

.schedule .girls_list:nth-child(5n) {
  margin-right: 45px;
}


/*////////////////////////////////////////
　　　　　　　　　　   girls
////////////////////////////////////////*/
.girls {
  background: url('../img/bg_schedule.png') no-repeat;
  background-position: center;
  text-align: center;
  height: 1710px;
  padding-bottom: 80px;
  position: relative;
}

.girls .girls_wrap {
  width: 960px;
  margin: auto;
  overflow-y: scroll;
  height: 1500px;
  position: relative;
  top: 134px;
}

.girls .girls_list:nth-child(4n) {
  margin-right: 45px;
}

.page_girls .frame {
  height: 372px;
}

/*////////////////////////////////////////
　　　　　　　　　　   system
////////////////////////////////////////*/
/*　マップ　*/
.system .shop_map {
  width: 900px;
  text-align: center;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.system .shop_map li {
  text-align: left;
  margin-bottom: 40px;
}

.shop_map li p {
  font-size: 20px;
  margin-top: 20px;
}

.shop_map .shop_nm {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 20px;
}


/*   ゴールド    */
.system .gold_pc {
  background: url('../img/bg_gold.png') no-repeat;
  background-position: center;
  text-align: center;
  height: 560px;
  margin-top: 50px;
}

.system .money .ttl_rank {
  padding-top: 90px;
}

.system .gold .ttl_rank img {
  filter: drop-shadow(0 0 8px #fffc00);
  margin-top: 20px;
}

/*   共通   */
.system .money .ttl_rank span {
  display: block;
  font-size: 28px;
  margin-top: 10px;
  letter-spacing: 1px;
}

.system .money p:nth-of-type(2) {
  font-size: 18px;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid #fff;
  width: 800px;
  letter-spacing: 2px;
}

.system .money dl {
  width: 680px;
  margin: auto;
}

.system .money dl em,
.system .money p em {
  font-style: normal;
  font-size: 44px;
}

.system .money dl dt,
.system .money dl dd {
  display: inline-block;
  font-size: 29px;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

.system .money dl dt {
  width: 18%;
}

.system .money dl dd:nth-of-type(1),
.system .money dl dd:nth-of-type(3) {
  margin-right: 75px;
}

.system .money p {
  font-size: 29px;
}


/*   プラチナ   */
.system .platinam_pc {
  background: url('../img/bg_platinam.png') no-repeat;
  background-position: center;
  text-align: center;
  height: 560px;
  margin-top: 50px;
}

.system .platinam .ttl_rank img {
  filter: drop-shadow(0 0 8px #fff);
  margin-top: 20px;
}

/*   ブラック   */
.system .black_pc {
  background: url('../img/bg_black.png') no-repeat;
  background-position: center;
  text-align: center;
  height: 560px;
  margin-top: 50px;
}

.system .black .ttl_black {
  font-size: 56px;
  padding-top: 110px;
  letter-spacing: 5px;
}

/*   その他　  */
.system .other {
  background: url('../img/bg_other.jpg') no-repeat;
  background-position: center;
  text-align: center;
  height: 340px;
  margin-top: 100px;
  margin-bottom: 120px;
}

.system .other .ttl_other {
  padding-top: 60px;
  font-size: 56px;
  letter-spacing: 5px;
  text-align: center;
}

.system .other .ttl_other span {
  font-size: 24px;
}

.system .other .other_menu {
  margin-top: 45px;
  width: 960px;
}

.system .other .other_menu dt,
.system .other .other_menu dd {
  font-size: 32px;
  letter-spacing: 5px;
}

.system .other .other_menu dt {
  width: 16%;
  border-right: 1px solid #fff;
}

.system .other .other_menu dd {
  width: 15%;
}

.system .other .op_menu {
  margin-top: 0;
}

.system .other .op_menu dt {
  width: 22%;
}

.system .other .op_menu dd {
  width: 24%;
}

.system .other dl dd:nth-of-type(1) {
  margin-right: 0;
}


/*  注意事項   */
.system h3 {
  width: 1100px;
  margin: auto;
  text-align: center;
  padding-bottom: 20px;
  margin-top: 45px;
  margin-bottom: 40px;
  border-bottom: 1px solid #f7c480;
}

.system h3 span {
  display: block;
  font-size: 20px;
  margin-top: 15px;
  font-weight: normal;
}

.system .text_box {
  width: 980px;
  margin: auto;
  margin-bottom: 100px;
  font-size: 20px;
  line-height: 37px;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.system .text_box ul {
  margin-top: 35px;
}

.system .text_box .card_img {
  margin-top: 30px;
}

.system .text_box .pd_list {
  margin-top: 50px;
}

/*////////////////////////////////////////
　　　　　　　　　　    event
////////////////////////////////////////*/
.event .bnr_event:first-child {
  margin-top: 70px;
}

.event .bnr_event {
  margin-bottom: 70px;
}


/*////////////////////////////////////////
　　　　　　　　　　    footer
////////////////////////////////////////*/
footer {
  background-color: #151515;
}

footer h3 {
  padding: 50px 0 45px 50px;
  display: inline-block;
}

footer h3 img {
  width: 310px;
}

/*    info   */
footer .info {
  font-size: 14px;
  color: #eead3d;
  display: inline-block;
  letter-spacing: 2px;
  line-height: 25px;
  margin: 0 60px;
  padding: 0 50px;
  height: 100px;
  border-right: 1px solid #606060;
  border-left: 1px solid #606060;

}

footer .info .open {
  margin-top: 10px;
}

footer .info .open span,
footer .info .tel span {
  font-size: 24px;
  color: #fff;
}

/*    nav   */
footer .ft_nav {
  display: inline-block;
  width: 320px;
  vertical-align: top;
  padding-top: 55px;
}

footer .ft_nav ul li {
  display: inline-block;
  font-size: 12px;
  font-family: "Mplus 1p";
  width: 100px;
  line-height: 25px;
  letter-spacing: 1px;
}

footer .ft_nav ul li a {
  color: #fff;
}

/*   pageup   */
footer .up-wrapper {
  width: 100%;
  background-color: #fff;
}

footer .up {
  position: relative;
  width: 230px;
  height: 60px;
  color: #000;
  font-size: 16px;
  margin: auto;
  padding-top: 50px;
  text-align: center;
}

footer .up a::before {
  position: absolute;
  content: "";
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 32px;
  left: 108px;
}

footer .up .cprt {
  font-size: 12px;
  margin-top: 15px;
}

footer .link-banner {
  width: 100%;
  background-color: #151515;
  padding: 50px 0;
}

footer .link-banner-inner {
  width: 1090px;
  margin: 0 auto;
}

/*////////////////////////////////////////
　　　　　　　　　　    レスポンシブ
////////////////////////////////////////*/

@media (max-width: 1875px) {

  .ttl::before,
  .ttl::after {
    width: 659px;
  }
}

@media (max-width: 1800px) {

  .ttl::before,
  .ttl::after {
    width: 576px;
  }
}

@media (max-width: 1630px) {

  .ttl::before,
  .ttl::after {
    width: 493px;
  }
}

@media (max-width: 1460px) {

  .ttl::before,
  .ttl::after {
    width: 411px;
  }
}

@media (max-width: 1310px) {

  .ttl::before,
  .ttl::after {
    width: 329px;
  }
}
