@charset "UTF-8";
/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : style.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _variable.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _mixin.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _variable.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _keyframes_mixin.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
/**
 * csstools/sanitize.css
 * GitHub: https://github.com/csstools/sanitize.css
 */
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  * 1. Add text decoration inheritance in all browsers (opinionated).
  * 2. Add vertical alignment inheritance in all browsers (opinionated).
  */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
  * 1. Use the default cursor in all browsers (opinionated).
  * 2. Change the line height in all browsers (opinionated).
  * 3. Use a 4-space tab width in all browsers (opinionated).
  * 4. Remove the grey highlight on links in iOS (opinionated).
  * 5. Prevent adjustments of font size after orientation changes in
  *    IE on Windows Phone and in iOS.
  * 6. Breaks words to prevent overflow in all browsers (opinionated).
  */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}

/* Sections
  * ========================================================================== */
/**
  * Remove the margin in all browsers (opinionated).
  */
body {
  margin: 0;
}

/**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Edge, Firefox, and Safari.
  */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
  * ========================================================================== */
/**
  * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
  */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
  * Remove the margin on nested lists in Edge 18- and IE.
  */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
  * 1. Add the correct sizing in Firefox.
  * 2. Show the overflow in Edge 18- and IE.
  */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
  * Add the correct display in IE.
  */
main {
  display: block;
}

/**
  * Remove the list style on navigation lists in all browsers (opinionated).
  */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
  * ========================================================================== */
/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent;
}

/**
  * Add the correct text decoration in Edge 18-, IE, and Safari.
  */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
b,
strong {
  font-weight: bolder;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 80%;
}

/* Embedded content
  * ========================================================================== */
/*
  * Change the alignment on media elements in all browsers (opinionated).
  */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
  * Add the correct display in IE 9-.
  */
audio,
video {
  display: inline-block;
}

/**
  * Add the correct display in iOS 4-7.
  */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
  * Remove the border on iframes in all browsers (opinionated).
  */
iframe {
  border-style: none;
}

/**
  * Remove the border on images within links in IE 10-.
  */
img {
  border-style: none;
}

/**
  * Change the fill color to match the text color in all browsers (opinionated).
  */
svg:not([fill]) {
  fill: currentColor;
}

/**
  * Hide the overflow in IE.
  */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
  * ========================================================================== */
/**
  * Collapse border spacing in all browsers (opinionated).
  */
table {
  border-collapse: collapse;
}

/* Forms
  * ========================================================================== */
/**
  * Remove the margin on controls in Safari.
  */
button,
input,
select {
  margin: 0;
}

/**
  * 1. Show the overflow in IE.
  * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
  */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}

/**
  * Correct the inability to style buttons in iOS and Safari.
  */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
  * 1. Change the inconsistent appearance in all browsers (opinionated).
  * 2. Correct the padding in Firefox.
  */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}

/**
  * Show the overflow in Edge 18- and IE.
  */
input {
  overflow: visible;
}

/**
  * 1. Correct the text wrapping in Edge 18- and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
}

/**
  * 1. Add the correct display in Edge 18- and IE.
  * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
  */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
  * Remove the inheritance of text transform in Firefox.
  */
select {
  text-transform: none;
}

/**
  * 1. Remove the margin in Firefox and Safari.
  * 2. Remove the default vertical scrollbar in IE.
  * 3. Change the resize direction in all browsers (opinionated).
  */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
}

/**
  * Remove the padding in IE 10-.
  */
[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
  * 1. Correct the odd appearance in Chrome, Edge, and Safari.
  * 2. Correct the outline style in Safari.
  */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
  * Correct the cursor style of increment and decrement buttons in Safari.
  */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
  * Correct the text style of placeholders in Chrome, Edge, and Safari.
  */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
  * Remove the inner padding in Chrome, Edge, and Safari on macOS.
  */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style upload buttons in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
  * Remove the inner border and padding of focus outlines in Firefox.
  */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
  * Restore the focus outline styles unset by the previous rule in Firefox.
  */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
  * Remove the additional :invalid styles in Firefox.
  */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
  * ========================================================================== */
/*
  * Add the correct display in Edge 18- and IE.
  */
details {
  display: block;
}

/*
  * Add the correct styles in Edge 18-, IE, and Safari.
  */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
  * Add the correct display in all browsers.
  */
summary {
  display: list-item;
}

/* Scripting
  * ========================================================================== */
/**
  * Add the correct display in IE 9-.
  */
canvas {
  display: inline-block;
}

/**
  * Add the correct display in IE.
  */
template {
  display: none;
}

/* User interaction
  * ========================================================================== */
/*
  * 1. Remove the tapping delay in IE 10.
  * 2. Remove the tapping delay on clickable elements
       in all browsers (opinionated).
  */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
  /* 2 */
}

/**
  * Add the correct display in IE 10-.
  */
[hidden] {
  display: none;
}

/* Accessibility
  * ========================================================================== */
/**
  * Change the cursor on busy elements in all browsers (opinionated).
  */
[aria-busy="true"] {
  cursor: progress;
}

/*
  * Change the cursor on control elements in all browsers (opinionated).
  */
[aria-controls] {
  cursor: pointer;
}

/*
  * Change the cursor on disabled, not-editable, or otherwise
  * inoperable elements in all browsers (opinionated).
  */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
  * Change the display on visually hidden accessible elements
  * in all browsers (opinionated).
  */
[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _base.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
html {
  font-size: 10px;
  font-family: "Noto Sans JP", "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  letter-spacing: 0.5px;
  color: #222;
}

body {
  font-weight: 400;
  font-size: 1.4rem;
}

@media screen and (max-width: 960px) {
  body {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 960px) {
  html, body {
    overflow-x: hidden;
  }
}

p {
  margin: 0;
}

#main {
  margin-top: 100vh;
  background-color: #fff;
}

.wrapper {
  margin-left: 146px;
}

@media screen and (max-width: 960px) {
  .wrapper {
    margin-left: 0;
    margin-top: 72px;
  }
}

.content-container {
  width: 84%;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .content-container {
    width: 100%;
  }
}

a {
  text-decoration: none;
}

.swiper-pagination-bullet {
  opacity: 1 !important;
  background-color: #fff !important;
}

.swiper-pagination-bullet-active {
  background-color: #00643d !important;
}

.swiper-container {
  padding-bottom: 40px !important;
}

@media screen and (max-width: 960px) {
  .swiper-container .swiper-wrapper .swiper-slide img.pc {
    display: none;
  }
}

@media screen and (min-width: 961px) {
  .swiper-container .swiper-wrapper .swiper-slide img.mobile {
    display: none;
  }
}

.swiper-container .swiper-pagination {
  position: absolute;
  bottom: 10px;
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _header.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
#header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 146px;
  position: fixed;
  left: 0;
  top: 0%;
  bottom: 0;
  background-color: #fff;
  padding: 44px 1.6% 14px;
}

@media screen and (max-width: 960px) {
  #header {
    width: 100%;
    bottom: auto;
    z-index: 101;
    padding: 0;
    background-color: transparent;
  }
}

@media screen and (max-width: 960px) {
  #header .header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 7px 22px;
    background-color: #fff;
  }
}

#header .header-container .logo {
  margin: 0 auto;
  width: 80%;
}

@media screen and (max-width: 960px) {
  #header .header-container .logo {
    margin: 0;
    width: 58px;
  }
}

#header .header-container .logo a {
  width: 100%;
}

#header .header-container .logo a img {
  width: 100%;
}

#header .header-container #menu-button {
  display: none;
  height: 23px;
  background-color: transparent;
  border: none;
}

@media screen and (max-width: 960px) {
  #header .header-container #menu-button {
    display: block;
  }
}

#header .header-container #menu-button .menu-bar {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #222;
  top: 0;
  position: relative;
}

#header .header-container #menu-button .menu-bar:before {
  content: "";
  position: absolute;
  transition: all 100ms ease;
  display: block;
  width: 30px;
  height: 3px;
  background-color: #222;
  top: -10px;
}

#header .header-container #menu-button .menu-bar:after {
  content: "";
  position: absolute;
  transition: all 100ms ease;
  display: block;
  width: 30px;
  height: 3px;
  background-color: #222;
  top: 10px;
}

@media screen and (max-width: 960px) {
  #header .nav-content {
    width: 100%;
    visibility: hidden;
    max-height: 0;
    transform: scaleY(0);
    transform-origin: top;
    margin: 0;
    transition: all 100ms linear;
    background-color: rgba(255, 255, 255, 0.8);
  }
}

#header .nav-content #global-nav {
  font-size: 1.2rem;
  margin-bottom: 83px;
}

@media screen and (max-width: 960px) {
  #header .nav-content #global-nav {
    text-align: center;
    margin-bottom: 50px;
  }
}

#header .nav-content #global-nav .nav-list {
  margin: 0;
  font-family: "Lato", "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

#header .nav-content #global-nav .nav-list .nav-item {
  margin-bottom: 16px;
  line-height: 1;
}

@media screen and (max-width: 960px) {
  #header .nav-content #global-nav .nav-list .nav-item {
    margin-bottom: 26px;
  }
}

#header .nav-content #global-nav .nav-list .nav-item .nav-link {
  color: #000;
}

#header .nav-content #global-nav .nav-list .nav-item .nav-link:hover, #header .nav-content #global-nav .nav-list .nav-item .nav-link:active, #header .nav-content #global-nav .nav-list .nav-item .nav-link:focus {
  color: #333333;
}

#header .nav-content #global-nav .nav-list .nav-item:last-child {
  margin-bottom: 0;
}

#header .nav-content .sns-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 960px) {
  #header .nav-content .sns-links {
    flex-direction: row;
    justify-content: center;
  }
}

#header .nav-content .sns-links .sns-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 11%;
}

#header .nav-content .sns-links .sns-icon a {
  width: 100%;
  height: 100%;
}

#header .nav-content .sns-links .sns-icon a img {
  width: 100%;
}

@media screen and (max-width: 960px) {
  #header .nav-content .sns-links .sns-icon {
    margin-bottom: 0;
    margin-right: 7px;
  }
  #header .nav-content .sns-links .sns-icon:last-child {
    margin-right: 0;
  }
}

#header.is-open #menu-button .menu-bar {
  background-color: transparent;
}

#header.is-open #menu-button .menu-bar:before {
  transform: rotate(45deg) translate(7px, 7px);
  transition: all 100ms ease;
}

#header.is-open #menu-button .menu-bar:after {
  transform: rotate(-45deg) translate(7px, -7px);
  transition: all 100ms ease;
}

#header.is-open .nav-content {
  visibility: visible;
  max-height: 1000px;
  transform: scaleY(1);
  padding: 63px 0 43px;
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _footer.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
#footer {
  font-size: 1rem;
  text-align: right;
  line-height: 1;
  padding: 59px 130px 54px 0;
  background-color: #fff;
}

@media screen and (max-width: 960px) {
  #footer {
    font-size: 0.8rem;
    text-align: center;
    padding: 14px 0;
  }
}

#footer p {
  margin: 0;
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _section-title.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
.section-title {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  font-family: "Lato", "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

@media screen and (max-width: 960px) {
  .section-title {
    font-size: 1.2rem;
  }
}

.section-title .subtitle {
  font-family: "Noto Sans JP", "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  display: inline-block;
  font-weight: bold;
  font-size: 2rem;
  margin-top: 11px;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .section-title .subtitle {
    font-size: 1.8rem;
    margin-top: 6px;
  }
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _box-title.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
.box-title {
  font-size: 2rem;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .box-title {
    font-size: 1.6rem;
    text-align: center;
  }
}

@media screen and (max-width: 960px) {
  .box-title.pc {
    display: none;
  }
}

.box-title.mobile {
  font-size: 1.6rem;
  font-weight: 500;
}

@media screen and (min-width: 961px) {
  .box-title.mobile {
    display: none;
  }
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _base-button.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
@-webkit-keyframes floatButton {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@-moz-keyframes floatButton {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes floatButton {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.base-button {
  display: inline-block;
  position: relative;
  min-width: 240px;
  height: 67px;
  line-height: 67px;
  font-size: 2rem;
  color: #00643d;
  background-color: #fff;
  text-align: center;
  font-family: "Lato", "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  opacity: 0.7;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

.base-button:hover {
  -webkit-animation: floatButton 0.1s linear;
  -moz-animation: floatButton 0.1s linear;
  animation: floatButton 0.1s linear;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  box-shadow: rgba(0, 0, 0, 0.15) 4.4px 4.4px 3.2px;
}

@media screen and (max-width: 960px) {
  .base-button {
    font-size: 1.6rem;
    min-width: 195px;
  }
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _button-with-border-bottom.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
.button-with-border-bottom {
  display: block;
  margin: 0 0 0 auto;
  min-width: 240px;
  font-size: 2rem;
  line-height: 1;
  color: #00643d;
  box-sizing: border-box;
  text-align: right;
  font-family: "Lato", "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

@media screen and (max-width: 960px) {
  .button-with-border-bottom {
    font-size: 1.6rem;
    min-width: 190px;
  }
}

.button-with-border-bottom::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #00643d;
  margin-top: 11px;
  transition: transform 200ms linear;
  transform: scaleX(1);
  transform-origin: left;
}

.button-with-border-bottom:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

.button-with-border-bottom .arrow {
  right: 15px;
  margin: auto;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: #00643d 2px solid;
  border-right: #00643d 2px solid;
  transform: rotate(45deg);
  box-sizing: border-box;
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _button-with-changing-text.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
@-webkit-keyframes floatButton {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@-moz-keyframes floatButton {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes floatButton {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.button-with-changing-text {
  display: inline-block;
  position: relative;
  min-width: 240px;
  height: 67px;
  line-height: 67px;
  font-size: 2rem;
  color: #00643d;
  background-color: #fff;
  text-align: center;
  font-family: "Lato", "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  opacity: 0.7;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

.button-with-changing-text:hover {
  -webkit-animation: floatButton 0.1s linear;
  -moz-animation: floatButton 0.1s linear;
  animation: floatButton 0.1s linear;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  box-shadow: rgba(0, 0, 0, 0.15) 4.4px 4.4px 3.2px;
}

.button-with-changing-text:hover::before {
  content: 'Comming soon';
}

.button-with-changing-text:hover .text {
  display: none;
}

@media screen and (max-width: 960px) {
  .button-with-changing-text {
    font-size: 1.6rem;
    min-width: 195px;
  }
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _popup.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
#popup {
  position: fixed;
  padding: 14px 21px 14px 14px;
  right: 0;
  bottom: 60px;
  width: 210px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  background-color: #00643d;
  color: #fff;
  z-index: 100;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  font-size: 11px;
}

#popup .icon-block {
  width: 74px;
  margin-right: 7px;
}

#popup .icon-block p {
  margin: 0;
}

#popup .icon-block img {
  width: 100%;
}

#popup .body-blcok {
  width: 94px;
  text-align: center;
}

#popup .body-blcok p {
  margin: 0 0 8px 0;
}

#popup .body-blcok .order-button {
  display: inline-block;
  color: #00643d;
  background-color: #f1f1e8;
  width: 100%;
  height: 22px;
  line-height: 22px;
  font-weight: bold;
}

#popup .body-blcok .order-button:hover, #popup .body-blcok .order-button:active, #popup .body-blcok .order-button:focus {
  color: #00643d;
}

#popup .close-button {
  position: absolute;
  display: block;
  top: 9px;
  right: 6px;
  border: none;
  padding: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
}

#popup .close-button .button-bar {
  position: relative;
}

#popup .close-button .button-bar:before, #popup .close-button .button-bar:after {
  content: "";
  position: absolute;
  left: 50%;
  transform-origin: top left;
  display: block;
  width: 12px;
  height: 1px;
  background-color: #fff;
  top: 50%;
}

#popup .close-button .button-bar:before {
  transform: rotate(45deg) translate(-50%, -50%);
}

#popup .close-button .button-bar:after {
  transform: rotate(-45deg) translate(-50%, -50%);
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _map-modal.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
#map-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
}

#map-modal .map-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

@media screen and (max-width: 960px) {
  #map-modal .map-container {
    width: 80%;
  }
}

#map-modal .map-container .close-button {
  position: absolute;
  display: block;
  top: 9px;
  right: 6px;
  border: none;
  padding: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
}

#map-modal .map-container .close-button .button-bar {
  position: relative;
}

#map-modal .map-container .close-button .button-bar:before, #map-modal .map-container .close-button .button-bar:after {
  content: "";
  position: absolute;
  left: 50%;
  transform-origin: top left;
  display: block;
  width: 12px;
  height: 1px;
  background-color: #00643d;
  top: 50%;
}

#map-modal .map-container .close-button .button-bar:before {
  transform: rotate(45deg) translate(-50%, -50%);
}

#map-modal .map-container .close-button .button-bar:after {
  transform: rotate(-45deg) translate(-50%, -50%);
}

#map-modal .map-container img {
  width: 100%;
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _above-the-fold.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
@-webkit-keyframes indicatorAnimation {
  0% {
    top: 0%;
    opacity: 0;
  }
  20% {
    top: 0%;
    opacity: 1;
  }
  80% {
    top: 98%;
    opacity: 1;
  }
  100% {
    top: 98%;
    opacity: 0;
  }
}

@-moz-keyframes indicatorAnimation {
  0% {
    top: 0%;
    opacity: 0;
  }
  20% {
    top: 0%;
    opacity: 1;
  }
  80% {
    top: 98%;
    opacity: 1;
  }
  100% {
    top: 98%;
    opacity: 0;
  }
}

@keyframes indicatorAnimation {
  0% {
    top: 0%;
    opacity: 0;
  }
  20% {
    top: 0%;
    opacity: 1;
  }
  80% {
    top: 98%;
    opacity: 1;
  }
  100% {
    top: 98%;
    opacity: 0;
  }
}

#above-the-fold {
  position: fixed;
  top: 0;
  left: 146px;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 960px) {
  #above-the-fold {
    left: 0;
  }
}

#above-the-fold .swiper-container {
  height: 100vh;
  padding-bottom: 0 !important;
}

#above-the-fold .swiper-container .swiper-wrapper .swiper-slide.slide-1 {
  background: url("./img/main-slider-1.jpg") no-repeat center center/cover;
}

@media screen and (max-width: 600px) {
  #above-the-fold .swiper-container .swiper-wrapper .swiper-slide.slide-1 {
    background: url("./img/main-slider-1-mobile.jpg") no-repeat center center/cover;
  }
}

#above-the-fold .swiper-container .swiper-wrapper .swiper-slide.slide-2 {
  background: url("./img/main-slider-2.jpg") no-repeat center center/cover;
}

@media screen and (max-width: 600px) {
  #above-the-fold .swiper-container .swiper-wrapper .swiper-slide.slide-2 {
    background: url("./img/main-slider-2-mobile.jpg") no-repeat center center/cover;
  }
}

#above-the-fold .swiper-container .swiper-wrapper .swiper-slide.slide-3 {
  background: url("./img/main-slider-3.jpg") no-repeat center center/cover;
}

@media screen and (max-width: 600px) {
  #above-the-fold .swiper-container .swiper-wrapper .swiper-slide.slide-3 {
    background: url("./img/main-slider-3-mobile.jpg") no-repeat center center/cover;
  }
}

#above-the-fold #indicator {
  position: absolute;
  width: 48px;
  height: 100px;
  padding: 12px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  vertical-align: middle;
  letter-spacing: 2px;
  left: 14px;
  bottom: 14px;
  z-index: 100;
  writing-mode: vertical-rl;
}

#above-the-fold #indicator .content {
  position: relative;
  width: 100%;
  color: #f1f1e8;
}

#above-the-fold #indicator .content .bar {
  display: block;
  width: 2px;
  height: 100%;
  background-color: #f1f1e8;
  position: absolute;
  top: 0;
  left: 0;
}

#above-the-fold #indicator .content .bar::before {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #f1f1e8;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  -webkit-animation: indicatorAnimation 2s cubic-bezier(0.5, 0, 0, 1) infinite;
  animation: indicatorAnimation 2s cubic-bezier(0.5, 0, 0, 1) infinite;
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _about-us.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
#about-us {
  margin-bottom: 127px;
  padding: 130px 0 105px;
  background: url("img/about-bg.png") 0 0/81% 78% no-repeat;
}

@media screen and (max-width: 960px) {
  #about-us {
    padding: 66px 0 36px;
    margin-bottom: 125px;
    background: transparent;
  }
}

#about-us .section-title {
  margin-bottom: 167px;
}

@media screen and (max-width: 960px) {
  #about-us .section-title {
    margin-bottom: 75px;
  }
}

#about-us .swiper-container {
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

#about-us .section-content-box {
  display: flex;
  flex-direction: row;
  line-height: 1.81;
}

#about-us .section-content-box .box-title {
  line-height: 1;
  margin: 0 0 21px 0;
}

#about-us .section-content-box.row-1 {
  margin-bottom: 225px;
}

@media screen and (max-width: 960px) {
  #about-us .section-content-box.row-1 {
    flex-direction: column;
    margin-bottom: 76px;
  }
}

#about-us .section-content-box.row-1 .left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 45%;
  padding: 5% 5%;
}

@media screen and (max-width: 960px) {
  #about-us .section-content-box.row-1 .left {
    width: 100%;
    padding: 0 8%;
    margin-bottom: 54px;
    justify-content: unset;
    align-items: center;
  }
}

#about-us .section-content-box.row-1 .left .box-title {
  text-align: right;
}

@media screen and (max-width: 960px) {
  #about-us .section-content-box.row-1 .left .box-title {
    text-align: center;
  }
}

#about-us .section-content-box.row-1 .right {
  width: 55%;
}

@media screen and (max-width: 960px) {
  #about-us .section-content-box.row-1 .right {
    width: 100%;
  }
}

#about-us .section-content-box.row-1 .right img {
  width: 100%;
}

@media screen and (max-width: 960px) {
  #about-us .section-content-box.row-1 .right img.pc {
    display: none;
  }
}

@media screen and (min-width: 961px) {
  #about-us .section-content-box.row-1 .right img.mobile {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  #about-us .section-content-box.row-2 {
    flex-direction: column-reverse;
  }
}

#about-us .section-content-box.row-2 .left {
  width: 52%;
}

@media screen and (max-width: 960px) {
  #about-us .section-content-box.row-2 .left {
    width: 100%;
  }
}

#about-us .section-content-box.row-2 .left .swiper-container {
  width: 100%;
}

@media screen and (max-width: 960px) {
  #about-us .section-content-box.row-2 .left .swiper-container {
    margin-bottom: 36px;
  }
}

#about-us .section-content-box.row-2 .left .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
}

#about-us .section-content-box.row-2 .left .org-logos-mobile {
  display: flex;
  flex-direction: row;
  width: 73%;
  margin: 0 auto;
}

@media screen and (min-width: 961px) {
  #about-us .section-content-box.row-2 .left .org-logos-mobile {
    display: none;
  }
}

#about-us .section-content-box.row-2 .left .org-logos-mobile .org-logo {
  margin-right: 14px;
}

#about-us .section-content-box.row-2 .left .org-logos-mobile .org-logo:last-child {
  margin-right: 0;
}

#about-us .section-content-box.row-2 .left .org-logos-mobile .org-logo img {
  width: 100%;
}

#about-us .section-content-box.row-2 .right {
  width: 48%;
  padding: 5% 5%;
}

@media screen and (max-width: 960px) {
  #about-us .section-content-box.row-2 .right {
    width: 100%;
    padding: 0 8%;
    margin-bottom: 59px;
  }
}

#about-us .section-content-box.row-2 .right .body-text {
  margin-bottom: 35px;
}

@media screen and (max-width: 960px) {
  #about-us .section-content-box.row-2 .right .body-text {
    margin-bottom: 47px;
  }
}

#about-us .section-content-box.row-2 .right .org-logos {
  display: flex;
  margin-bottom: 68px;
}

@media screen and (max-width: 960px) {
  #about-us .section-content-box.row-2 .right .org-logos {
    display: none;
  }
}

#about-us .section-content-box.row-2 .right .org-logos .org-logo {
  margin-right: 18px;
}

#about-us .section-content-box.row-2 .right .org-logos .org-logo:last-child {
  margin-right: 0;
}

#about-us .section-content-box.row-2 .right .org-logos .org-logo img {
  width: 100%;
}

#about-us .section-content-box.row-2 .right .signature {
  width: 46%;
  border-top: 1px solid #000;
  padding-top: 10px;
  text-align: right;
  margin: 0 0 0 auto;
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _points.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
#points {
  padding: 100px 0 130px 0;
  margin-bottom: 109px;
  background: url("img/points-bg.png") 0 0/auto 100% no-repeat;
}

@media screen and (max-width: 960px) {
  #points {
    padding: 52px 14% 87px;
  }
}

@media screen and (max-width: 600px) {
  #points {
    background: url("img/points-bg-mobile.png") 0 0/auto 100% no-repeat;
  }
}

#points .section-title {
  margin-bottom: 121px;
}

@media screen and (max-width: 960px) {
  #points .section-title {
    margin-bottom: 99px;
  }
}

#points .button-with-border-bottom {
  width: 66%;
}

#points .swiper-container {
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

#points .section-content-box {
  display: flex;
  flex-direction: row;
  line-height: 1.81;
}

#points .section-content-box .box-title {
  line-height: 1.6;
  margin: 0 0 40px 0;
}

@media screen and (max-width: 960px) {
  #points .section-content-box .box-title {
    line-height: 2.4rem;
    margin: 0 0 22px 0;
  }
}

#points .section-content-box .body-text {
  margin-bottom: 45px;
}

@media screen and (max-width: 960px) {
  #points .section-content-box .body-text {
    margin-bottom: 36px;
  }
}

#points .section-content-box.row-1 {
  margin-bottom: 240px;
}

@media screen and (max-width: 960px) {
  #points .section-content-box.row-1 {
    flex-direction: column;
    margin-bottom: 113px;
  }
}

#points .section-content-box.row-1 .left {
  width: 52%;
  position: relative;
}

@media screen and (max-width: 960px) {
  #points .section-content-box.row-1 .left {
    width: 100%;
    margin-bottom: 28px;
  }
}

#points .section-content-box.row-1 .left .swiper-container {
  width: 100%;
}

#points .section-content-box.row-1 .left .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
}

#points .section-content-box.row-1 .right {
  width: 48%;
  padding: 3% 4%;
}

@media screen and (max-width: 960px) {
  #points .section-content-box.row-1 .right {
    width: 100%;
    padding: 0;
  }
}

#points .section-content-box.row-2 {
  margin-bottom: 240px;
}

@media screen and (max-width: 960px) {
  #points .section-content-box.row-2 {
    flex-direction: column-reverse;
    margin-bottom: 113px;
  }
}

#points .section-content-box.row-2 .left {
  width: 45%;
  padding: 5% 6% 5% 2%;
}

@media screen and (max-width: 960px) {
  #points .section-content-box.row-2 .left {
    width: 100%;
    padding: 0;
  }
}

#points .section-content-box.row-2 .right {
  width: 55%;
  position: relative;
}

@media screen and (max-width: 960px) {
  #points .section-content-box.row-2 .right {
    width: 100%;
    margin-bottom: 28px;
  }
}

#points .section-content-box.row-2 .right .swiper-container {
  width: 100%;
}

#points .section-content-box.row-2 .right .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
}

@media screen and (max-width: 960px) {
  #points .section-content-box.row-3 {
    flex-direction: column;
  }
}

#points .section-content-box.row-3 .left {
  width: 52%;
  position: relative;
}

@media screen and (max-width: 960px) {
  #points .section-content-box.row-3 .left {
    width: 100%;
    margin-bottom: 28px;
  }
}

#points .section-content-box.row-3 .left .swiper-container {
  width: 100%;
}

#points .section-content-box.row-3 .left .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
}

#points .section-content-box.row-3 .right {
  width: 48%;
  padding: 5% 4%;
}

@media screen and (max-width: 960px) {
  #points .section-content-box.row-3 .right {
    width: 100%;
    padding: 0;
  }
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _online-order.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
#online-order {
  background: url("img/online-bg.jpg") no-repeat center;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 6% 9%;
  width: 84%;
  margin: 0 auto 118px;
}

@media screen and (max-width: 960px) {
  #online-order {
    width: 100%;
    margin-bottom: 61px;
    padding: 69px 8% 75px;
    background: url("img/online-bg-mobile.jpg") no-repeat cover;
  }
}

#online-order .section-title {
  margin-bottom: 69px;
}

@media screen and (max-width: 960px) {
  #online-order .section-title {
    margin-bottom: 66px;
  }
}

#online-order .online-intro {
  line-height: 2;
  margin-bottom: 82px;
  display: inline-block;
  text-align: left;
}

@media screen and (max-width: 960px) {
  #online-order .online-intro {
    margin-bottom: 70px;
  }
}

#online-order .online-buttons .base-button {
  margin-right: 56px;
}

@media screen and (max-width: 960px) {
  #online-order .online-buttons .base-button {
    margin-right: 0;
    margin-bottom: 21px;
  }
}

#online-order .online-buttons .base-button:last-child {
  margin-right: 0;
}

@media screen and (max-width: 960px) {
  #online-order .online-buttons .base-button:last-child {
    margin-bottom: 0;
  }
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _menu.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
#menu {
  background: url("img/menu-bg.png") 0 0/100% 100% no-repeat;
  text-align: center;
  padding: 74px 14% 140px;
}

@media screen and (max-width: 960px) {
  #menu {
    padding: 36px 8% 61px;
  }
}

@media screen and (max-width: 600px) {
  #menu {
    background: url("img/menu-bg-mobile.png") right top/86% 100% no-repeat;
  }
}

#menu .menu-intro {
  margin: 65px 0 50px;
  line-height: 1.63;
}

#menu .menu-buttons {
  margin-bottom: 40px;
}

#menu .menu-buttons .button {
  margin-right: 20px;
}

@media screen and (max-width: 960px) {
  #menu .menu-buttons .button {
    margin-right: 0;
    margin-bottom: 21px;
  }
}

#menu .menu-buttons .button:last-child {
  margin-right: 0;
}

@media screen and (max-width: 960px) {
  #menu .menu-buttons .button:last-child {
    margin-bottom: 0;
  }
}

#menu .menu-more-info a {
  color: #222;
}

#menu .menu-more-info a:hover, #menu .menu-more-info a:active, #menu .menu-more-info a:focus {
  color: #555555;
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _information.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
#information {
  padding: 118px 20% 0;
}

@media screen and (max-width: 960px) {
  #information {
    padding: 51px 8% 24px;
  }
}

#information .section-title {
  margin-bottom: 72px;
}

#information .info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#information .info-wrapper .safety-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 27px;
  margin-bottom: 83px;
  line-height: 22px;
  border: 1px solid #00643d;
  font-size: 1.2rem;
}

@media screen and (max-width: 960px) {
  #information .info-wrapper .safety-text {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
}

#information .info-wrapper .safety-text .safety-intro {
  text-align: center;
}

#information .info-wrapper .safety-text .measures {
  text-align: center;
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 13px;
}

#information .info-wrapper .safety-text .safety-points {
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1.75;
}

@media screen and (max-width: 960px) {
  #information .info-wrapper .safety-text .safety-points {
    font-size: 0.7rem;
  }
}

#information .info-wrapper #map {
  width: 72%;
  margin-bottom: 20px;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  #information .info-wrapper #map {
    width: 77%;
  }
}

#information .info-wrapper #map img {
  width: 100%;
}

#information .info-wrapper .contact-text {
  margin: 0 0 21px 0;
  text-align: center;
}

@media screen and (max-width: 960px) {
  #information .info-wrapper .contact-text {
    font-size: 1rem;
  }
}

#information .info-wrapper .contact-text a {
  color: #222;
}

#information .info-wrapper .contact-text a:hover, #information .info-wrapper .contact-text a:active, #information .info-wrapper .contact-text a:focus {
  color: #555555;
}

@media screen and (max-width: 960px) {
  #information .info-wrapper .access-text {
    font-size: 1rem;
  }
}

/*
======================================================================
Project Name    : Nihonbashi Philly
File Name       : _fade-in.scss
Encoding        : UTF-8

Copyright © 2021 Kenta Kodashima. All rights reserved.

This source code or any portion there of must not be
reproduced or used in any manner whatsoever.
======================================================================
*/
@-webkit-keyframes slideInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 60%, 0);
    transform: translate3d(0, 60%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes slideInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 60%, 0);
    transform: translate3d(0, 60%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 60%, 0);
    transform: translate3d(0, 60%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fade-in {
  opacity: 0;
}

.fade-in.active {
  -webkit-animation: slideInBottom 1.2s ease 0.15s;
  -moz-animation: slideInBottom 1.2s ease 0.15s;
  animation: slideInBottom 1.2s ease 0.15s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media screen and (max-width: 600px) {
  .fade-in.active {
    -webkit-animation: slideInBottom 0.85s ease 0.15s;
    -moz-animation: slideInBottom 0.85s ease 0.15s;
    animation: slideInBottom 0.85s ease 0.15s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
  }
}
