@charset "UTF-8";
/* 共通 */
#wrapper {
  width: 100%;
  min-width: 1000px;
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
/* header */
#header {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  text-align: center;
}
#header header #logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  width: 180px;
}
#header header h2 {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translate(-50%, 3%);
  font-size: 1.2em;
}
#header header h2 .mincho {
  margin: 0.2em;
  font-size: 0.7em;
}
#header header #scroll {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translate(-50%, -4%);
  width: 90px;
}
/* contents */
#contents {
  width: 100%;
  padding: 5em 0;
}
/* contents shop */
#contents #shop {
  width: 500px;
  margin: 0 auto;
}
#contents #shop section {
  margin-bottom: 7em;
  text-align: left;
}
#contents #shop section:last-child {
  margin-bottom: 0;
}
#contents #shop section h2 {
  font-size: 2.8em;
  line-height: 1.2;
  margin-bottom: 0.3em;
}
#contents #shop section h2 .mincho {
  font-size: 0.4em;
}
#contents #shop section p {
  margin-bottom: 1.5em;
}
#contents #shop section #topic h3 {
  font-size: 1.6em;
  text-decoration: underline;
}
#contents #shop section #topic h3 a:visited {
  text-decoration: none;
  color: #FFFFFF !important;
}
#contents #shop section .button {
  margin-top: 1em;
}
#contents #shop section .button2 a:visited {
  text-decoration: none;
  color: #FFFFFF !important;
}
/* contents photo */
#contents #photo {
  width: 100%;
  margin: 12em auto;
  position: relative;
}
/* contents vr */
#contents #vr {
  width: 100%;
  position: relative;
}
#contents #vr h2 {
  position: absolute;
  top: 6%;
  font-size: 2.5em;
  z-index: 999;
}
#contents #vr #vr_button {
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  z-index: 998;
}
#contents #vr #vr_image {
  width: 100%;
}
#contents #vr #vr_image #pc {
  display: block;
}
#contents #vr #vr_image #sp {
  display: none;
}
/* contents contact */
#contents #contact {
  width: 100%;
  margin: 10em auto 10em;
}
#contents #contact section {
  text-align: center;
  margin-bottom: 5em;
}
#contents #contact section h3 {
  width: 400px;
  margin: 0 auto;
}

#contents #contact section p {
  margin-top: 1em;
}

#contents #contact ul{
width:900px;
margin: 0 auto;
text-align: left;
}

#contents #contact ul li{
margin-bottom: 1.5em;
 display: flex;
  justify-content: space-between;
}

#contents #contact ul li h3 {
width:35%;
}

#contents #contact ul li h3 span {
  padding-left: 3em;
  display: inline-block;
}
#contents #contact ul li .name {
width:40%;
}

#contents #contact ul li .tel {
width:20%;
}

/* footer */
#footer {
  width: 100%;
  padding: 4em 0 3em;
}
#footer #logo_footer {
  width: 80px;
  margin: 0 auto;
}
#footer p {
  font-size: 0.4em;
  margin-top: 5em;
}
/* flash */
.flash {
  animation: flash 1s linear infinite;
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}