@charset "utf-8";

#wrapper {
  background-color:rgba(255,255,255,0.6);
  text-align: center;
}
#wrapper2 {
  /* background-color:rgba(255,255,255,0.6); */
  text-align: center;
}
/*========= メイン画像エリア ===============*/
#main {
  position: relative;
  z-index: -1;
  height: 100vh;
}
#video-area, .video-area{
  position: fixed;
  z-index: -2;/*最背面に設定*/
  top: 0;
  right:0;
  left:0;
  bottom:0;
  overflow: hidden;
}
.video-area img {
  object-fit: cover;
}
#video-area, .video-area2 {
  position: fixed;
  z-index: -2;/*最背面に設定*/
  top: 0;
  right:0;
  left:0;
  bottom:0;
  overflow: hidden;
  background-image: url("../images/top/main_pc.jpg");
  background-size: cover;
}
#main h1 {
  position:absolute;
  /*要素を天地中央寄せ*/
  top: 30%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  /*見た目の調整*/
  color:#fff;
  /* text-shadow: 0 0 15px #666; */
  z-index: 0;
  width: 150px;
}
#main h2{
  width: 100%;
  text-align: center;
  position:absolute;
  /*要素を天地中央寄せ*/
  top: 40%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  /*見た目の調整*/
  color:#fff;
  text-shadow: 0 0 15px #666;
  z-index: 0;
}
/*スクロールダウン全体の場所*/
.scrolldown{
  position:absolute;
  bottom:10%;
  left:50%;
}
.scrolldown:before {
  content: "";
  position: absolute;
  bottom:0;
  left:-15px;
  width:20px;
  height:20px;
  border-radius: 50%;
  background:#eee;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
  circlemove 1.6s ease-in-out infinite,
  cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove{
  0%{bottom:60px;}
  100%{bottom:-5px;}
}
@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}
@media screen and (max-width:987px){
  #main {
    height: 75vh;/*高さを全画面にあわせる*/
  }
  #video-area, .video-area{
    position: fixed;
    top: -15%;
  }
  #main h1 {
    width: 100px;
    top: 35%;
    transform: translateY(-50%) translateX(-50%);
  }
  #main h2{
    top: 42%;
    transform: translateY(-50%) translateX(-50%);
  }
  #video-area, .video-area2 {
    background-image: url("../images/top/main_sp.jpg");
    background-size: 100%;
  }
}

/*=========  メインコンテンツエリア ===============*/
#container {
  width: 100%;
  max-width: 1240px;
  margin: -5% auto 0;
  padding: 3% 0;
  text-align: center;
}
@media screen and (max-width:987px){
  #container {
    padding: 0% 0;

  }
}

/*========= サブメニューエリア ===============*/
#submenu {
  margin: 0 auto;
  z-index: 3;
  overflow: hidden;
  padding: 0;
}
#submenu li {
  padding: 2% 1%;
  background-color: #fff;
  width: 25%;
  float: left;
  box-sizing: border-box;
  border-right: 1px solid #a6a6a7;
  border-bottom: 1px solid #a6a6a7;
}
#submenu li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

#submenu li p {
  text-align: center;
}
#submenu li.last {
  border-right: 0px solid #fff;
}
#submenu li img {
  width: 40px;
  margin: 0 auto 5px;
}

@media screen and (max-width:987px){
  /* #submenu {
    background-color: #54BBEF;
    padding: 0;
  }
  #submenu ul {
    margin: 1.0%;
    overflow: hidden;
  } */
  #submenu li {
    font-size: 0.80em;
    font-weight: 700;
    padding: 2% 0%;
    /*
    width: 25%;
    margin: 1.0%;

    border-right: 1px;
    border-bottom: 1px; */
  }
  /* #submenu li:nth-child(4n) {
    border-right: 0px;
  }
  #submenu li img {
    width: 25%;
    margin: auto;
  } */
}

/*========= コンテンツエリア ===============*/
#concept {
  padding: 5% 0;
  background-color: #FFF;
}
#message {
  clear: left;
  padding: 5% 0;
  background-color: #FFFCDB;
}
#feature, #info {
  clear: left;
  padding: 5% 0;
}
.h2_before {
  font-size: 1.2em;
  margin: 5% auto 2%;
  color: #FCD695;
  text-align: center;
  border-bottom: #fff solid 1px;
}
h2 {
  font-size: 2.0em;
  line-height: 1.2em;
  letter-spacing: 0.2em;
  font-weight: 100;
}
.h2_white {
  color: #fff;
}
h2 img {
  width: 200px;
  margin: 1% auto 3%;
  display: block;
}
.h2_copy {
  line-height: 1.7em;
  /* font-weight: 100; */
  margin-bottom: 2%;
  padding: 0 5%;
  text-align: left;
}
.text_right {
  text-align: right;
}
.text_right span {
  font-weight: bold;
  font-size: 1.2em;
}
.map_wrapp {
  overflow: hidden;
  width: 90%;
  border: 1px solid #fff;
  margin: 0 auto;
  background-color:rgba(255,255,255,0.6);
}
#group-map .map_area {
  width: 50%;
  float: left;
}
#group-map .text_area {
  /* color: #fff; */
  width: 40%;
  margin: 3% 5% 0 5%;
  float: left;
  text-align: left;
}
#group-map .text_area h4 {
  border-bottom: 1px solid #fff;
  margin: 2em auto 0.5em;
}
#group-map .text_area li {
  margin: 0 auto 2em;
  line-height: 1.2em;
}
#group-map .text_area li a {
  position: relative;
}
#group-map .text_area li a::after {
  position: absolute;
  font-family: 'Material Icons';
  content: '\e941';
  /* color: #D01163; */
  font-size: 1.4em;
  top: 3%;
  right: -30px;
}

#group-map .text_area li span {
  font-weight: bold;
}
#feature, #info {
  text-align: center;
}


@media screen and (max-width:987px){
  .h2_before {
  }
  h2 {
    font-size: 1.6em;
    line-height: 1.2em;
  }
  h2 p {
    width: 120px;
    margin: 2% auto 0%;
  }
  .h2_copy {
    font-size: 1em;
    /* line-height: 2.0em; */
    /* font-weight: 100; */
    width: 95%;
    margin: auto;
    margin-bottom: 5%;
  }
  #group-map .map_area {
    width: 100%;
  }
  #group-map .text_area {
    width: 90%;
    margin: 3% 5%;
  }
  .map_wrapp {
    overflow: hidden;
    width: 100%;
    border: 0px solid #fff;
    margin: 0 auto;
  }
}
/*コンセプト */
#concept .concept_img {
  position: relative;
  margin: 5% auto;
  padding: 0;
  background-image: url("../images/common/kazari/kazari-19.svg");
  background-size: 70%;
  background-position: top 10% right 7%;
  height: 800px;
  overflow: hidden;
}
.concept_img_left {
  position: absolute;
  width: 40%;
  left: 4%;
  top: 0%;
  z-index: 2
}
.concept_img_right {
  position: absolute;
  width: 60%;
  right: 0%;
  bottom: 0%;
  z-index: 1
}
.concept_img_center {
  position: absolute;
  width: 4%;
  top: 0;
  right: 35%;
  z-index: 2
}
#message .circle-photo img {
  border-radius: 50%;
}
#message .circle-photo {
  width: 20%;
  margin: 0 auto 2em;
}
#profile dl {
  margin: 0 auto 1em;
  border-bottom: 1px solid #fff;
  padding: 0 0 0.5em;
}
#profile dd {
  font-weight: bold;
}
.banner_area {
  width: 90%;
  margin: auto;
  overflow: hidden;
}
.banner_area ul li img {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  vertical-align:top;
}
.banner_area li {
  width: 48%;
  float: left;
  margin: 0 1% 1% 0;
}
#info {
  background-color:rgba(255,255,255,0.6);
}
#info dl {
  width: 70%;
  margin: auto;
  text-align: left;
  padding: 2% 0;
  border-bottom: dotted 1px #666;
}
#info dt {
  color: #E0726A;
  margin: 0 5px 0 0;
}
#info dd {
}
@media screen and (max-width:987px){
  #concept .concept_img {
    margin: 5% auto;
    background-size: 80%;
    background-position: top 5% right 7%;
    height: 500px;
  }
  .btn_right {
width: 70%;
}
#message .circle-photo {
  width: 40%;
}
  .banner_area li {
    width: 100%;
    float: left;
    margin: 0 0 3% 0;
  }
}
@media screen and (max-width:987px){
  #concept .concept_img {
    height: 320px;
  }
  .concept_img_center {
    width: 5%;
    right: 35%;
    top: 0%;
  }
  #catalog .title_bg {
    background-size: 120px;
    background-position: right 2% top 2%;
  }
  .catalog_slid {
    width: 100%;
  }
  ul.catalog_list a {
    display:block;
  }
  ul.catalog_list li {
    font-size: 1.1em;
  }
  ul.slider_catalog {
    height: 390px;
  }
  ul.slider_catalog li img {
    height: 390px;
    width: auto;
  }
  ul.area_list li,
  ul.shop_list li {
    font-size: 1.0em;
    width: 49.0%;
    margin: 0 1% 1% 0;
  }
  ul.area_list li:nth-child(3n),
  ul.shop_list li:nth-child(3n) {
    margin: 0 1% 1% 0;
  }
  ul.area_list li:nth-child(2n),
  ul.shop_list li:nth-child(2n) {
    width: 49.5%;
    margin: 0 0% 1% 0% !important;
  }
  #info dl {
    width: 90%;
  }
}
