@charset "UTF-8";
/* ----------------------------------------
   index.css
---------------------------------------- */
html,
body {
  font-size: 10px;
}

body {
  position: relative;
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-align: center;
  color: #231815;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: normal;
}

body * {
  box-sizing: border-box;
}

/* Ancher */
a {
  text-decoration: underline;
  color: #000;
}

a:hover {
  text-decoration: none;
}

a.inactive {
  pointer-events: none;
  cursor: default;
  color: #999 !important;
}

a[href^="tel:"] {
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}

/* PARTS
---------------------------------------- */
sup {
  vertical-align: top;
  font-size: 0.5em;
}

/* Note */
.note {
  letter-spacing: 0;
  font-size: 1.4rem;
}

.noteList {
  font-size: 1.3rem;
}
.noteList li {
  padding-left: 1em;
  letter-spacing: 0;
  line-height: 1.5;
  text-indent: -1em;
}

/* text-align */
.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.ta-l {
  text-align: left;
}

/* vertical-align */
.va-m {
  vertical-align: middle;
}

.va-t {
  vertical-align: top;
}

.va-b {
  vertical-align: bottom;
}

/* Table */
.tbl {
  display: table;
}
.tbl .row {
  display: table-row;
}
.tbl .cell {
  display: table-cell;
  vertical-align: middle;
}
.tbl .cell.top {
  vertical-align: top;
}
.tbl .cell.btm {
  vertical-align: bottom;
}

.tbl.top .cell {
  vertical-align: top;
}

.tbl.btm .cell {
  vertical-align: bottom;
}

/* Other */
.ib {
  display: inline-block;
}

.nowrap {
  white-space: nowrap;
}

.sq::before,
.sq > li::before {
  content: '■';
}

.dsk::before,
.dsk > li::before {
  content: '●';
}

.tri::before,
.tri > li::before {
  content: '▼';
  display: inline-block;
  margin-right: 5px;
  transform: rotate(-90deg);
}

.fixedBg {
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}

#goTop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 0;
  z-index: 99;
}
#goTop a {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  text-indent: -999px;
}
#goTop a::after {
  content: '';
  position: absolute;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  background: url("../img/icon_arrow_01.png") no-repeat center center;
  background-size: 100% auto;
  transform: rotate(-90deg);
}

#mq {
  width: 0;
  height: 0;
}

/* ▼ @media : PC */
@media screen and (min-width: 769px) {
  #mq {
    display: block;
  }

  .sp {
    display: none;
  }
}
/* ▼ @media : SP */
@media screen and (max-width: 768px) {
  body {
    letter-spacing: 0;
    line-height: 1.5;
  }

  #mq, .pc {
    display: none;
  }

  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }

  .tbl.rsp,
  .tbl.rsp .row,
  .tbl.rsp .cell {
    display: block;
  }

  .tbl.rsp .row + .row {
    margin-top: 1em;
  }
}
@media screen and (max-width: 480px) {
  #goTop {
    right: 10px;
    bottom: 10px;
  }
  #goTop a {
    width: 50px;
    height: 50px;
  }
  #goTop a::after {
    left: calc(50% - 12px);
    top: calc(50% - 12px);
    width: 24px;
    height: 24px;
  }
}
/* Inview
---------------------------------------- */
.fade {
  position: relative;
  margin-top: 100px;
  opacity: 0.0;
  transition: all 2.0s ease;
}

.fade.on {
  opacity: 1.0;
  margin-top: 0 !important;
}

/* #container
---------------------------------------- */
#container {
  font-size: 1.6rem;
  text-align: center;
}
#container main > section {
  padding-right: 20px;
  padding-left: 20px;
}
#container main > section > article {
  margin-right: auto;
  margin-left: auto;
}

/* #hero
---------------------------------------- */
#hero {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  width: 100%;
  height: calc(100vh + 1px);
  background: #231815;
}
#hero div {
  flex: 0 0 50%;
  width: 50%;
}
#hero .ttl h1 {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#hero .ttl h1 img {
  width: 80%;
  max-width: 438px;
  margin: 0 auto;
  opacity: 0.0;
  transform: scale(0.98);
  transition: all 2.0s ease-out;
}
#hero .ttl.on h1 img {
  opacity: 1.0;
  transform: scale(1);
}
#hero .img {
  background: url("../img/bg_hero_01.jpg") no-repeat 90% center;
  background-size: cover;
}

/* #lead
---------------------------------------- */
#lead {
  padding: 75px 0 35px;
}
#lead h2 {
  max-width: 630px;
  margin: 0 auto 30px;
}

/* #info
---------------------------------------- */
#info article {
  width: 81.81818%;
  max-width: 900px;
  margin: 0 auto;
  padding: 35px;
  background: #ac8f37;
  text-align: left;
  letter-spacing: 0;
  color: #fff;
  font-size: 1.6rem;
}
#info article div.tbl dl dt, #info article div.tbl dl dd {
  padding-bottom: 0.5em;
}
#info article div.tbl dl dt {
  padding-right: 1em;
}
#info article div.tbl dl dt span {
  display: block;
  padding: 3px 0 3px 0.5em;
  background: #fff;
  letter-spacing: 0.5em;
  text-align: center;
  line-height: 1.1;
  color: #ac8f37;
  font-size: 1.6rem;
  white-space: nowrap;
}
#info article div.tbl dl:last-child dt, #info article div.tbl dl:last-child dd {
  padding-bottom: 0;
}

/* #movie
---------------------------------------- */
#movie {
  padding-top: 65px;
  padding-bottom: 50px;
}
#movie article {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
#movie article .box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  margin: 0 auto;
  padding-top: 56.25%;
  background: #000;
}
#movie article .box iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* #resavation
---------------------------------------- */
#resavation {
  padding-bottom: 120px;
}
#resavation ul {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 35px;
}
#resavation ul li {
  flex: 0 0 auto;
  width: 48.6%;
}
#resavation ul li a {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  width: 100%;
  height: 110px;
  padding: 0 7%;
  background: #231815;
  text-decoration: none;
  color: #fff;
  font-size: 1.76rem;
}
#resavation ul li a:hover {
  opacity: 0.8;
}
#resavation ul li a::after {
  content: '';
  position: absolute;
  right: 5.74713%;
  top: calc(50% - 15px);
  width: 15px;
  height: 30px;
  background: url("../img/icn_arrow_01.png") no-repeat left top;
  background-size: 100% auto;
}
#resavation .pdf p a {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  max-width: 445px;
  height: 85px;
  margin: 0 auto;
  background: #f1e9b2;
  border: 1px solid #000;
  text-decoration: none;
  font-size: 1.76rem;
}
#resavation .pdf p a:hover {
  opacity: 0.8;
}
#resavation .pdf p a::before {
  content: '';
  width: 35px;
  height: 46px;
  margin-right: 13px;
  background: url("../img/icn_pdf.png") no-repeat left top;
  background-size: 100% auto;
}

/* #detail
---------------------------------------- */
#detail {
  padding-bottom: 100px;
}
#detail article .doc, #detail article .img {
  flex: 0 0 auto;
}
#detail article .doc {
  text-align: left;
}
#detail article .doc h2 {
  margin-bottom: 1em;
  line-height: 0;
}
#detail article .doc p {
  margin-bottom: 1em;
  letter-spacing: 0;
  line-height: 1.5;
  font-size: 1.54rem;
}
#detail article .doc .tbl dl {
  line-height: 1.5;
  font-size: 1.3rem;
}
#detail article .doc .tbl dl dt {
  padding-right: 0.5em;
}
#detail article.oscar {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  max-width: 965px;
  margin-bottom: 70px;
}
#detail article.oscar .doc {
  width: 52.84974%;
}
#detail article.oscar .doc h2 {
  max-width: 445px;
}
#detail article.oscar .img {
  width: 43.52332%;
}
#detail article.abella {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 760px;
  margin-bottom: 75px;
}
#detail article.abella .doc {
  width: 45.39474%;
}
#detail article.abella .doc h2 {
  max-width: 343px;
}
#detail article.abella .img {
  width: 50%;
}
#detail article.images {
  position: relative;
  width: 925px;
  height: 720px;
  margin: 0 auto;
  padding: 0;
}
#detail article.images div {
  position: absolute;
}
#detail article.images .img1 {
  left: 0;
  top: 0;
  width: 55.65217%;
}
#detail article.images .img2 {
  right: 0;
  top: 38.05556%;
  width: 38.37838%;
  margin-top: 150px;
}
#detail article.images .img3 {
  left: 22.70270%;
  top: 64.755%;
  width: 42.91892%;
  margin-top: 175px;
}
#detail article.images .ttl {
  left: 52.43243%;
  top: 17.77778%;
  width: 40.54054%;
  margin-top: 200px;
}

/* #fixImage1
---------------------------------------- */
#fixImage1 {
  height: 400px;
  background-image: url("../img/bg_fix_image_01.jpg");
}

/* #menu
---------------------------------------- */
#menu {
  padding: 95px 0 65px;
  background: #edebdc;
}
#menu h2 {
  max-width: 120px;
  margin: 0 auto 75px;
}
#menu article {
  max-width: 900px;
}
#menu article.a1 {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 45px;
}
#menu article.a1 div {
  flex: 0 0 auto;
  width: calc(50% - 20px);
}
#menu article.a2 {
  margin-bottom: 40px;
  padding: 15px 10px;
  border-top: 1px solid #ac8f37;
  border-bottom: 1px solid #ac8f37;
  line-height: 1.5;
  font-size: 1.74rem;
}
#menu article.a3 {
  text-align: left;
}
#menu article.a3 .noteList {
  margin-bottom: 50px;
}

/* #address
---------------------------------------- */
#address {
  padding: 85px 20px;
  background: #231815;
  color: #fff;
}
#address h2 {
  max-width: 200px;
  margin: 0 auto 35px;
}
#address .lead {
  max-width: 590px;
  margin: 0 auto 35px;
}
#address .img {
  max-width: 295px;
  margin: 0 auto 35px;
}
#address .tel {
  max-width: 445px;
  margin: 0 auto 40px;
}
#address .link a {
  color: #fff;
}

/* footer
---------------------------------------- */
footer {
  padding: 0 10px 20px;
  background: #231815;
}

footer ul {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
}

footer ul li {
  flex: 0 0 auto;
  padding: 0 10px;
  line-height: 1.2;
  border-left: 1px solid #fff;
}

footer ul li:last-child {
  border-right: 1px solid #fff;
}

footer a {
  color: #fff;
  font-size: 1.3rem;
}

footer a:hover {
  text-decoration: underline;
}

/* ----------------------------------------
   @media : PC
---------------------------------------- */
@media screen and (max-width: 1100px) {
  #hero .img {
    background-position: 90% center;
  }
}
@media screen and (max-width: 965px) {
  #detail article.images {
    width: 100%;
    height: calc(100vw * 0.77838);
  }
}
/* ----------------------------------------
   @media : SP
---------------------------------------- */
@media screen and (max-width: 768px) {
  #hero .img {
    background-position: 80% center;
  }

  #lead p {
    font-size: 2.0833333333vw;
  }

  #info article {
    width: 90%;
    padding: 20px;
  }

  #resavation ul li a {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 480px) {
  #hero .img {
    background-position: 74% center;
  }

  #lead {
    padding: 30px 0;
  }

  #lead p {
    text-align: left;
    font-size: 1.6rem;
  }

  #info article {
    width: 100%;
    padding: 20px;
    font-size: 1.6rem;
  }
  #info article div.tbl dl dt span {
    font-size: 1.5rem;
  }

  #resavation {
    padding-bottom: 60px;
  }
  #resavation ul {
    display: block;
    margin-bottom: 20px;
  }
  #resavation ul li {
    width: 100%;
  }
  #resavation ul li a {
    height: auto;
    min-height: 80px;
    padding: 15px 7%;
    font-size: 3.5416666667vw;
  }
  #resavation ul li a::after {
    right: 10px;
    top: calc(50% - 7.5px);
    width: 7.5px;
    height: 15px;
  }
  #resavation ul li + li {
    margin-top: 20px;
  }
  #resavation .pdf p a {
    font-size: 3.5416666667vw;
  }

  #detail article {
    display: block !important;
    margin-bottom: 30px !important;
  }
  #detail article .doc, #detail article .img {
    width: 100% !important;
  }
  #detail article .doc {
    margin-bottom: 1em;
  }

  #detail {
    padding-bottom: 30px;
  }
  #detail article.oscar .doc h2 {
    width: 87.5%;
  }
  #detail article.abella .doc h2 {
    width: 77.2%;
  }

  #fixImage1 {
    height: 300px;
  }

  #menu {
    padding: 50px 0;
  }
  #menu h2 {
    margin-bottom: 30px;
  }
  #menu article.a1 {
    display: block;
  }
  #menu article.a1 div {
    width: 90%;
    margin: 0 auto;
  }
  #menu article.a1 div + div {
    margin-top: 1em;
  }
  #menu article.a2 {
    margin-bottom: 20px;
    text-align: left;
    font-size: 1.5rem;
  }
  #menu article.a3 .noteList {
    margin-bottom: 25px;
  }

  #address {
    padding: 50px 20px;
  }
  #address h2 {
    margin-bottom: 20px;
  }

  footer ul {
    display: block;
  }
  footer ul li {
    border: none !important;
  }
  footer ul li + li {
    margin-top: 0.5em;
  }
}
