@import url("https://fonts.googleapis.com/css?family=Poppins:400,600&display=swap");
section, nav, article, aside, hgroup, header, footer, figure, figcaption, details {
  display: block; }

html, body, div, span, applet, object, iframe, strong, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, legend, caption, tbody, tfoot, thead, table, label, tr, th, td, figure {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline; }

html {
  -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Poppins','Hiragino Kaku Gothic Pro',Meiryo,'MS PGothic',sans-serif;
  color: #000;
  line-height: 1.8;
  letter-spacing: 0.05em; }

li {
  list-style: none; }

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

a {
  text-decoration: none;
  color: #989898; }

img {
  vertical-align: top;
  max-width: 100%; }

hr {
  height: 1px;
  background-color: #ccc;
  border: 0; }

.pc_only {
  display: block; }

.pc_only_inline {
  display: inline; }

.sp_only,
.sp_only_inline {
  display: none; }

.wrap {
  max-width: 1080px;
  padding: 0 20px;
  margin: 0 auto; }
  .wrap:after {
    content: "";
    display: block;
    clear: both; }

.to_top {
  transition: top .8s ease-out, opacity .8s ease-out;
  position: relative;
  top: 50px;
  opacity: 0; }

.appearLate.show.to_top {
  top: 0;
  opacity: 1; }

.shade {
  position: relative; }

.shade:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  backface-visibility: hidden;
  transform-origin: right center;
  transform: scaleX(0);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0; }

.appearLate.show.shade:after {
  animation: img_show 0.8s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.3s; }

.shade img,
.shade span {
  opacity: 0; }

.appearLate.show.shade img,
.appearLate.show.shade span {
  animation: img_opacity 0.8s both cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.7s; }

@keyframes img_show {
  0% {
    transform: scaleX(0);
    transform-origin: left center; }
  35% {
    transform: scaleX(1);
    transform-origin: left center; }
  36%, 60% {
    transform: scaleX(1);
    transform-origin: right center; }
  to {
    transform: scaleX(0);
    transform-origin: right center; } }
@keyframes img_show_reverse {
  0% {
    transform: scaleX(0);
    transform-origin: right center; }
  35% {
    transform: scaleX(1);
    transform-origin: right center; }
  36%, 60% {
    transform: scaleX(1);
    transform-origin: left center; }
  to {
    transform: scaleX(0);
    transform-origin: left center; } }
@keyframes img_opacity {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.h .num {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #f44141;
  position: relative; }
  .h .num:after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: #f44141;
    position: absolute;
    top: 50%;
    left: 1.8em; }
.h h1 {
  font-size: 35px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.08em;
  margin: 30px 0 60px 0;
  position: relative; }

.btn {
  margin: 50px 0;
  display: inline-block;
  position: relative; }
  .btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    background: #fff;
    opacity: 1;
    z-index: 1; }
  .btn:hover:after {
    animation: btn_hover 0.6s cubic-bezier(0.04, 0.435, 0.315, 0.9) both; }
  .btn .line span {
    position: relative;
    z-index: 2; }
  .btn:hover a span span {
    animation: hover_black 0.6s cubic-bezier(0.04, 0.435, 0.315, 0.9) both; }
  .btn a {
    display: block;
    color: #fff;
    background: #000;
    line-height: 1;
    padding: 20px 80px;
    position: relative; }
    .btn a i {
      display: block;
      width: 20px;
      height: 1px;
      background: #fff;
      position: absolute;
      top: 50%;
      right: 15px; }
      .btn a i:after {
        content: "";
        display: block;
        width: 6px;
        height: 1px;
        background: #fff;
        position: absolute;
        bottom: 2px;
        right: 0;
        transform: rotate(45deg); }
    .btn a:before, .btn a:after, .btn a .line:before, .btn a .line:after {
      content: "";
      display: block;
      width: 1px;
      height: 100%;
      background: #fff;
      position: absolute;
      top: 0;
      left: 0;
      transform: scaleY(0);
      transform-origin: left top;
      transition: all 1s; }
    .btn a:after {
      width: 100%;
      height: 1px;
      transform: scaleX(0); }
    .btn a .line:before, .btn a .line:after {
      width: 1px;
      height: 100%;
      top: auto;
      left: auto;
      bottom: 0;
      right: 0;
      transform: scaleY(0);
      transform-origin: right bottom; }
    .btn a .line:after {
      width: 100%;
      height: 1px;
      transform: scaleX(0); }
  .btn.appearLate.show a:before, .btn.appearLate.show a:after, .btn.appearLate.show a .line:before, .btn.appearLate.show a .line:after {
    transform: scaleY(1); }
  .btn.appearLate.show a:after {
    transform: scaleX(1); }
  .btn.appearLate.show a .line:before, .btn.appearLate.show a .line:after {
    transform: scaleY(1); }
  .btn.appearLate.show a .line:after {
    transform: scaleX(1); }

@keyframes btn_hover {
  0% {
    transform: translate(0, 0) rotate(0deg) scaleX(0);
    transform-origin: left center; }
  35% {
    transform: translate(0, 0) rotate(0deg) scaleX(1);
    transform-origin: left center; }
  36%, 60% {
    transform: translate(0, 0) rotate(0deg) scaleX(1);
    transform-origin: right center; }
  to {
    transform: translate(0, 0) rotate(0deg) scaleX(0);
    transform-origin: right center; } }
@keyframes hover_black {
  0%, to {
    color: #fff; }
  35%, 36%, 60% {
    color: #000; } }
/*=======================================
	loader
=======================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  flex-wrap: wrap; }
  #loader .cover {
    width: 100%;
    height: 50%;
    background-color: #000;
    transform: scaleX(1); }
  #loader .cover.a {
    transform-origin: right center; }
  #loader .cover.b {
    transform-origin: left center; }
  #loader.loaded .cover.a, #loader.loaded .cover.b {
    animation: load_open .8s forwards;
    animation-delay: 2.4s; }
  #loader .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff; }
  #loader .txt p {
    position: relative;
    font-size: 18px;
    letter-spacing: 0.2em;
    animation: load_txt1 0.6s cubic-bezier(0.04, 0.435, 0.315, 0.9) both; }
    #loader .txt p:before {
      content: "";
      display: block;
      height: 110%;
      width: 20px;
      background-color: #000;
      position: absolute;
      top: 0;
      left: 80%;
      z-index: 2001;
      transform: translate(-5%, -5%);
      animation: load_txt2 0.6s cubic-bezier(0.04, 0.435, 0.315, 0.9) both;
      animation-delay: .4s; }
  #loader .txt span {
    display: block;
    overflow: hidden;
    white-space: nowrap; }
  #loader.loaded .txt span {
    animation: load_txt3 0.6s cubic-bezier(0.04, 0.435, 0.315, 0.9) both;
    animation-delay: 1.4s; }

@keyframes load_txt1 {
  0% {
    left: -150px; }
  100% {
    left: 0; } }
@keyframes load_txt2 {
  0% {
    left: -20px; }
  40% {
    left: 100%; }
  80% {
    opacity: 1; }
  100% {
    left: 0;
    opacity: 0; } }
@keyframes load_txt3 {
  0% {
    width: 100%; }
  100% {
    width: 0; } }
@keyframes load_open {
  0% {
    transform: scaleX(1); }
  100% {
    transform: scaleX(0); } }
/*=======================================
	main_visual
=======================================*/
.main_visual {
  height: 80vh;
  /*background: url("../images/main_visual.jpg") no-repeat center;*/
  background-size: cover;
  color: #fff;
  position: relative; }
  .main_visual .logo {
    color: #d2e4eb;
    font-size: 12px;
    line-height: 17px;
    padding: 0 0 0 130px;
    margin: 0 0 0 40px;
    position: relative;
    top: 40px;
    left: 0; }
    .main_visual .logo:before, .main_visual .logo:after {
      content: "";
      display: block;
      width: 90px;
      height: 17px;
      background: url("../images/logo_light_blue.png") no-repeat;
      background-size: 100% auto;
      position: absolute;
      top: 0;
      left: 0; }
    .main_visual .logo:after {
      width: 1px;
      background: #d2e4eb;
      background-size: auto;
      left: 110px; }
  .main_visual .main_txt {
    width: 100%;
    height: 63px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url("../images/main_txt.png") repeat-x;
    background-size: auto 100%;
    animation: bg_slider 23s linear infinite; }
    .main_visual .main_txt:after {
      content: "";
      display: block;
      width: 100%;
      height: 1px;
      background: url("../images/main_txt_bg.png") repeat-x;
      position: absolute;
      top: 50%;
      left: 0;
      opacity: 0.5; }
@keyframes bg_slider {
  from {
    background-position: 0 0; }
  to {
    background-position: -2000px 0; } }
  .main_visual .scroll {
    font-size: 11px;
    position: absolute;
    bottom: 120px;
    right: 50px; }
    .main_visual .scroll:before, .main_visual .scroll:after {
      content: "";
      display: block;
      width: 1px;
      height: 75px;
      background: #fff;
      position: absolute;
      top: 25px;
      left: 50%;
      transform: translateX(-50%); }
    .main_visual .scroll:after {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      animation: scroll 2s ease-out forwards infinite; }
@keyframes scroll {
  0% {
    top: 25px; }
  50% {
    top: 95px; }
  100% {
    top: 95px; } }
  .main_visual .main_logo {
    width: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

/*=======================================
	about
=======================================*/
.about {
  margin: 140px 0 200px; }
  .about .wrap {
    position: relative; }
  .about .h, .about p, .about .a {
    max-width: 40.7407407407%; }
  .about h1 {
    width: 10em; }
  .about p {
    margin: 0 0 100px 0; }
  .about figure.b {
    width: 52.2522522523%;
    position: absolute;
    top: 0;
    right: 15px; }
    .about figure.b:before {
      content: "";
      display: block;
      width: 520px;
      height: 150px;
      background: url("../images/bg_dot.png") repeat;
      position: absolute;
      bottom: -80px;
      right: -55px;
      z-index: -1;
      opacity: 0.2; }
  .about.appearLate.show figure.b:before {
    animation: to_top 1.5s both ease-out 1s; }
@keyframes to_top {
  0% {
    bottom: -130px;
    opacity: 0; }
  100% {
    bottom: -80px;
    opacity: 0.2; } }
/*=======================================
	service
=======================================*/
.service {
  padding: 100px 50px 0 50px;
  margin: 0 0 140px 0;
  position: relative; }
  .service:after {
    content: "";
    display: block;
    width: calc(100% - 100px);
    height: 70%;
    background: #000;
    position: absolute;
    top: 0;
    left: 50px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left center;
    transition: all .7s; }
  .service.appearLate.show:after {
    transform: scaleX(1); }
  .service .h {
    width: 16em;
    margin: 0 auto; }
    .service .h h1 {
      color: #fff; }
    .service .h h1.shade:after {
      background: #fff; }
    .service .h h1.appearLate.show.shade:after {
      animation: img_show_reverse 0.8s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.3s; }
  .service ul {
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    display: flex;
    justify-content: center; }
  .service li {
    width: 320px;
    margin: 0 2.9914529915%;
    box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.3); }
  .service h3 {
    margin: 0 0 45px 0; }
    .service h3:before {
      content: "";
      display: block;
      width: 58px;
      height: 45px;
      margin: 0 auto 25px auto;
      background-image: url("../images/service_icon_01.png");
      background-repeat: no-repeat;
      background-size: 100% auto; }
  .service p {
    margin-bottom: 20px;
    text-align: left; }
  .service li:nth-of-type(2) h3:before {
    background-image: url("../images/service_icon_02.png"); }
  .service li:nth-of-type(3) h3:before {
    background-image: url("../images/service_icon_03.png"); }
  .service ul + figure {
    display: none; }

/*=======================================
	restaurant
=======================================*/
.restaurant {
  padding: 100px 50px 0 50px;
  margin: 0 0 140px 0;
  position: relative; }
  .restaurant:after {
    content: "";
    display: block;
    width: calc(100% - 100px);
    height: 70%;
    position: absolute;
    top: 0;
    left: 50px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left center;
    transition: all .7s; }
  .restaurant.appearLate.show:after {
    transform: scaleX(1); }
  .restaurant .h {
    width: 16em;
    margin: 0 auto; }
    .restaurant .h h1.shade:after {
      background: #fff; }
    .restaurant .h h1.appearLate.show.shade:after {
      animation: img_show_reverse 0.8s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.3s; }
  .restaurant ul {
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    display: flex;
    justify-content: center; }
  .restaurant li {
    width: 320px;
    margin: 0 2.9914529915%;
    /*box-shadow: 0 30px 50px 0 rgba(0,0,0,0.3);*/ }
  .restaurant h3 {
    margin: 25px 0 25px 0; }
    .restaurant h3:before {
      content: "";
      display: block;
      width: 280px;
      height: 170px;
      margin: 10px auto 25px auto;
      background-image: url("../images/crew_logo.png");
      background-repeat: no-repeat;
      background-size: 100% auto; }
    .restaurant h3 span {
      font-weight: bold; }
  .restaurant li:nth-of-type(2) h3:before {
    background-image: url("../images/boonies_logo.png"); }
  .restaurant ul + figure {
    display: none; }
  .restaurant p {
    margin-bottom: 20px; }

/*=======================================
	movie
=======================================*/
.movie {
  height: 490px;
  padding: 0 50px;
  overflow: hidden; }
  .movie video {
    width: 100%; }

/*=======================================
	contact
=======================================*/
.contact {
  background: url("../images/contact_bg.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  display: flex; }
  .contact .txt,
  .contact .img {
    width: 50%;
    padding: 130px 0;
    box-sizing: border-box; }
  .contact .txt {
    color: #fff;
    padding-left: 20%;
    padding-right: 3%; }
  .contact .img {
    background: #fff; }
    .contact .img figure {
      width: 54%;
      margin: 0 auto; }
  .contact .h {
    width: 15em; }
    .contact .h h1 {
      color: #fff; }
    .contact .h h1.shade:after {
      background: #fff; }
    .contact .h h1.appearLate.show.shade:after {
      animation: img_show_reverse 0.8s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.3s; }

/*=======================================
	footer
=======================================*/
footer {
  background: #000;
  color: #fff;
  padding: 125px 0; }
  footer h2 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 35px 0; }
  footer p {
    font-size: 13px;
    line-height: 3;
    color: #989898;
    margin: 0 0 50px 0; }
  footer .wrap > div {
    display: flex; }
    footer .wrap > div div {
      width: 50%; }
  footer .copy {
    font-size: 12px;
    color: #626262;
    line-height: 17px; }
  footer .logo {
    text-align: right; }
    footer .logo img {
      height: 17px; }

/*=======================================
	privacy
=======================================*/
.privacy .wrap {
  margin-bottom: 50px; }
  .privacy .wrap h2 {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin: 100px 0 50px; }
  .privacy .wrap dt {
    font-weight: bold;
    margin: 30px 0 0 0; }
  .privacy .wrap dd {
    padding: 0 0 0 1em; }

@media only screen and (max-width: 1200px) {
  .about figure.b {
    right: 20px; }
    .about figure.b:before {
      right: -20px; }

  .contact .txt {
    padding-left: 11.5%;
    padding-right: 5%; } }
/******************************************************************************************

	sp size

******************************************************************************************/
@media only screen and (max-width: 767px) {
  .pc_only,
  .pc_only_inline {
    display: none; }

  .sp_only {
    display: block; }

  .sp_only_inline {
    display: inline; }

  .wrap {
    font-size: 14px; }

  .to_top {
    top: 30px;
    opacity: 0; }

  .h {
    text-align: center; }
    .h .num {
      font-size: 15px; }
      .h .num:after {
        width: 25px;
        height: 2px;
        margin: 0 auto;
        position: static;
        top: auto;
        left: auto; }
    .h h1 {
      font-size: 25px;
      margin: 15px 0 30px 0; }

  .btn {
    margin: 30px 0;
    display: block;
    text-align: center; }
    .btn a {
      padding: 20px 50px; }

  /*=======================================
  	loader
  =======================================*/
  #loader .txt p {
    font-size: 14px; }

  /*=======================================
  	main_visual
  =======================================*/
  .main_visual {
    height: 50vh; }
    .main_visual .logo {
      font-size: 8px;
      line-height: 11px;
      padding: 0 0 0 85px;
      margin: 0 0 0 10px;
      top: 10px;
      left: 0; }
      .main_visual .logo:before, .main_visual .logo:after {
        width: 56px;
        height: 11px; }
      .main_visual .logo:after {
        width: 1px;
        background: #d2e4eb;
        background-size: auto;
        left: 70px; }
    .main_visual .main_txt {
      height: 34px; }
  @keyframes bg_slider {
    from {
      background-position: 0 0; }
    to {
      background-position: -1080px 0; } }
    .main_visual .scroll {
      display: none; }
    .main_visual .main_logo {
      width: 150px; }

  /*=======================================
  	about
  =======================================*/
  .about {
    margin: 70px 0;
    padding: 0 20px; }
    .about .h, .about p, .about .a {
      max-width: none; }
    .about h1 {
      margin-left: auto;
      margin-right: auto; }
    .about p {
      margin: 0 0 50px 0; }
    .about figure.a {
      display: none; }
    .about figure.b {
      width: auto;
      position: relative;
      top: auto;
      right: auto; }
      .about figure.b:before {
        width: 260px;
        height: 75px;
        background: url("../images/bg_dot.png") repeat;
        background-size: 6px;
        bottom: -25px;
        right: -20px; }
  @keyframes to_top {
    0% {
      bottom: -50px; }
    100% {
      bottom: -25px; } }
  /*=======================================
  	service
  =======================================*/
  .service {
    padding: 50px 0 0 0;
    margin: 0 0 70px 0; }
    .service:after {
      width: 100%;
      height: 90%;
      left: 0; }
    .service .h {
      width: 13em; }
    .service ul {
      display: block;
      margin-top: 0; }
    .service li {
      width: auto;
      margin: 0 auto 50px;
      box-shadow: none; }
    .service li figure {
      display: none; }
    .service h3 {
      margin: 0 0 40px 0; }
      .service h3:before {
        width: 77px;
        height: 60px;
        margin: 0 auto 15px auto; }
    .service p {
      padding: 0 3em; }
    .service ul + figure {
      display: block;
      width: 90.6666666667%;
      margin: 0 auto;
      box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.3); }

  /*=======================================
  	restaurant
  =======================================*/
  .restaurant {
    padding: 50px 0 0 0;
    margin: 0 0 70px 0; }
    .restaurant:after {
      width: 100%;
      height: 90%;
      left: 0; }
    .restaurant .h {
      width: 13em; }
    .restaurant ul {
      display: block;
      margin-top: 0; }
    .restaurant li {
      width: auto;
      margin: 0 auto 50px;
      box-shadow: none; }
    .restaurant h3 {
      margin: 0 0 40px 0; }
      .restaurant h3:before {
        margin: 0 auto 15px auto; }
    .restaurant p {
      padding: 0 2em; }
    .restaurant ul + figure {
      display: block;
      width: 90.6666666667%;
      margin: 0 auto;
      box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.3); }

  /*=======================================
  	movie
  =======================================*/
  .movie {
    display: none; }

  /*=======================================
  	contact
  =======================================*/
  .contact {
    display: block; }
    .contact .txt,
    .contact .img {
      width: auto;
      padding: 0; }
    .contact .txt {
      padding: 40px 20px 20px 20px;
      font-size: 14px;
      text-align: center; }
    .contact .img {
      display: none; }
    .contact .h {
      width: 13em;
      margin-left: auto;
      margin-right: auto; }
    .contact .btn {
      max-width: 250px;
      margin-left: auto;
      margin-right: auto; }

  /*=======================================
  	footer
  =======================================*/
  footer {
    padding: 40px 0; }
    footer h2 {
      font-size: 13px;
      margin: 0 0 25px 0;
      text-align: center; }
    footer p {
      font-size: 12px;
      line-height: 1.8;
      margin: 0 0 30px 0; }
    footer .wrap > div {
      display: block; }
      footer .wrap > div div {
        width: auto; }
    footer .copy {
      font-size: 10px;
      line-height: 1;
      text-align: center; }
    footer .logo {
      display: none; }

  /*=======================================
  	privacy
  =======================================*/
  .privacy .wrap h2 {
    margin: 50px 0 30px; }
  .privacy .wrap dt {
    margin: 20px 0 0 0; } }

/*# sourceMappingURL=style.css.map */
