@charset "UTF-8";
/*---------------------------------------
  reset
----------------------------------------*/
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;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

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;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*---------------------------------------
  body
----------------------------------------*/
body {
  background: #1F1E1C;
  color: #E0E0E0;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/*---------------------------------------
  a
----------------------------------------*/
a {
  color: #E0E0E0;
  text-decoration: none;
  transition: .5s;
}

a:hover {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

/*---------------------------------------
  li
----------------------------------------*/
li {
  list-style: none;
}

/*---------------------------------------
  clearfix
----------------------------------------*/
.cf {
  zoom: 100%;
}

.cf:after {
  content: ".";
  clear: both;
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}

/*---------------------------------------
  float
----------------------------------------*/
.float-l {
  float: left;
}

.float-r {
  float: right;
}

/*---------------------------------------
  text-align
----------------------------------------*/
.txt-l {
  text-align: left !important;
}

.txt-r {
  text-align: right !important;
}

.txt-c {
  text-align: center !important;
}

/*---------------------------------------
  mediaquery
----------------------------------------*/
.pc-b {
  display: block;
}

@media screen and (max-width: 1024px) {
  .pc-b {
    display: none;
  }
}

.pc-i {
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .pc-i {
    display: none;
  }
}

.sp-b {
  display: none;
}

@media screen and (max-width: 1024px) {
  .sp-b {
    display: block;
  }
}

.sp-i {
  display: none;
}

@media screen and (max-width: 1024px) {
  .sp-i {
    display: inline-block;
  }
}

/*---------------------------------------
  note
----------------------------------------*/
.note {
  font-size: 14px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #E0E0E0;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-top: 60px;
}

@media screen and (max-width: 1024px) {
  .note {
    font-size: 12px;
    font-size: 0.75rem;
    margin: 30px 0 0;
    line-height: 1.6;
  }
}

@media screen and (max-width: 320px) {
  .note {
    margin: 10px 0 0;
  }
}

@media only screen and (max-width: 320px) {
  .note {
    font-size: 10px;
    font-size: 0.625rem;
  }
}

.note-indent {
  text-indent: -12.8px;
  text-indent: -0.8rem;
  padding-left: 12.8px;
  padding-left: 0.8rem;
}

@media only screen and (max-width: 320px) {
  .note-indent {
    text-indent: -0.7rem;
    padding-left: 0.8rem;
  }
}

/*---------------------------------------
  h
----------------------------------------*/
h1 {
  text-align: center;
  padding-bottom: 70px;
}

@media only screen and (max-width: 1024px) {
  h1 {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 1024px) {
  h1 img {
    width: 80%;
  }
}

h2 {
  font-size: 32px;
  font-size: 32px;
  font-size: 2rem;
  font-weight: lighter;
}

@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

h3 {
  font-size: 24px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: lighter;
}

@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*---------------------------------------
  p
----------------------------------------*/
p {
  margin-top: 30px;
  line-height: 1.5;
}

@media only screen and (max-width: 1024px) {
  p {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 20px;
  }
}

/*---------------------------------------
  main-inner
----------------------------------------*/
.main-inner {
  width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 100px;
}

@media only screen and (max-width: 1024px) {
  .main-inner {
    width: 100%;
    margin-top: 50px;
    padding: 0 7%;
  }
}

.main-reserve .main-inner, .main-access .main-inner, .main-picture .main-inner {
  width: 800px;
}

@media only screen and (max-width: 1024px) {
  .main-reserve .main-inner, .main-access .main-inner, .main-picture .main-inner {
    width: 100%;
  }
}

/*---------------------------------------
  header
----------------------------------------*/
header {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  position: fixed;
  padding: 20px 0;
  z-index: 9999;
  box-sizing: border-box;
}

@media only screen and (max-width: 1024px) {
  header {
    padding: 3%;
    height: auto;
  }
}

@media only screen and (max-width: 767px) {
  header {
    height: 65px;
  }
}

header .main-inner {
  width: 1200px;
  margin-top: 0;
  padding-top: 0;
}

@media only screen and (max-width: 1024px) {
  header .main-inner {
    width: 100%;
    padding: 0;
  }
}

header h1.float-l {
  padding: 0;
  box-sizing: border-box;
}

@media only screen and (max-width: 1024px) {
  header h1.float-l {
    text-align: left;
    width: 60%;
  }
  header h1.float-l img {
    width: 100%;
  }
}

header h1.float-l a {
  vertical-align: middle;
}

header h1.float-l a img {
  vertical-align: middle;
}

header .cont-menu {
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  box-sizing: border-box;
}

@media only screen and (max-width: 1024px) {
  header .cont-menu {
    font-size: 28px;
    font-size: 1.75rem;
    display: none;
    background: #000000;
    float: none;
    position: absolute;
    top: 176px;
    left: 0;
    width: 100%;
  }
  header .cont-menu.active {
    display: inline-block;
  }
}

@media only screen and (max-width: 767px) {
  header .cont-menu {
    font-size: 14px;
    font-size: 0.875rem;
    top: 65px;
  }
}

header li {
  -ms-flex: 5;
      flex: 5;
  height: 55px;
  border-left: #E0E0E0 solid 1px;
  box-sizing: border-box;
}

@media only screen and (max-width: 1024px) {
  header li {
    width: 100%;
    height: auto;
    border-top: 2px solid #444444;
    border-left: none;
  }
}

@media only screen and (max-width: 767px) {
  header li {
    border-top: 1px solid #444444;
  }
}

header li:first-child {
  padding-left: 0;
  border-left: 0;
}

header li a {
  box-sizing: border-box;
  display: inline-block;
  width: 140px;
  height: 100%;
  padding: 14% 20px;
  box-sizing: border-box;
}

@media only screen and (max-width: 1024px) {
  header li a {
    width: 100%;
    height: auto;
    padding: 5% 0;
  }
}

.btn-menu {
  display: none;
  margin: 0;
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  .btn-menu {
    font-size: 28px;
    font-size: 1.75rem;
    display: inline-block;
    top: 0;
    right: 0;
    z-index: 9998;
    padding: 3.7%;
    background: #000000;
  }
}

@media only screen and (max-width: 767px) {
  .btn-menu {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 3%;
  }
}

/*---------------------------------------
  main-visual
----------------------------------------*/
.main-visual {
  background: #000000;
  height: 560px;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .main-visual {
    height: auto;
  }
  .main-visual img {
    width: 100%;
  }
}

/*---------------------------------------
  main-profile
----------------------------------------*/
.main-profile {
  background: url(../img/bg_profile.png) no-repeat;
  background-position: bottom left;
  padding-bottom: 100px;
}

@media only screen and (max-width: 1024px) {
  .main-profile {
    padding-bottom: 50px;
  }
  .main-profile h2 {
    margin-top: 30px;
  }
}

.main-profile h3 {
  margin-top: 30px;
}

.main-profile .float-l {
  width: 400px;
}

@media only screen and (max-width: 1024px) {
  .main-profile .float-l {
    width: 100%;
    text-align: center;
  }
}

.main-profile .float-l img {
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .main-profile .float-l img {
    width: 80%;
  }
}

.main-profile .float-r {
  width: 500px;
}

@media only screen and (max-width: 1024px) {
  .main-profile .float-r {
    width: 100%;
  }
}

/*---------------------------------------
  main-price
----------------------------------------*/
.main-price {
  color: #1F1E1C;
  background: url(../img/bg_price01.png), url(../img/bg_price02.png), url(../img/bg_price03.png), url(../img/bg_price04.png), url(../img/bg_price05.png), url(../img/bg_price06.png), url(../img/bg_price_base.png);
  background-size: auto, 50%, 50%, 50%, 50%, contain, auto;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat;
  background-position: top right, 0% 40%, 100% 60%, 0% 80%, 100% 90%, bottom, bottom right;
  padding: 0 0 100px;
}

@media only screen and (max-width: 1024px) {
  .main-price {
    background-position: top right, 0% 20%, 100% 36%, 0% 61%, 100% 90%, bottom, bottom right;
    background-size: contain, 100%, 80%, 90%, 100%, contain, auto;
    padding: 70px 0;
  }
}

.main-price .main-inner {
  margin-top: 0;
}

@media only screen and (max-width: 1024px) {
  .main-price div {
    margin-top: 10px;
  }
}

.main-price div:nth-child(odd) h2 {
  margin-top: 150px;
}

@media only screen and (max-width: 1024px) {
  .main-price div:nth-child(odd) h2 {
    margin-top: 0;
  }
}

.main-price div:nth-child(even) h2 {
  margin-top: 150px;
}

@media only screen and (max-width: 1024px) {
  .main-price div:nth-child(even) h2 {
    margin-top: 0;
  }
}

.main-price .float-l {
  width: 500px;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .main-price .float-l {
    width: 100%;
    margin-top: 15px;
  }
  .main-price .float-l img {
    width: 100%;
  }
}

.main-price .float-r {
  width: 420px;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .main-price .float-r {
    width: 100%;
    margin-top: 15px;
  }
  .main-price .float-r img {
    width: 100%;
  }
}

.main-price .note {
  color: #1F1E1C;
  text-align: center;
}

.list-price {
  margin-top: 30px;
}

@media only screen and (max-width: 1024px) {
  .list-price {
    margin-top: 20px;
  }
}

.list-price li {
  margin-top: 20px;
  line-height: 1.4;
}

@media only screen and (max-width: 1024px) {
  .list-price li {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 10px;
  }
}

.list-price li:first-child {
  margin-top: 0;
}

/*---------------------------------------
  main-reserve
----------------------------------------*/
.main-reserve {
  padding-bottom: 100px;
}

@media only screen and (max-width: 1024px) {
  .main-reserve {
    padding-bottom: 50px;
  }
}

.main-reserve h2 {
  font-size: 28px;
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 30px;
}

@media only screen and (max-width: 1024px) {
  .main-reserve h2 {
    font-size: 24px;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 30px;
  }
}

.main-reserve p {
  font-size: 18px;
  font-size: 18px;
  font-size: 1.125rem;
}

@media only screen and (max-width: 1024px) {
  .main-reserve p {
    font-size: 16px;
    font-size: 1rem;
    text-align: center;
  }
}

@media only screen and (max-width: 1024px) {
  .main-reserve .float-l {
    width: 100%;
    float: none;
  }
}

.main-reserve .float-l p:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 1024px) {
  .main-reserve .float-r {
    float: none;
    text-align: center;
  }
}

.main-reserve .note {
  font-size: 12px;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 30px;
  text-align: left;
}

/*---------------------------------------
  main-access
----------------------------------------*/
.main-access {
  background: #171614;
  padding: 0 0 100px;
}

@media only screen and (max-width: 1024px) {
  .main-access {
    padding: 50px 0;
  }
}

.main-access .main-inner {
  margin-top: 0;
}

.main-access h1 {
  margin-top: 0;
}

.main-access p {
  margin-top: 0;
}

.main-access dl {
  width: 450px;
  margin: 50px auto 0;
  line-height: 1.5;
}

@media only screen and (max-width: 1024px) {
  .main-access dl {
    font-size: 14px;
    font-size: 0.875rem;
    width: 60%;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .main-access dl {
    width: 100%;
  }
}

.main-access dl:last-child {
  border-top: #E0E0E0 1px solid;
  margin-top: 30px;
  padding-top: 30px;
}

@media only screen and (max-width: 1024px) {
  .main-access dl:last-child {
    margin-top: 20px;
    padding-top: 20px;
  }
}

.main-access dl .float-l {
  float: left;
  width: 70px;
  margin-right: 30px;
}

@media only screen and (max-width: 1024px) {
  .main-access dl .float-l {
    width: 18%;
    margin-right: 15px;
  }
}

.main-access dl .float-r {
  width: 350px;
}

@media only screen and (max-width: 1024px) {
  .main-access dl .float-r {
    width: 74%;
  }
}

.main-access dl dd:nth-child(3) {
  margin-top: 15px;
}

@media only screen and (max-width: 1024px) {
  .main-access dl dd:nth-child(3) {
    margin-top: 10px;
  }
}

.main-access iframe {
  width: 580px;
  height: 470px;
}

@media only screen and (max-width: 1024px) {
  .main-access iframe {
    width: 100%;
    height: auto;
  }
}

/*---------------------------------------
  main-picture
----------------------------------------*/
.main-picture {
  padding-bottom: 100px;
}

@media only screen and (max-width: 1024px) {
  .main-picture {
    padding-bottom: 50px;
  }
  .main-picture h1 {
    padding-bottom: 10px;
  }
}

.col-3 {
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  text-align: center;
  box-sizing: border-box;
}

@media only screen and (max-width: 1024px) {
  .col-3 {
    display: block;
    margin-top: 0;
  }
}

.col-3:first-child {
  margin-top: 0;
}

.col-3 li {
  -ms-flex: 3;
      flex: 3;
  margin-left: 20px;
  box-sizing: border-box;
}

@media only screen and (max-width: 1024px) {
  .col-3 li {
    margin-top: 20px;
    margin-left: 0;
  }
}

.col-3 li:first-child {
  margin-left: 0;
}

.col-3 li img {
  width: 100%;
}

/*---------------------------------------
  footer
----------------------------------------*/
footer {
  font-size: 14px;
  font-size: 14px;
  font-size: 0.875rem;
  background: #171614;
  text-align: center;
  padding: 30px 0;
}

footer p {
  margin-top: 0;
}

@media only screen and (max-width: 1024px) {
  footer p {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
