/* ------------------------------------------------------------
  base
------------------------------------------------------------ */
/* clearfix */
.section-main .item-block .box .item .detail:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
}

/* hover */
@media only screen and (min-width: 768px) {
  .section-entry a {
    -webkit-transition: all .2s linear;  
    -moz-transition: all .2s linear;  
    -o-transition: all .2s linear;  
    transition: all .2s linear;
  }
  .section-entry a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
  }
}

/* display */
.section-main .sm-pc,
.box-link .sm-pc {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .section-main .sm-pc,
  .box-link .sm-pc {
    display: inline-block !important;
  }
  .section-main .sm-sp,
  .box-link .sm-sp {
    display: none !important;
  }
}

/* ------------------------------------------------------------
  section-container
------------------------------------------------------------ */
#ym.container {
  padding: 0 15px !important;
}
#ym a {
  color: #00a8b5;
}

/* ------------------------------------------------------------
  section-hero
------------------------------------------------------------ */
@media only screen and (max-width: 767px) {
  .section-hero h1 {
    margin: 0 -15px;
  }
}
.section-hero .end-txt {
  color: #ff0000;
  font-size: 22px;
  text-align: center;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .section-hero .end-txt {
    font-size: 24px;
  }
}

/* ------------------------------------------------------------
  section-main
------------------------------------------------------------ */
.section-main > p {
  font-size: 26px;
  text-align: left;
  line-height: 1.5;
  margin-top: 36px;
}
.section-main > h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin: 33px 0 10px;
}
.section-main > .present {
	max-width: auto;
	margin-top: 23px;
}
@media only screen and (min-width: 768px) {
  .section-main > p {
    font-size: 28px;
    text-align: center;
    margin-top: 38px;
  }
  .section-main > h2 {
    font-size: 24px;
    margin: 32px 0 10px;
  }
	.section-main > .present {
		margin-right: auto;
		margin-left: auto;
		max-width: 632px;
		margin-top: 33px;
	}
}

/* box-flow */
.section-main .box-flow {
  border: 2px solid #ccc;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.section-main .box-flow > ul {
  display: table;
  width: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.section-main .box-flow > ul > li {
  display: table-cell;
  width: 50%;
  font-size: 16px;
  line-height: 1.5;
  vertical-align: top;
  padding: 10px;
}
.section-main .box-flow > ul > li:nth-child(even) {
  border-left: 1px solid #ccc;
}
.section-main .box-flow > ul + ul > li {
  border-top: 1px solid #ccc;
}
.section-main .box-flow > ul > li > p {
  width: 70px;
  height: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 24px;
  background-color: #333;
}
@media only screen and (min-width: 768px) {
  .section-main .box-flow {
    border: none;
  }
  .section-main .box-flow > ul {
    border: 2px solid #ccc;
  }
  .section-main .box-flow > ul:first-child {
    border-bottom: none;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;
  }
  .section-main .box-flow > ul:last-child {
    border-top: 1px;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
  }
  .section-main .box-flow > ul > li {
    width: 33.3333%;
    vertical-align: top;
  }
  .section-main .box-flow > ul > li:nth-child(n+2) {
    border-left: 1px solid #ccc;
  }
}

/* ------------------------------------------------------------
  section-entry
------------------------------------------------------------ */
.section-entry {
  margin: 30px auto 50px;
}
.section-entry dl {
  width: 100%;
  text-align: left;
  padding: 12px 0;
  margin: 0;
  border-top: 1px solid #ccc;
}
.section-entry dl dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
}
.section-entry dl dd {
  font-size: 16px;
  line-height: 1.8;
}
.section-entry dl dd > .red {
  color: #ff0000;
  margin-bottom: 0;
}
.section-entry dl dd > p + p {
  margin: 15px 0 0;
}
.section-entry dl dd > ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.section-entry dl dd > ul.asterisk li {
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  padding-left: 1em;
}
.section-entry dl dd > ul.asterisk li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.section-entry dl dd > ul.dot li {
  position: relative;
  padding-left: 1em;
  line-height: 1.8;
}
.section-entry dl dd > ul.dot li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.section-entry dl dd > ul.number li {
  position: relative;
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.8;
}
.section-entry dl dd > ul.number li > a {
  font-weight: bold;
}
.section-entry dl dd > ul.number li > p {
  padding-left: 1em !important;
  margin: 0 !important;
}
.section-entry dl dd > .list-note li {
  font-size: 13px;
}
@media only screen and (min-width: 768px) {
  .section-entry {
    margin: 35px auto 50px;
  }
  .section-entry dl dd > ul.asterisk li {
    font-size: 13px;
  }
}

/* box-link */
.section-entry .box-link {
  padding: 10px 0;
  border-top: 1px solid #ccc;
}
.section-entry .box-link > p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  margin: 0 0 10px;
}
.section-entry .box-link > p > a {
  display: block;
  width: 100%;
  height: 80px;
  color: #fff;
  font-size: 27px;
  text-align: center;
  line-height: 80px;
  margin: 0 auto;
  background-color: #000;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.section-entry .box-link > ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.section-entry .box-link > ul li {
  font-size: 16px;
  text-indent: -1em;
  line-height: 1.8;
  margin-left: 1em;
}
@media only screen and (min-width: 768px) {
  .section-entry .box-link > p {
    text-align: left;
    margin: 0;
  }
  .section-entry .box-link > p > a {
    display: inline-block;
    position: relative;
    width: auto;
    height: auto;
    color: #00a8b5;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    line-height: 1.8;
    padding-right: 15px;
    margin: 8px 0;
    background: none;
  }
  .section-entry .box-link > p > a:hover {
    color: #006169;
  }
  .section-entry .box-link > p > a::before,
  .section-entry .box-link > p > a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
  }
  .section-entry .box-link > p > a::after {
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid #00a8b5;
    border-right: 1px solid #00a8b5;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .section-entry .box-link > p > a:hover::after {
    border-color: #006169;
  }
  .section-entry .box-link > ul li {
    font-size: 11px;
  }
}

/* btn-product */
.section-entry .btn-product {
  text-align: center;
  margin-top: 25px;
}
.section-entry .btn-product a {
  display: inline-block;
  color: #333;
  font-size: 18px;
  line-height: 52px;
  padding-left: 70px;
  background: url(../img/arrow.png) left center no-repeat;
  background-size: 50px 50px;
}

/* ラウンジのみ */
.section-entry h3 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 15px;
  margin: 30px 0 15px;
  border-bottom: 1px solid #000;
}
.section-entry .entry-method p {
  width: 100%;
  height: 70px;
  color: #b2b2b2;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  margin: 10px auto 0;
  background: -moz-linear-gradient(top, #5f6779, #4a4f5e);
  background: -webkit-linear-gradient(top, #5f6779, #4a4f5e);
  background: linear-gradient(to bottom, #5f6779, #4a4f5e);
  border-bottom: 5px solid #2f323d;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.section-entry .entry-method a {
  display: block;
  width: 100%;
  height: 70px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 70px;
  margin: 10px auto 0;
  background: -moz-linear-gradient(top, #7f89a5, #60657b);
  background: -webkit-linear-gradient(top, #7f89a5, #60657b);
  background: linear-gradient(to bottom, #7f89a5, #60657b);
  border-bottom: 5px solid #444858;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.section-entry .entry-method a img {
  width: 30px;
  vertical-align: middle;
  margin-top: -10px;
  margin-right: 10px;
}
@media only screen and (min-width: 768px) {
  .section-entry h3 {
    font-size: 20px;
  }
  .section-entry .entry-method {
    max-width: 300px;
  }
}

/* ------------------------------------------------------------ */
/* ご応募はこちら */
/* ------------------------------------------------------------ */
.app-xlj .btn-primary {
  background-color: #e53a67;
  border-color: transparent; 
  padding: 20px;
}
.app-xlj .btn-primary:hover {
  background-color: #54A9BD;
}

/* ------------------------------------------------------------ */
/* 規約ページ */
/* ------------------------------------------------------------ */
.h-bg-r {
  color: #fff;
  font-size: 160%;
  text-align: center;
  padding: 10px 0;
  background: #17151c;
}

/* - 規約 - */
.section-kiyaku {
}
.section-kiyaku dt {
  font-size: 17px;
  font-weight: normal;
  text-indent: -.7em;
  line-height: 1.8;
  margin: 0 0 10px .7em;
}
.section-kiyaku dd {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 25px;
}
.section-kiyaku dd strong {
  display: block;
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 10px;
}
.section-kiyaku dd ul + strong {
  margin-top: 25px;
}
.section-kiyaku dd ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.section-kiyaku dd ul li {
  text-indent: -1em;
  margin-left: 1em;
}
.section-kiyaku dd p {
  margin-bottom: 0;
}
.section-kiyaku dd a {
  word-break: break-all;
}

/* - 個人情報 - */
.section-check {
  margin-bottom: 40px;
}
.section-check .privacy {
  border: solid 1px #808080;
  height: 150px;
  padding: 0.5em;
  overflow: auto;
  margin-bottom: 20px;
}
.section-check .privacy .section + .section {
  margin-top: 20px;
}
.section-check .privacy .section .indent {
  text-indent: -1.5em;
  margin-left: 1.5em;
}
.section-check .privacy .section p,
.section-check .privacy .section ul {
  font-size: 13px;
  line-height: 1.8;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* ------------------------------------------------------------ */
/* 送信ボタン */
/* ------------------------------------------------------------ */
/* 送信ボタン */
input[type="button"] {
  color: #fff;
  font-size: 18px;
  padding: 20px;
  border: none;
  background: #e53a67;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
/* 送信ボタン - マウスオーバー時 */
input[type="button"]:hover {
  background: #54A9BD;
}
/* 送信ボタン - 押せないとき */
input[type="button"][disabled] {
  background-color: #ccc;
  cursor: default;
}
.pointer label:hover,
.pointer input:hover {
  cursor: pointer;
}

/* ------------------------------------------------------------ */
/* 判定別*/
/* ------------------------------------------------------------ */
.well {
  text-align: center;
  margin: 20px 0 0;
}
.well p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .well p {
    font-size: 16px;
  }
}
