html {
  font-size: 100%;
}

body {
  color: #050507;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}

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

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

li {
  list-style: none;
}

.wrapper {
  max-width: 800px;
  padding: 0 30px;
  margin: 0 auto;
}

.section-title {
  border-bottom: solid 1px #fff;
  display: inline-block;
  font-size: 3.75rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 45px;
}

.fadein {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadein.show {
  transform: translate(0, 0);
  opacity: 1;
}

#header .logo {
  position: fixed;
  top: 28px;
  left: 30px;
  z-index: 40;
  display: none;
}
#header .logo a {
  display: inline-block;
  font-size: 1.225rem;
  margin-left: 5px;
}
#header .logo a:nth-child(1) {
  margin-left: 0;
}
#header .logo .SeeLogo {
  display: flex;
  flex-direction: column;
}
#header .logo .SeeLogo .sub-logo {
  font-size: 1.225rem;
  padding-top: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#header .logo .SeeLogo:hover .sub-logo {
  opacity: 1;
}
#header .logo #cart-icon {
  position: fixed;
  top: 28px;
  right: 75px;
  z-index: 40;
  display: block;
}
#header .logo #cart-icon.active {
  color: goldenrod;
}
#header #navi {
  width: 100%;
  background-color: #fff;
  color: #050507;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  transform: translateY(-100%);
  transition: 0.6s;
  z-index: 30;
}
#header #navi ul {
  width: 100%;
  background-color: #050507;
  padding: 80px 0 30px 0;
}
#header #navi ul li {
  padding: 10px 0;
}
#header #navi ul li a {
  display: block;
}
#header #navi.active {
  transform: translateY(0%);
}
#header .hamburger {
  width: 42px;
  height: 42px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 25px;
  z-index: 40;
  display: none;
}
#header .hamburger span {
  width: 30px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 6px;
  transition: 0.5s ease-in-out;
}
#header .hamburger span:nth-child(1) {
  top: 11px;
}
#header .hamburger span:nth-child(2) {
  top: 21px;
}
#header .hamburger span:nth-child(3) {
  top: 31px;
}
#header .hamburger.active span:nth-child(1) {
  top: 21px;
  left: 6px;
  transform: rotate(-45deg);
}
#header .hamburger.active span:nth-child(2), #header .hamburger.active span:nth-child(3) {
  top: 21px;
  transform: rotate(45deg);
}

.container {
  background: #050507;
  color: #fff;
  text-align: center;
}
.container #mainvisual {
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}
.container #mainvisual img {
  width: 33.3333333333%;
  height: 100vh;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .site-title {
  font-size: 6.25rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin: 100px 0;
}
.container #pickup {
  margin-bottom: 30px;
}
.container #pickup h2 {
  display: inline-block;
}
.container #pickup .slick-area {
  font-size: 0;
}
.container #pickup img {
  width: 100%;
}
.container #information {
  margin-bottom: 140px;
}
.container #information .info-data-en {
  display: block;
  font-size: 1.5rem;
}
.container #information .info-time-en {
  display: block;
  font-size: 1.125rem;
}
.container #information .info-place {
  font-size: 2.5rem;
  font-weight: 400;
  margin: 20px 0;
}
.container #information .info-date-ja {
  font-size: 1.125rem;
}
.container #side-btn {
  border: solid 1px #fff;
  position: fixed;
  right: -144px;
  bottom: 200px;
  transition: 0.6s;
  transform: rotate(-90deg) translateY(60px);
}
.container #side-btn a {
  width: 165px;
  font-size: 0.875rem;
  display: inline-block;
  letter-spacing: 0.1rem;
  padding: 15px 0;
  transition: 0.3s;
}
.container #side-btn a:last-of-type {
  border-left: solid 1px #fff;
}
.container #gallery {
  margin-bottom: 480px;
}
.container #gallery .list li {
  margin-bottom: 60px;
  display: flex;
}
.container #gallery .list li .itemInfo {
  width: 48%;
}
.container #gallery .list li .itemInfo .itemTitle {
  margin-bottom: 30px;
  border-top: #7d7d7d solid 1px;
  border-bottom: #7d7d7d solid 1px;
  font-weight: normal;
  padding-left: 2%;
  text-align: left;
}
.container #gallery .list li .itemInfo .itemName {
  text-align: center;
  margin-bottom: 30px;
}
.container #gallery .list li .itemInfo p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}
.container #gallery .list li .itemInfo .see-btn {
  width: 100%;
  background-color: #477b71;
  color: #fff;
  display: block;
  line-height: 1;
  padding: 18px 0;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
  border-bottom: 4px solid #7d7d7d;
  border-right: 4px solid #7d7d7d;
}
.container #gallery .list li .itemInfo .see-btn:hover {
  background-color: #1d629a;
  transform: translateY(4px);
  transform: translateX(4px);
  border: none;
}
.container #gallery .list li:nth-child(odd) {
  flex-direction: row;
}
.container #gallery .list li:nth-child(odd) img {
  margin-right: 2%;
}
.container #gallery .list li:nth-child(odd) .itemInfo {
  margin-left: 2%;
}
.container #gallery .list li:nth-child(even) {
  flex-direction: row-reverse;
}
.container #gallery .list li:nth-child(even) .itemInfo {
  margin-right: 2%;
}
.container #gallery .list li:nth-child(even) img {
  margin-left: 2%;
}
.container #gallery .list li img {
  width: 48%;
}
.container #access {
  margin-bottom: 480px;
  position: relative;
  z-index: 20;
}
.container #access .place {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.container #access .address {
  margin-bottom: 20px;
}
.container #access .contact {
  margin-bottom: 30px;
}
.container #access .btn {
  border: solid 1px #fff;
  color: #fff;
  display: inline-block;
  padding: 15px 82px;
  transition: 0.3s;
}
.container #access .btn:hover {
  opacity: 0.7;
}
.container #contact {
  margin-bottom: 200px;
  position: relative;
  z-index: 20;
}
.container #contact .btn {
  width: 400px;
  border: solid 1px #7d7d7d;
  color: #fff;
  padding: 30px 0;
  margin: 0 auto 20px auto;
  display: block;
  position: relative;
  transition: 0.3s;
}
.container #contact .btn::before, .container #contact .btn::after {
  content: "";
  position: absolute;
  right: -40px;
  height: 1px;
  background-color: #fff;
  transition: 0.3s;
}
.container #contact .btn::before {
  width: 120px;
  top: 48px;
}
.container #contact .btn::after {
  width: 15px;
  top: 45px;
  transform: rotate(25deg);
}
.container #contact .btn:hover {
  opacity: 0.7;
}
.container #contact .btn:hover::before, .container #contact .btn:hover::after {
  right: -50px;
}
.container .bg {
  background: url(../img/bg.jpeg) center center repeat !important;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 10;
}
.container #footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: solid 1px #fff;
  font-size: 0.75rem;
  padding: 80px 30px;
  text-align: left;
}
.container #footer p {
  line-height: 1.6;
}
.container #footer .sns {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.container #footer .sns li {
  margin-right: 15px;
}
.container #footer .copyright {
  display: flex;
  align-items: center;
}
.container #footer .copyright li:last-child {
  margin-left: 30px;
}
.container #ToRecommend {
  text-align: center;
  padding: 0 5%;
  max-width: 100%;
}
.container #ToRecommend #side-btn {
  border: solid 1px #fff;
  position: fixed;
  right: -144px;
  bottom: 200px;
  transition: 0.6s;
  transform: rotate(-90deg) translateY(60px);
}
.container #ToRecommend #side-btn a {
  width: 165px;
  font-size: 0.875rem;
  display: inline-block;
  letter-spacing: 0.1rem;
  padding: 15px 0;
  transition: 0.3s;
}
.container #ToRecommend #side-btn a:last-of-type {
  border-left: solid 1px #fff;
}
.container #ToRecommend .btn {
  width: 300px;
  border: solid 1px #7d7d7d;
  color: #fff;
  padding: 30px 0;
  margin: 0 auto 20px auto;
  display: block;
  position: relative;
  transition: 0.3s;
}
.container #ToRecommend .btn::before, .container #ToRecommend .btn::after {
  content: "";
  position: absolute;
  right: -40px;
  height: 1px;
  background-color: #fff;
  transition: 0.3s;
}
.container #ToRecommend .btn::before {
  width: 120px;
  top: 48px;
}
.container #ToRecommend .btn::after {
  width: 15px;
  top: 45px;
  transform: rotate(25deg);
}
.container #ToRecommend .btn:hover {
  opacity: 0.7;
}
.container #ToRecommend .btn:hover::before, .container #ToRecommend .btn:hover::after {
  right: -50px;
}
.container #ToRecommend .choice {
  padding-bottom: 100vh;
}
.container #ToRecommend .choice p {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin: 80px 0;
}
.container #ToRecommend .choice p:nth-child(2) {
  margin-top: 20vh;
}
.container #ToRecommend .choice:nth-child(1) {
  padding-top: 23vh;
}
.container #ToRecommend .choice:nth-child(2) {
  padding-top: 5%;
}
.container #ToRecommend .choice .choiceWrapper {
  display: flex;
  justify-content: center;
}
.container #ToRecommend .choice .flexChoice {
  margin: 0 7.1%;
  display: flex;
  flex-direction: column;
}
.container #ToRecommend .choice .flexChoice img {
  max-width: 300px;
}
.container #ToRecommend .choice:nth-child(3) {
  padding-top: 5%;
  padding-bottom: 15vh;
}
.container #ToRecommend .choice:nth-child(3) .flexChoice {
  margin: 0;
  flex-direction: row;
  flex-wrap: wrap;
}
.container #ToRecommend .choice:nth-child(3) .flexChoice .btn {
  width: 30vw;
}
.container #ToRecommend .choice:nth-child(3) .flexChoice .btn:nth-of-type(odd) {
  margin-right: 5%;
}
.container #ToRecommend .choice:nth-child(3) .flexChoice .btn:nth-of-type(even) {
  margin-left: 5%;
}

@media screen and (max-width: 900px) {
  #header .logo > a:nth-child(n+2) {
    display: flex;
    margin-left: 0;
  }
  #header .logo > a:nth-child(n+2) {
    display: flex;
    margin-left: 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .container .site-title {
    font-size: 3rem;
    margin: 50px 0;
  }
  .container #ToRecommend {
    margin-bottom: 50vh;
  }
  .container #ToRecommend .choice {
    padding-bottom: 0;
  }
  .container #ToRecommend .choice .choiceWrapper {
    flex-direction: column;
  }
  .container #ToRecommend .choice .choiceWrapper div:nth-child(n+2) {
    margin-top: 100px;
  }
  .container #ToRecommend .choice .btn {
    width: 100%;
  }
  .container #ToRecommend .choice .btn::before, .container #ToRecommend .choice .btn::after {
    content: none;
  }
  .container #information {
    margin-bottom: 80px;
  }
  .container #information .info-data-en,
  .container #information .info-time-en,
  .container #information .info-date-ja {
    font-size: 1rem;
  }
  .container #information .info-place {
    font-size: 2rem;
  }
  .container #gallery {
    margin-bottom: 280px;
  }
  .container #gallery .list li {
    justify-content: center;
    margin-bottom: 50px;
  }
  .container #gallery .list li:nth-child(n) {
    flex-direction: column;
  }
  .container #gallery .list li:nth-child(n) img,
  .container #gallery .list li:nth-child(n) .itemInfo {
    width: 80%;
    margin: 0 10%;
  }
  .container #gallery .list li:nth-child(n) img {
    margin-bottom: 30px;
  }
  .container #access {
    margin-bottom: 280px;
  }
  .container #contact .btn {
    width: 100%;
  }
  .container #contact .btn::before, .container #contact .btn::after {
    content: none;
  }
  .container #footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 30px;
  }
  .container #footer .sns {
    margin-bottom: 30px;
  }
}
#shoppingPage {
  padding-top: 100px;
}
#shoppingPage #gallery {
  padding-top: 50px;
  margin-bottom: 200px;
}
#shoppingPage #gallery .subtitle {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 100px;
  border-bottom: solid 1px #fff;
  display: inline-block;
  font-weight: 300;
  letter-spacing: 0.03em;
}
#shoppingPage #gallery .list li:nth-child(odd) {
  text-align: right;
}
#shoppingPage #gallery .list li:nth-child(even) {
  text-align: left;
}
#shoppingPage #gallery .btn {
  width: 400px;
  border: solid 1px #7d7d7d;
  color: #fff;
  padding: 30px 0;
  margin: 0 auto 20px auto;
  display: block;
  position: relative;
  transition: 0.3s;
}
#shoppingPage #gallery .btn::before, #shoppingPage #gallery .btn::after {
  content: "";
  position: absolute;
  right: -40px;
  height: 1px;
  background-color: #fff;
  transition: 0.3s;
}
#shoppingPage #gallery .btn::before {
  width: 120px;
  top: 48px;
}
#shoppingPage #gallery .btn::after {
  width: 15px;
  top: 45px;
  transform: rotate(25deg);
}
#shoppingPage #gallery .btn:hover {
  opacity: 0.7;
}
#shoppingPage #gallery .btn:hover::before, #shoppingPage #gallery .btn:hover::after {
  right: -50px;
}
#shoppingPage #gallery .listFlowers {
  margin-top: 250px;
}
#shoppingPage #gallery .listFlowers:first-child {
  margin-top: 0;
}

@media screen and (max-width: 900px) {
  #header .logo > a:nth-child(n+2) {
    display: flex;
    margin-left: 0;
  }
  #shoppingPage #gallery .btn {
    width: 100%;
  }
  #shoppingPage #gallery .btn::before, #shoppingPage #gallery .btn::after {
    content: none;
  }
}/*# sourceMappingURL=main.css.map */