@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
/* ▼▼▼▼▼ リセット ▼▼▼▼▼ */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* ============================== ▼▼▼ 基本 ▼▼▼ ============================== */
* {
  box-sizing: border-box;
}

body {
  color: #333333;
  font-size: 0.87em;
  min-width: 1000px;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  -webkit-text-size-adjust: 100%; /* mobile safariの自動文字サイズ調整をoffにする*/
  -webkit-font-smoothing: antialiased; /* mac×webkit系のブラウザで文字が勝手に太くなるのを回避する*/
}

@media only screen and (max-width: 640px) and (min-width: 300px) {
  body {
    min-width: auto;
    min-width: none;
  }
}
a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/*-------- clearfix --------*/
.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

/* ============================== ▼▼▼ ヘッダー ▼▼▼ ============================== */
.header {
  padding-top: 20px;
  /* h1 */
  /* nav */
}
.header h1 {
  margin-bottom: 20px;
  text-align: center;
}
.header h1 img {
  width: 363px;
  height: auto;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  .header h1 img {
    max-width: 70%;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  .header h1 {
    margin-bottom: 20px;
  }
}
.header nav {
  background: #FC9DB8;
  font-family: "Cinzel", serif;
  font-size: 130%;
  padding: 15px 0;
  text-align: center;
  /* media only screen */
  /* ul */
}
.header nav label, .header nav input[type=checkbox] {
  display: none;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  .header nav { /* チェックボックスの非表示 */
    /* ▽▽アコーディオン開閉指定▽▽ */
    /* △△アコーディオン開閉指定△△ */
  }
  .header nav label {
    display: block;
    margin: 0;
    color: #fff;
    background: #FC9DB8;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    text-align: center;
  }
  .header nav input[type=checkbox].bellows {
    display: none;
  }
  .header nav input[type=checkbox].bellows + ul {
    height: 0; /* チェックが入っていない時の高さ */
    overflow: hidden;
  }
  .header nav input[type=checkbox].bellows:checked + ul {
    height: 320px; /* チェックが入っているときの高さ */
  }
}
.header nav ul {
  /* li */
}
.header nav ul li {
  display: inline-block;
}
.header nav ul li a {
  color: #fff;
}
.header nav ul li ~ li {
  margin-left: 1.5em;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  .header nav ul li ~ li {
    margin-left: 0;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  .header nav {
    /* メニュー開閉時アニメーション */ /* .ac */
  }
  .header nav .ac {
    transition: all 0.5s;
    margin: 0;
    padding: 0;
    list-style: none;
    /* li */
  }
  .header nav .ac li {
    display: block;
    background: #efdfdf;
    border-bottom: 1px dotted #FC9DB8;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 0px;
  }
  .header nav .ac li a {
    color: #FC9DB8;
    display: block;
    text-decoration: none;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  .header nav {
    padding: 0;
  }
}

/* .header */
@media only screen and (max-width: 640px) and (min-width: 300px) {
  .header {
    padding-top: 20px;
  }
}
/* ============================== ▼▼▼ トップhero ▼▼▼ ============================== */
#top {
  /* .hero */
}
#top .hero {
  background: url(../img/top/hero3.jpg) no-repeat;
  height: 80vh;
  min-height: 650px;
  position: relative;
  background-size: cover;
  background-position: center -180px;
  /* section */
}
#top .hero section {
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 20px;
  /* h2 */
  /* div */
  /* a */
}
#top .hero section h2 img {
  width: 650px;
  height: auto;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .hero section h2 img {
    width: 85%;
  }
}
#top .hero section div {
  color: #fff;
  background: rgba(252, 157, 184, 0.4);
  padding: 30px 0;
  margin: 10px 0 20px;
  /* p */
}
#top .hero section div h3 {
  font-family: "游明朝体", "Yu Mincho", serif;
  font-size: 280%;
  font-weight: bold;
  text-shadow: 3px 3px 0px rgba(104, 41, 41, 0.8);
}
#top .hero section div p {
  font-size: 180%;
  font-weight: bold;
  margin-top: 15px;
}
#top .hero section div p span {
  font-size: 80%;
  display: inline-block;
  background: #fff;
  color: #FC9DB8;
  font-weight: bold;
  padding: 3px 5px;
  border-radius: 5px;
  margin: 0 5px 0 20px;
  vertical-align: top;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .hero section div p span:first-of-type {
    margin-left: 0;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .hero section div p {
    margin-top: 10px;
  }
}
#top .hero section div br {
  display: none;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .hero section div br {
    display: inline;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .hero section div {
    font-size: 70%;
    line-height: 1.5;
    padding: 20px 0;
  }
}
#top .hero section a {
  display: inline-block;
  background: url(../img/top/arrow_gold.png) no-repeat 90% center/15px;
  background-color: #CC0099;
  height: 70px;
  line-height: 64px;
  font-size: 170%;
  font-weight: bold;
  color: #fff;
  border-radius: 35px;
  border: #fff 3px solid; /* width: 350px; */
  width: 430px;
}
#top .hero section a + a {
  margin-left: 10px;
  font-size: 150%;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .hero section a + a {
    margin: 10px 0 0;
    font-size: 130%;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .hero section a {
    font-size: 140%;
    width: 95%;
    height: 60px;
    line-height: 54px;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .hero section {
    position: static;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .hero {
    height: auto;
    min-height: 450px;
    position: static;
    padding: 200px 0px 30px;
    background-position: center;
  }
}

/* #top */
/* ============================== ▼▼▼ main ▼▼▼ ============================== */
.main {
  line-height: 1.6;
}

/* ============================== ▼▼▼ トップmain ▼▼▼ ============================== */
#top {
  /* .main */
}
#top .main {
  /* section */
}
#top .main section {
  padding: 70px 0;
  /* ------------------------------ ▽▽▽ about ▽▽▽ ------------------------------ */
  /* &:first-of-type */
  /* ------------------------------ △△△ aboutここまで △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ SPONSORS ▽▽▽ ------------------------------ */
  /* &:nth-of-type(2) */
  /* ------------------------------ △△△ SPONSORSここまで △△△ ------------------------------ */
}
#top .main section h2 {
  text-align: center;
  font-family: "Cinzel", serif;
  color: #FC9DB8;
  font-size: 250%;
  margin-bottom: 50px;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section h2 {
    margin-bottom: 20px;
    font-size: 180%;
  }
}
#top .main section h3 {
  font-size: 130%;
  color: #b5874b;
  font-weight: bold;
}
#top .main section:first-of-type {
  /* article */
}
#top .main section:first-of-type article {
  width: 1000px;
  margin: 0px auto;
  /* ---------- ▽▽▽ BoMの説明部分 ▽▽▽ ---------- */
  /* div:first-of-type */
  /* ---------- △△△ BoMの説明部分ここまで △△△ ---------- */
  /* ---------- ▽▽▽ Facebook埋込 ▽▽▽ ---------- */
  /* div:nth-of-type(2) */
  /* ---------- △△△ Facebook埋込ここまで △△△ ---------- */
}
#top .main section:first-of-type article h3 {
  font-family: "游明朝体", "Yu Mincho", serif;
  margin: 40px 0 5px;
}
#top .main section:first-of-type article div:first-of-type {
  width: 700px;
  float: left;
  /* img.bom + p */
  /* ul */
}
#top .main section:first-of-type article div:first-of-type img.bom {
  width: 100%;
  height: auto;
  margin: 10px 0 20px;
}
#top .main section:first-of-type article div:first-of-type img.bom + p {
  text-align: center;
  font-size: 130%;
  color: #dd2a14;
}
#top .main section:first-of-type article div:first-of-type img.bom + p strong {
  border-bottom: 1px solid #dd2a14;
  padding-bottom: 5px;
}
#top .main section:first-of-type article div:first-of-type ul {
  margin-top: 30px;
  text-align: center;
  width: 100%;
  /* li */
}
#top .main section:first-of-type article div:first-of-type ul li {
  display: inline-block;
  width: 148.5px;
  /* a */
}
#top .main section:first-of-type article div:first-of-type ul li img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:first-of-type article div:first-of-type ul li img {
    width: 95%;
  }
}
#top .main section:first-of-type article div:first-of-type ul li a {
  display: block;
  width: 136px;
  height: 24px;
  line-height: 24px;
  background: url(../img/top/arrow_gold.png) no-repeat 90% center/5px;
  background-color: #d6af72;
  border-radius: 12px;
  text-align: center;
  font-size: 85%;
  color: #fff;
  margin: 5px auto 0;
}
#top .main section:first-of-type article div:first-of-type ul li a span.sp {
  display: none;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:first-of-type article div:first-of-type ul li a span.sp {
    display: inline;
  }
  #top .main section:first-of-type article div:first-of-type ul li a span.pc {
    display: none;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:first-of-type article div:first-of-type ul li a {
    width: 95%;
  }
}
#top .main section:first-of-type article div:first-of-type ul li ~ li {
  margin-left: 25px;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:first-of-type article div:first-of-type ul li ~ li {
    margin-left: 0;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:first-of-type article div:first-of-type ul li {
    width: 33.33333%;
    width: -webkit-calc(100%/3);
    width: 33.3333333333%;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:first-of-type article div:first-of-type {
    width: 100%;
  }
}
#top .main section:first-of-type article div:nth-of-type(2) {
  width: 250px;
  float: right;
}
#top .main section:first-of-type article div:nth-of-type(2) iframe {
  width: 100%;
  height: 850px;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:first-of-type article div:nth-of-type(2) {
    display: none;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:first-of-type article {
    width: 95%;
  }
}
#top .main section:first-of-type a.fb {
  display: none;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:first-of-type a.fb {
    display: block;
    background: rgb(240,0,15);
background: linear-gradient(90deg, rgba(240,0,15,1) 0%, rgba(190,0,165,1) 100%);
    width: 85%;
    margin: 30px auto 0;
    height: 50px;
    line-height: 50px;
    color: #fff;
    text-align: center;
  }
}
#top .main section:nth-of-type(2) {
  background: #efdfdf;
  /* article */
}
#top .main section:nth-of-type(2) article {
  width: 1000px;
  margin: 0 auto;
  /* ul */
  /* ---------- ▽▽▽ メインオフィシャルスポンサー ▽▽▽ ---------- */
  /* &.main */
  /* ---------- △△△ メインオフィシャルスポンサーここまで △△△ ---------- */
  /* ---------- ▽▽▽ ダイアモンドオフィシャルスポンサー ▽▽▽ ---------- */
  /* &.diamond */
  /* ---------- △△△ ダイアモンドオフィシャルスポンサーここまで △△△ ---------- */
  /* ---------- ▽▽▽ プラチナオフィシャルスポンサー ▽▽▽ ---------- */
  /* &.platinum */
  /* ---------- △△△ プラチナオフィシャルスポンサーここまで △△△ ---------- */
  /* ---------- ▽▽▽ ゴールドオフィシャルスポンサー ▽▽▽ ---------- */
  /* &.gold */
  /* ---------- △△△ ゴールドオフィシャルスポンサーここまで △△△ ---------- */
  /* ---------- ▽▽▽ オフィシャルスポンサー ▽▽▽ ---------- */
  /* &.official */
  /* ---------- △△△ オフィシャルスポンサーここまで △△△ ---------- */
  /* ---------- ▽▽▽ 運営 ▽▽▽ ---------- */
  /* &.kyouryoku */
  /* ---------- △△△ 運営ここまで △△△ ---------- */
  /* ---------- ▽▽▽ ビューティーキャンプ講師 ▽▽▽ ---------- */
  /* &.camp */
  /* ---------- △△△ ビューティーキャンプ講師ここまで △△△ ---------- */
}
#top .main section:nth-of-type(2) article h3 {
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 170%;
  margin-bottom: 30px;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:nth-of-type(2) article h3 {
    font-size: 130%;
    margin-bottom: 15px;
  }
}
#top .main section:nth-of-type(2) article ul {
  /* li */
}
#top .main section:nth-of-type(2) article ul li {
  position: relative;
  float: left;
  /* a */
}
#top .main section:nth-of-type(2) article ul li a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}
#top .main section:nth-of-type(2) article ul li a:hover {
  opacity: 0.8;
}
#top .main section:nth-of-type(2) article ul li div {
  background: #fff;
  width: 100%;
  height: 100%;
}
#top .main section:nth-of-type(2) article ul li img {
  width: auto;
  max-width: 80%;
  height: auto;
  max-height: 80%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#top .main section:nth-of-type(2) article.main {
  /* ul */
}
#top .main section:nth-of-type(2) article.main ul {
  /* li */
  /* @media only screen */
}
#top .main section:nth-of-type(2) article.main ul li {
  width: 480px;
  height: 250px;
  margin: 30px 40px 0 0;
}
#top .main section:nth-of-type(2) article.main ul li:nth-of-type(2n) {
  margin-right: 0;
}
#top .main section:nth-of-type(2) article.main ul li:first-of-type, #top .main section:nth-of-type(2) article.main ul li:nth-of-type(2) {
  margin-top: 0;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:nth-of-type(2) article.main ul {
    /* li */
  }
  #top .main section:nth-of-type(2) article.main ul li {
    width: 48%;
    height: 130px;
    margin: 20px 4% 0 0;
  }
  #top .main section:nth-of-type(2) article.main ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
#top .main section:nth-of-type(2) article.diamond {
  /* ul */
}
#top .main section:nth-of-type(2) article.diamond ul {
  /* li */
  /* @media only screen */
}
#top .main section:nth-of-type(2) article.diamond ul li {
  width: 300px;
  height: 170px;
  margin: 30px 50px 0 0;
}
#top .main section:nth-of-type(2) article.diamond ul li:nth-of-type(3n) {
  margin-right: 0;
}
#top .main section:nth-of-type(2) article.diamond ul li:first-of-type, #top .main section:nth-of-type(2) article.diamond ul li:nth-of-type(2), #top .main section:nth-of-type(2) article.diamond ul li:nth-of-type(3) {
  margin-top: 0;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:nth-of-type(2) article.diamond ul {
    /* li */
  }
  #top .main section:nth-of-type(2) article.diamond ul li {
    width: 48%;
    height: 130px;
    margin: 20px 4% 0 0;
  }
  #top .main section:nth-of-type(2) article.diamond ul li:nth-of-type(3n) {
    margin-right: 4%;
  }
  #top .main section:nth-of-type(2) article.diamond ul li:nth-of-type(2n) {
    margin-right: 0;
  }
  #top .main section:nth-of-type(2) article.diamond ul li:nth-of-type(3) {
    margin-top: 20px;
  }
}
#top .main section:nth-of-type(2) article.platinum {
  /* ul */
}
#top .main section:nth-of-type(2) article.platinum ul {
	text-align:center;
  /* li */
  /* @media only screen */
}
#top .main section:nth-of-type(2) article.platinum ul li {
  width: 226px;
  height: 140px;
  margin: 30px auto 0 auto;
  float: none;
  display: inline-block;
}
#top .main section:nth-of-type(2) article.platinum ul li:nth-of-type(4n) {
  margin-right: 0;
}
#top .main section:nth-of-type(2) article.platinum ul li:first-of-type, #top .main section:nth-of-type(2) article.platinum ul li:nth-of-type(2), #top .main section:nth-of-type(2) article.platinum ul li:nth-of-type(3), #top .main section:nth-of-type(2) article.platinum ul li:nth-of-type(4) {
  margin-top: 0;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:nth-of-type(2) article.platinum ul {
    /* li */
  }
  #top .main section:nth-of-type(2) article.platinum ul li {
    width: 31%;
    height: 90px;
    margin: 15px 3.5% 0 0;
  }
  #top .main section:nth-of-type(2) article.platinum ul li:nth-of-type(4n) {
    margin-right: 3.5%;
  }
  #top .main section:nth-of-type(2) article.platinum ul li:nth-of-type(3n) {
    margin-right: 0;
  }
  #top .main section:nth-of-type(2) article.platinum ul li:nth-of-type(4) {
    margin-top: 15px;
  }
}
#top .main section:nth-of-type(2) article.gold {
  /* ul */
}
#top .main section:nth-of-type(2) article.gold ul {
  /* li */
  /* @media only screen */
}
#top .main section:nth-of-type(2) article.gold ul li {
  width: 180px;
  height: 110px;
  margin: 25px 25px 0 0;
}
#top .main section:nth-of-type(2) article.gold ul li:nth-of-type(5n) {
  margin-right: 0;
}
#top .main section:nth-of-type(2) article.gold ul li:first-of-type, #top .main section:nth-of-type(2) article.gold ul li:nth-of-type(2), #top .main section:nth-of-type(2) article.gold ul li:nth-of-type(3), #top .main section:nth-of-type(2) article.gold ul li:nth-of-type(4), #top .main section:nth-of-type(2) article.gold ul li:nth-of-type(5) {
  margin-top: 0;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:nth-of-type(2) article.gold ul {
    /* li */
  }
  #top .main section:nth-of-type(2) article.gold ul li {
    width: 31%;
    height: 90px;
    margin: 15px 3.5% 0 0;
  }
  #top .main section:nth-of-type(2) article.gold ul li:nth-of-type(5n) {
    margin-right: 3.5%;
  }
  #top .main section:nth-of-type(2) article.gold ul li:nth-of-type(3n) {
    margin-right: 0;
  }
  #top .main section:nth-of-type(2) article.gold ul li:nth-of-type(4), #top .main section:nth-of-type(2) article.gold ul li:nth-of-type(5) {
    margin-top: 15px;
  }
}
#top .main section:nth-of-type(2) article.official {
  /* ul */
}
#top .main section:nth-of-type(2) article.official ul {
  /* li */
  /* @media only screen */
}
#top .main section:nth-of-type(2) article.official ul li {
  width: 150px;
  height: 90px;
  margin: 20px 20px 0 0;
}
#top .main section:nth-of-type(2) article.official ul li:nth-of-type(6n) {
  margin-right: 0;
}
#top .main section:nth-of-type(2) article.official ul li:first-of-type, #top .main section:nth-of-type(2) article.official ul li:nth-of-type(2), #top .main section:nth-of-type(2) article.official ul li:nth-of-type(3), #top .main section:nth-of-type(2) article.official ul li:nth-of-type(4), #top .main section:nth-of-type(2) article.official ul li:nth-of-type(5), #top .main section:nth-of-type(2) article.official ul li:nth-of-type(6) {
  margin-top: 0;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:nth-of-type(2) article.official ul {
    /* li */
  }
  #top .main section:nth-of-type(2) article.official ul li {
    width: 23%;
    height: 70px;
    margin: 10px 2.6% 0 0;
  }
  #top .main section:nth-of-type(2) article.official ul li:nth-of-type(6n) {
    margin-right: 2.6%;
  }
  #top .main section:nth-of-type(2) article.official ul li:nth-of-type(4n) {
    margin-right: 0;
  }
  #top .main section:nth-of-type(2) article.official ul li:nth-of-type(5), #top .main section:nth-of-type(2) article.official ul li:nth-of-type(6) {
    margin-top: 10px;
  }
}
#top .main section:nth-of-type(2) article.unei ul, #top .main section:nth-of-type(2) article.kaijou ul, #top .main section:nth-of-type(2) article.kyouryoku ul {
  text-align: center;
}
#top .main section:nth-of-type(2) article.unei ul li, #top .main section:nth-of-type(2) article.kaijou ul li, #top .main section:nth-of-type(2) article.kyouryoku ul li {
  width: 150px;
  height: 90px;
  margin: 0px auto 0;
  float: none;
  display: inline-block;
}
#top .main section:nth-of-type(2) article.unei ul li ~ li, #top .main section:nth-of-type(2) article.kaijou ul li ~ li, #top .main section:nth-of-type(2) article.kyouryoku ul li ~ li {
  margin-left: 10px;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:nth-of-type(2) article.unei ul li, #top .main section:nth-of-type(2) article.kaijou ul li, #top .main section:nth-of-type(2) article.kyouryoku ul li {
    width: 30%;
    height: 70px;
  }
  #top .main section:nth-of-type(2) article.unei ul li ~ li, #top .main section:nth-of-type(2) article.kaijou ul li ~ li, #top .main section:nth-of-type(2) article.kyouryoku ul li ~ li {
    margin-left: 1%;
  }
}
#top .main section:nth-of-type(2) article.camp {
  /* ul */
}
#top .main section:nth-of-type(2) article.camp ul {
  /* li */
  /* @media only screen */
}
#top .main section:nth-of-type(2) article.camp ul li {
  width: 150px;
  height: 120px;
  margin: 20px 20px 0 0;
}
#top .main section:nth-of-type(2) article.camp ul li:nth-of-type(6n) {
  margin-right: 0;
}
#top .main section:nth-of-type(2) article.camp ul li:first-of-type, #top .main section:nth-of-type(2) article.camp ul li:nth-of-type(2), #top .main section:nth-of-type(2) article.camp ul li:nth-of-type(3), #top .main section:nth-of-type(2) article.camp ul li:nth-of-type(4), #top .main section:nth-of-type(2) article.camp ul li:nth-of-type(5), #top .main section:nth-of-type(2) article.camp ul li:nth-of-type(6) {
  margin-top: 0;
}
#top .main section:nth-of-type(2) article.camp ul li img {
  max-width: auto;
  max-width: none;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:nth-of-type(2) article.camp ul {
    /* li */
  }
  #top .main section:nth-of-type(2) article.camp ul li {
    width: 23%;
    height: 90px;
    margin: 10px 2.6% 0 0;
  }
  #top .main section:nth-of-type(2) article.camp ul li:nth-of-type(6n) {
    margin-right: 2.6%;
  }
  #top .main section:nth-of-type(2) article.camp ul li:nth-of-type(4n) {
    margin-right: 0;
  }
  #top .main section:nth-of-type(2) article.camp ul li:nth-of-type(5), #top .main section:nth-of-type(2) article.camp ul li:nth-of-type(6) {
    margin-top: 10px;
  }
}
#top .main section:nth-of-type(2) article ~ article {
  margin-top: 70px;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:nth-of-type(2) article ~ article {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section:nth-of-type(2) article {
    width: 95%;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #top .main section {
    padding: 50px 0;
  }
}

/* #top */
/* ============================== ▼▼▼ 中ページメイン ▼▼▼ ============================== */
#in {
  /* .main */
}
#in .main {
  padding-bottom: 250px;
  /* ------------------------------ ▽▽▽ スケジュール ▽▽▽ ------------------------------ */
  /* &.schedule */
  /* ------------------------------ △△△ スケジュールここまで △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ ファイナリスト ▽▽▽ ------------------------------ */
  /* &.finalist */
  /* ------------------------------ △△△ ファイナリストここまで △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ ビューティーキャンプ ▽▽▽ ------------------------------ */
  /* &.camp */
  /* ------------------------------ △△△ ビューティーキャンプここまで △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ エントリー ▽▽▽ ------------------------------ */
  /* &.entry */
  /* ------------------------------ △△△ エントリーここまで △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ スポンサー ▽▽▽ ------------------------------ */
  /* &.sponsor */
  /* ------------------------------ △△△ スポンサーここまで △△△ ------------------------------ */
  /* ------------------------------ ▽▽▽ プライバシーポリシー ▽▽▽ ------------------------------ */
  /* &.privacy */
  /* ------------------------------ △△△ プライバシーポリシーここまで △△△ ------------------------------ */
}
#in .main h2 {
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 270%;
  height: 200px;
  line-height: 200px;
  color: #fff;
  text-shadow: 0px 0px 10px #FC9DB8;
  margin-bottom: 70px;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #in .main h2 {
    height: 120px;
    line-height: 120px;
    font-size: 250%;
  }
}
#in .main section {
  width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #in .main section {
    width: 95%;
  }
}
#in .main.schedule {
  /* section */
}
#in .main.schedule h2 {
  /*background: url(../img/schedule/hero.jpg) no-repeat center/cover;*/
  background-color:#fbe8fc;
}
#in .main.schedule p {
  text-align: center;
  margin: 100px 0 0;
  font-size: 200%;
}
#in .main.schedule section {
  /* table */
  /* p */
}
#in .main.schedule section h3 {
  font-size: 150%;
  color: #FC9DB8;
  font-family: "游明朝体", "Yu Mincho", serif;
  margin-bottom: 15px;
  border-bottom: 2px solid #FC9DB8;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #in .main.schedule section h3 {
    font-size: 130%;
  }
}
#in .main.schedule section table {
  width: 100%;
  /* th */
  /* td */
  /* tr:last-of-type */
}
#in .main.schedule section table th {
  text-align: left;
  width: 30%;
  border-bottom: #d6af72 dotted 1px;
  padding: 10px 0;
  vertical-align: middle;
}
#in .main.schedule section table th span {
  display: inline-block;
  font-size: 80%;
  margin-right: 10px;
}
#in .main.schedule section table td {
  border-bottom: #d6af72 dotted 1px;
  padding: 10px 0;
  vertical-align: middle;
  /* ul */
  /* dl */
}
#in .main.schedule section table td ul {
  margin-top: 0.8em;
  /* li */
}
#in .main.schedule section table td ul li {
  position: relative;
  padding-left: 1em;
}
#in .main.schedule section table td ul li:before {
  content: "▶︎";
  color: #d6af72;
  font-size: 70%;
  position: absolute;
  top: 15%;
  left: 0;
}
#in .main.schedule section table td small {
  display: block;
  font-size: 90%;
}
#in .main.schedule section table td dl {
  margin-top: 0.8em;
}
#in .main.schedule section table td dl dt {
  color: #FC9DB8;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #in .main.schedule section table td {
    padding-left: 1em;
  }
}
#in .main.schedule section table tr:last-of-type th, #in .main.schedule section table tr:last-of-type td {
  border-bottom: none;
}
#in .main.schedule section + section {
  margin-top: 50px;
}
#in .main.schedule section p {
  font-size: 100%;
  text-align: left;
  margin: 0;
  /* & + table */
}
#in .main.schedule section p + table {
  margin-top: 30px;
}
#in .main.schedule section p + table th, #in .main.schedule section p + table td {
  border-top: #d6af72 dotted 1px;
}
#in .main.finalist {
  /* ul */
}
#in .main.finalist h2 {
  /*background: url(../img/finalist/hero.jpg) no-repeat center/cover;*/
  background-color:#fbe8fc;
}
#in .main.finalist p.coming {
  text-align: center;
  font-size: 200%;
}
#in .main.finalist ul {
  width: 1020px;
  margin: 0px auto;
  line-height: 1;
  padding:0;
  /* li */
}
#in .main.finalist ul li {
  width: 235px;
  display: inline-block;
  margin: 0 20px 40px 0;
  padding: 15px;
  background: #efdfdf;
  vertical-align: top;
  /* p.daihyou */
}
#in .main.finalist ul li img {
  width: 100%;
  height: auto;
}
#in .main.finalist ul li p.name {
  text-align: center;
  font-size: 120%;
  font-family: "游明朝体", "Yu Mincho", serif;
  font-weight: bold;
  margin-top: 15px;
}
#in .main.finalist ul li p.daihyou {
  margin-top: 5px;
  color: #d6af72;
  font-size: 85%;
  font-weight: bold;
  text-align: center;
}
#in .main.finalist ul li p.daihyou br {
  display: none;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #in .main.finalist ul li p.daihyou br {
    display: inline;
  }
}
#in .main.finalist ul li a {
  display: inline-block;
  background: #fff;
  border: 1px solid #FC9DB8;
  text-align: center;
  width: 100%;
  height: 30px;
  line-height: 28px;
  border-radius: 15px;
  color: #FC9DB8;
  margin-top: 15px;
}
#in .main.finalist ul li:nth-of-type(4n) {
  margin-right: 0;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #in .main.finalist ul {
    /* li */
  }
  #in .main.finalist ul li {
    width: 46%;
    margin: 0 4% 30px 0;
    padding: 10px;
  }
  #in .main.finalist ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #in .main.finalist ul {
    width: 95%;
  }
}
#in .main.camp {
  /* section */
}
#in .main.camp h2 {
  /*background: url(../img/camp/hero.jpg) no-repeat center/cover;*/
  background-color:#fbe8fc;
}
#in .main.camp section {
  /* dl */
}
#in .main.camp section dl {
  margin-top: 50px;
  /* dt */
  /* dd */
}
#in .main.camp section dl dt {
  color: #FC9DB8;
  font-weight: bold;
  border-bottom: 1px solid #FC9DB8;
  margin-bottom: 10px;
}
#in .main.camp section dl dt ~ dt {
  margin-top: 30px;
}
#in .main.camp section dl dd {
  /* ul */
  /* &.koushi */
}
#in .main.camp section dl dd ul {
  /* li */
}
#in .main.camp section dl dd ul li {
  display: inline-block;
  margin-right: 1.5em;
}
#in .main.camp section dl dd ul li span {
  color: #d6af72;
}
#in .main.camp section dl dd.koushi {
  /* div */
}
#in .main.camp section dl dd.koushi img {
  width: 400px;
  height: auto;
  float: left;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #in .main.camp section dl dd.koushi img {
    width: 100%;
    max-width: 400px;
    float: none;
  }
}
#in .main.camp section dl dd.koushi div {
  width: 570px;
  float: right;
  /* ul.career */
  /* ul.career2 */
}
#in .main.camp section dl dd.koushi div h3 {
  color: #FC9DB8;
}
#in .main.camp section dl dd.koushi div ul.career {
  margin-bottom: 1.5em;
  /* li */
}
#in .main.camp section dl dd.koushi div ul.career li {
  display: block;
  position: relative;
  padding-left: 0.8em;
}
#in .main.camp section dl dd.koushi div ul.career li:before {
  content: "●";
  color: #d6af72;
  font-size: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 0.25em;
}
#in .main.camp section dl dd.koushi div ul.career2 {
  margin-top: 1.5em;
  /* li */
}
#in .main.camp section dl dd.koushi div ul.career2 li {
  display: block;
  position: relative;
  padding-left: 1em;
}
#in .main.camp section dl dd.koushi div ul.career2 li:before {
  content: "・";
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #in .main.camp section dl dd.koushi div {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
}
#in .main.entry {
  /* section */
}
#in .main.entry h2 {
  /*background: url(../img/entry/hero.jpg) no-repeat center/cover;*/
  background-color:#fbe8fc;
}
#in .main.entry section {
  /* ul */
  /* table.nittei */
  /* table */
  /* .attention */
  /* .send */
  /* ---------- ▽▽▽ 確認画面 ▽▽▽ ---------- */
  /* &.container */
  /* ---------- △△△ 確認画面ここまで △△△ ---------- */
}
#in .main.entry section h3 {
  background: #d6af72;
  color: #fff;
  padding: 5px 0px 5px 1em;
  margin-bottom: 30px;
  font-size: 120%;
}
#in .main.entry section h4 {
  color: #FC9DB8;
  border-bottom: 1px solid #FC9DB8;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-weight: normal;
  font-size: 110%;
}
#in .main.entry section h4 ~ h4 {
  margin-top: 40px;
}
#in .main.entry section h5 {
  color: #d6af72;
  font-weight: normal;
  margin-bottom: 7px;
}
#in .main.entry section h5 ~ h5 {
  margin-top: 30px;
}
#in .main.entry section ul {
  /* li */
}
#in .main.entry section ul li {
  position: relative;
  padding-left: 1em;
}
#in .main.entry section ul li:before {
  content: "●";
  font-size: 70%;
  position: absolute;
  left: 0;
  top: 0.3em;
  color: #d6af72;
}
#in .main.entry section dl {
  margin-top: 1em;
}
#in .main.entry section table.nittei {
  width: 100%;
}
#in .main.entry section table.nittei th {
  width: 10%;
  padding-bottom: 10px;
  color: #FC9DB8;
  font-weight: normal;
  text-align: left;
}
#in .main.entry section table.nittei td {
  padding-bottom: 10px;
  width: 92%;
}
#in .main.entry section a.oubo {
  display: block;
  margin-top: 1em;
  width: 15em;
  background: #efdfdf;
  height: 3em;
  line-height: 3em;
  text-align: center;
  color: #FC9DB8;
  text-decoration: none;
}
#in .main.entry section table.formTable {
  margin-top: 30px;
  width: 100%;
  /* td */
}
#in .main.entry section table.formTable th, #in .main.entry section table.formTable td {
  border-top: 1px #d6af72 dotted;
  padding: 30px 0px;
}
#in .main.entry section table.formTable th {
  text-align: left;
  color: #FC9DB8;
  font-weight: normal;
  vertical-align: middle;
  width: 20em;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #in .main.entry section table.formTable th, #in .main.entry section table.formTable td {
    width: 100%;
    display: block;
  }
  #in .main.entry section table.formTable th {
    padding: 15px 0px 5px;
  }
  #in .main.entry section table.formTable td {
    border-top: none;
    padding: 0px 0px 15px;
  }
}
#in .main.entry section table.formTable td {
  /* .select-wrapper */
}
#in .main.entry section table.formTable td input[type=text], #in .main.entry section table.formTable td textarea {
  background: #eeeeee;
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
}
#in .main.entry section table.formTable td input[type=text] {
  width: 60%;
  height: 3em;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #in .main.entry section table.formTable td input[type=text] {
    width: 100%;
  }
}
#in .main.entry section table.formTable td input.mini {
  width: 7em;
}
#in .main.entry section table.formTable td input.mini2 {
  width: 12em;
}
#in .main.entry section table.formTable td textarea {
  width: 100%;
  height: 12em;
}
#in .main.entry section table.formTable td .select-wrapper {
  float: left;
  height: 3em;
  line-height: 3em;
  width: 80px;
  overflow: hidden;
  -webkit-appearance: none;
  border-radius: 0;
  background: #eeeeee;
  background-image: url(../entry/img/arrow.png);
  background-position: 90% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin-right: 10px;
}
#in .main.entry section table.formTable td .select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100px;
  margin: 0;
  border: 0;
  outline: none;
  padding-left: 5px;
  background: transparent;
}
#in .main.entry section .attention {
  background: #efdfdf;
  padding: 25px;
  margin: 30px 0px 50px;
}
#in .main.entry section .attention h5 {
  color: #FC9DB8;
  margin-bottom: 5px;
}
#in .main.entry section .attention h5 ~ h5 {
  margin-top: 30px;
}
#in .main.entry section .attention ol {
  margin-left: 1.5em;
}
#in .main.entry section .send {
  text-align: center;
}
#in .main.entry section .send input[type=submit], #in .main.entry section .send input[type=reset], #in .main.entry section .send input[type=button] {
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: #FC9DB8 1px solid;
  color: #FC9DB8;
  background: #fff;
  width: 10em;
  padding: 10px 0px;
  font-size: 105%;
}
#in .main.entry section .send input[type=submit]:hover, #in .main.entry section .send input[type=reset]:hover, #in .main.entry section .send input[type=button]:hover {
  cursor: pointer;
  background: #FC9DB8;
  color: #fff;
}
#in .main.entry section + section {
  margin-top: 50px;
}
#in .main.entry section.container {
  /* table */
  /* .submit_area */
}
#in .main.entry section.container p {
  text-align: center;
}
#in .main.entry section.container table {
  margin-top: 30px;
  width: 100%;
}
#in .main.entry section.container table th, #in .main.entry section.container table td {
  border-top: 1px #d6af72 dotted;
  padding: 30px 0px 0px;
}
#in .main.entry section.container table th {
  text-align: left;
  color: #FC9DB8;
  font-weight: normal;
  vertical-align: middle;
  width: 20em;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #in .main.entry section.container table th, #in .main.entry section.container table td {
    width: 100%;
    display: block;
  }
  #in .main.entry section.container table th {
    padding: 15px 0px 5px;
  }
  #in .main.entry section.container table td {
    border-top: none;
    padding: 0px 0px 0px 1em;
  }
}
#in .main.entry section.container .submit_area {
  text-align: center;
  margin-top: 50px;
}
#in .main.entry section.container .submit_area input[type=submit], #in .main.entry section.container .submit_area input[type=button] {
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: #FC9DB8 1px solid;
  color: #FC9DB8;
  background: #fff;
  width: 10em;
  padding: 10px 0px;
  font-size: 105%;
}
#in .main.entry section.container .submit_area input[type=submit] {
  margin-right: 1.5em;
}
#in .main.entry section.container .submit_area input[type=submit]:hover, #in .main.entry section.container .submit_area input[type=button]:hover {
  cursor: pointer;
  background: #FC9DB8;
  color: #fff;
}
#in .main.sponsor {
  /* section */
}
#in .main.sponsor h2 {
  /*background: url(../img/sponsor/hero.jpg) no-repeat center/cover;*/
  background-color:#fbe8fc;
}
#in .main.sponsor section {
  /* address */
}
#in .main.sponsor section h3 {
  color: #d6af72;
  text-align: center;
  font-size: 130%;
  margin-bottom: 20px;
}
#in .main.sponsor section address {
  display: inline-block;
  border: 1px solid #FC9DB8;
  padding: 30px;
  margin-top: 20px;
  font-style: normal;
}
#in .main.sponsor section address h4 {
  color: #FC9DB8;
  border-bottom: 1px dotted #FC9DB8;
  margin-bottom: 10px;
}
#in .main.privacy {
  /* h3 */
  /* ol */
}
#in .main.privacy h2 {
  /*background: url(../img/camp/hero.jpg) no-repeat center/cover;*/
  background-color:#fbe8fc;
}
#in .main.privacy h3 {
  font-size: 110%;
  color: #FC9DB8;
  border-bottom: 1px solid #FC9DB8;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
#in .main.privacy h3 ~ h3 {
  margin-top: 30px;
}
#in .main.privacy p + p {
  margin-top: 1.5em;
}
#in .main.privacy ol {
  margin: 1.5em 0 0 1.2em;
}
#in .main.privacy ol li ~ li {
  margin-top: 5px;
}

/* #in */
/* ============================== ▼▼▼ footer ▼▼▼ ============================== */
.footer {
  background: #DA5376;
  padding: 30px 0;
  text-align: center;
  width: 100%;
}
.footer p {
  margin-top: 10px;
  color: #fff;
}
.footer p + p {
  font-size: 85%;
}
.footer img {
  width: 250px;
  height: auto;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  .footer img {
    max-width: 50%;
  }
}

/* .footer */
/* ============================== ▼▼▼ 中ページ footer を最下部にする設定 ▼▼▼ ============================== */
#in {
  position: relative;
  height: auto;
  min-height: 100vh;
}
#in .footer {
  position: absolute;
  bottom: 0;
}

/* in */
/* css *//*# sourceMappingURL=common.css.map */
