@charset "UTF-8";
/*=============================================================================
   Layout
=============================================================================*/
.container, .content, .inner {
  clear: both;
  width: 100%;
  height: auto;
  position: relative; }

.container:after, .content:after, .inner:after {
  content: "";
  display: block;
  clear: both; }

.container {
  width: 1000px;
  margin: 0px auto; }

.inner {
  width: 95%;
  margin: 0px auto; }

.wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden; }

/* Header
-----------------------------------------------------------------------------*/
#header {
  width: 100%;
  height: 86px;
  background: url("../img/bg_header.jpg");
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50; }
  #header::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background-color: #d9ccd3;
    position: absolute;
    bottom: -3px; }
  #header .logo {
    height: 85px;
    width: 290px;
    float: left; }
  #header .bnrArea {
    position: absolute;
    top: 0;
    right: 0; }
    #header .bnrArea p {
      margin-left: 20px;
      float: left; }

@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translateY(-100%); }
  100% {
    opacity: 1;
    transform: translateY(0%); } }
/* Navigatioon
-----------------------------------------------------------------------------*/
/* Main nav *****/
#nav {
  position: absolute;
  right: 0;
  bottom: 0; }
  #nav li {
    float: left;
    font-size: 1.5rem;
    position: relative;
    text-align: center; }
    #nav li ul {
      position: absolute;
      left: 0;
      top: 34px;
      padding-top: 0px;
      z-index: 50;
      background-color: rgba(247, 243, 245, 0.9);
      width: 100%; }
      #nav li ul li {
        width: 100%;
        height: 0px;
        overflow: hidden;
        transition: .5s; }
    #nav li:hover ul li {
      height: 30px;
      border-bottom: solid 1px #d9ccd3; }
  #nav a {
    cursor: pointer;
    display: block;
    height: 30px;
    padding: 0 1em;
    box-sizing: border-box;
    color: #000;
    background: url(../img/nav_arrow.png) no-repeat center bottom -7px;
    transition: .2s; }
    #nav a:hover {
      background: url(../img/nav_arrow.png) no-repeat center bottom;
      text-decoration: none; }

#index #nav01 a,
#ooyama #nav02 a,
#cuisine #nav03 a,
#facilities #nav04 a,
#sightseeing #nav05 a,
#access #nav06 a {
  background: url(../img/nav_arrow.png) no-repeat center bottom;
  text-decoration: none; }

/* Main Visual
-----------------------------------------------------------------------------*/
#mainVisual {
  width: 100%;
  /*max-height: 900px;
  height: 100vh;*/
  height: auto;
  background-image: url("../../movie/top_movie.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden; }
  #mainVisual::before {
    content: "";
    display: block;
    padding-top: 56.25%; }
  #mainVisual .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

#main_movie {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; }
  #main_movie video {
    min-height: 100%;
    min-width: 100%;
    width: 100%;
    height: auto; }

.btn_scrldwn a {
  display: block;
  position: absolute;
  border-bottom: 2em;
  left: 50%;
  width: 22px;
  height: 22px;
  margin-left: -13px;
  z-index: 10000000;
  bottom: 60px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  cursor: pointer;
  text-shadow: 1px 2px 8px #000; }

/* Contents
-----------------------------------------------------------------------------*/
#contents:after {
  content: "";
  display: block;
  clear: both; }

h2 {
  text-align: center;
  font-family: Times, "Times New Roman", Georgia, "游明朝体", YuMincho, "游明朝", "Yu Mincho", "HGS明朝E", serif;
  font-size: 2.4rem;
  padding-bottom: 0.6em;
  margin-bottom: 1.6em;
  position: relative; }
  h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    border-bottom: solid 2px #a89;
    margin-left: -40px; }

h3 {
  text-align: center;
  font-family: Times, "Times New Roman", Georgia, "游明朝体", YuMincho, "游明朝", "Yu Mincho", "HGS明朝E", serif;
  font-size: 2.4rem;
  padding-bottom: 0.6em;
  margin-bottom: 1.6em;
  position: relative; }
  h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    border-bottom: solid 2px #a89;
    margin-left: -40px; }

h4 {
  font-family: Times, "Times New Roman", Georgia, "游明朝体", YuMincho, "游明朝", "Yu Mincho", "HGS明朝E", serif;
  font-size: 3.0rem; }

#title {
  width: 100%;
  height: 280px;
  text-align: center;
  margin-top: -230px;
  padding-top: 120px;
  box-sizing: border-box;
  background: url("../img/diamond.svg") no-repeat center top/100% 600px; }

.txt p {
  margin-bottom: 2em; }

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flex-box.jc_space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.flex-box.jc_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.flex-box.va_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.flex-box.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

/* Footer
-----------------------------------------------------------------------------*/
div#footer {
  padding: 65px 0 60px;
  background: url("../img/bg_header.jpg"); }

div#footer_add {
  float: left;
  height: auto;
  width: 385px;
  font-size: 0.92em;
  line-height: 1.6; }

#footer_nav {
  float: right;
  font-size: 0.92em;
  line-height: 1.6; }
  #footer_nav ul {
    float: left;
    margin: 0 1em; }
    #footer_nav ul ul {
      float: none; }
  #footer_nav li {
    margin-bottom: 0em; }
    #footer_nav li::before {
      content: "＞";
      display: inline-block;
      width: 1.2em;
      height: 1em;
      transform: scale(0.5, 1); }
  #footer_nav a {
    color: #000; }
    #footer_nav a:hover {
      color: #957;
      text-decoration: underline; }

#copyright {
  clear: both;
  width: 100%;
  height: auto;
  padding: 7px 0px;
  font-size: 1.3rem;
  text-align: center;
  background-color: #c8b0bd; }

#pagetop {
  position: fixed;
  bottom: 5px;
  right: 5px;
  clear: both;
  display: none;
  z-index: 500; }
  #pagetop a {
    text-align: center;
    text-decoration: none;
    color: #eee;
    height: auto;
    width: auto;
    padding: 12px 10px;
    font-size: 12px;
    letter-spacing: 0.01em;
    line-height: 130%;
    vertical-align: middle;
    display: table-cell;
    overflow: hidden;
    border-radius: 100%;
    background-color: rgba(153, 119, 136, 0.8); }

/* other
-----------------------------------------------------------------------------*/
/* plansearch
-----------------------------------------------------------------------------*/
#plansearch {
  height: 80px;
  padding: 35px 0;
  margin: 0 auto;
  font-family: Times, "Times New Roman", Georgia, "游明朝体", YuMincho, "游明朝", "Yu Mincho", "HGS明朝E", serif;
  font-size: 1.4rem; }

#plansearch h3 {
  width: 200px;
  height: 80px;
  float: left;
  padding: 0px;
  border-right: solid 1px #222; }

.plan_form {
  max-width: 785px;
  float: right;
  padding-top: 10px; }

.plan_form form > div {
  float: left;
  margin-left: 1.6em; }

.plan_form input,
.plan_form textarea,
.plan_form select {
  margin: 0.4em;
  padding: 0.1em 0.7em;
  color: #211;
  font-size: 1em;
  border: 1px solid #888;
  background-color: white; }

.plan_form select {
  height: 1.6em; }

.plan_form .search_btn input {
  cursor: pointer;
  background-color: #466AB4;
  border: none;
  color: #FFFFFF; }
