@charset "utf-8";
/*simple reset*/
* {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
html {
  -webkit-text-size-adjust: 100%;
}
button, input, select, textarea {
  font-family : inherit;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  box-shadow: 0 0 6px rgba(0,0,0,0.2) inset;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0,0,0,0.2) inset;
}
/*layout*/

body {
  background-color: #f5f5f5;
  color: #333;
  font-family: "Noto Sans JP",sans-serif;
}
#logo {
  width: 20vh;
  margin: 12px 20px;
}

.ph-hero {
  display: block;
}

.slick-box {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.slick-item {
  height: 280px;
  overflow: hidden;
}

.slick-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  box-sizing: border-box;
  flex: auto;
  padding-bottom: 5px;
  color: #f39800;
  font-size: 23px;
  text-align: center;
  line-height: 50px;
}
span {
  font-size: 35px;
}
#nomad-logo {
  display: block;
  margin: auto;
  width: 60%;
  padding: 30px 30px 0 30px;
}
p {
      text-align: center;
}
.memo {
    font-size: 18px;
}
figure {
  box-sizing: border-box;
  padding: 30px;
  background: #603c00;
  color: #fff;
  font-size: 1.2rem;
  margin: 3.3rem 0 2rem 0;
}
footer {
  background-color: #fff;
  margin: 1rem 0 1rem 0;
}

@media screen and (max-width: 1200px) {
  .slick-item {
    height: 180px;
  }
}

@media screen and (max-width: 900px) {
  .slick-item {
    height: 140px;
  }
}

@media screen and (min-width: 768px) {
  .ph-hero {
    display: none;
  }

  .slick-box {
    visibility: visible;
    height: auto;
    overflow: visible;
  }

  .slick-item {
  height: 200px;
  overflow: hidden;
}

.slick-item figure {
  padding: 0;
  margin: 0;
  background: none;
}

.slick-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

  #nomad-logo {
    width: 28%;
    padding-top: 10px;
  }

}

