@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Pacifico);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Josefin+Sans);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap);
/* reset */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}

ul {
  list-style: none;
}

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

caption,
th {
  text-align: left;
}

q:before, q:after {
  content: '';
}

object,
embed {
  vertical-align: top;
}

legend {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: .5rem;
  font-size: 100%;
}

img,
abbr,
acronym,
fieldset {
  border: 0;
}

img {
  vertical-align: top;
}

html {
  height: 100%;
  font-size: 62.5%;
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

*::before, *::after {
  box-sizing: inherit;
}

body {
  height: 100%;
  font: 1.4rem/1.9 'Noto Sans JP', Arial, Verdana, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  font-weight: 300;
  -webkit-text-size-adjust: 100%;
  color: #000;
  background: #fff;
}

/* for IE 10, 11 */
@media all and (-ms-high-contrast: none) {
  body {
    font: 1.4rem/1.9 'メイリオ', Meiryo, sans-serif;
  }
}

a {
  color: #0066ff;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
}

a:active, a:focus {
  outline: 0;
}

.active {
  text-decoration: underline;
}

input:active, input:focus {
  outline: 0;
}

/* video */
video {
  width: 100% !important;
  height: 100% !important;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 埋め込み動画用コンテナ */
.movie {
  position: relative;
  overflow: hidden;
  margin: 24px auto;
  padding-bottom: 56.25%;
  width: 100%;
  height: 0;
}

@media screen and (min-width: 641px) {
  .movie {
    margin: 48px auto;
  }
}

.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 1px);
  height: calc(100% + 1px);
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Typography
------------------------------------------------------------*/
h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.8rem;
}

/* ページローダー
------------------------------------------------------------*/
.page-loader-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: ease all .3s;
  transition: ease all .3s;
  pointer-events: none;
}

.page-loader {
  position: relative;
  margin: 0;
  width: .5em;
  height: 2em;
  color: #40c4ff;
  text-indent: -9999em;
  font-size: 11px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  background: #40c4ff;
  -webkit-animation: pageloader 1s infinite ease-in-out;
          animation: pageloader 1s infinite ease-in-out;
  -webkit-animation-delay: -.16s;
          animation-delay: -.16s;
}

.page-loader::before, .page-loader::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: .5em;
  height: 2em;
  background: #40c4ff;
  -webkit-animation: pageloader 1s infinite ease-in-out;
          animation: pageloader 1s infinite ease-in-out;
}

.page-loader::before {
  left: -1em;
  -webkit-animation-delay: -.32s;
          animation-delay: -.32s;
}

.page-loader::after {
  left: 1em;
}

/* ページロード完了後のスタイル */
.is-page-loaded .page-loader-wrap {
  -webkit-animation: loaderScale 1s forwards;
          animation: loaderScale 1s forwards;
}

/* loader animation */
@-webkit-keyframes pageloader {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 2em;
  }
  40% {
    box-shadow: 0 -1em;
    height: 3em;
  }
}
@keyframes pageloader {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 2em;
  }
  40% {
    box-shadow: 0 -1em;
    height: 3em;
  }
}

@-webkit-keyframes loaderScale {
  0% {
    -webkit-clip-path: circle(75%);
            clip-path: circle(75%);
  }
  100% {
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
  }
}

@keyframes loaderScale {
  0% {
    -webkit-clip-path: circle(75%);
            clip-path: circle(75%);
  }
  100% {
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
  }
}

/* Buttons
------------------------------------------------------------*/
/* action button */
.action-buttons .btn {
  margin: 8px 0;
}

.action-buttons .btn:last-child {
  margin-bottom: 0;
}

.action-buttons.has-bg {
  padding: 20px;
  background: #F5F5F5;
  border-radius: 4px;
}

.action-buttons.has-bg .btn:first-child {
  margin-top: 0;
}

.action-buttons.has-bg .btn:last-child {
  margin-bottom: 0;
}

/* Panorama Image
------------------------------------------------------------*/
.panorama-img-wrap {
  position: relative;
  width: 100%;
  text-align: center;
}

.panorama-img-wrap .panorama-img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.panorama-load-button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  display: table;
  padding: 15px 20px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  -webkit-transition: ease .3s;
  transition: ease .3s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 641px) {
  .panorama-load-button {
    padding: 10px;
    width: 200px;
    height: 100px;
    font-size: 2.0rem;
  }
}

.panorama-load-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.load-button-text {
  display: table-cell;
  vertical-align: middle;
}

.popup-container {
  box-sizing: border-box;
}

.popup-container * {
  box-sizing: inherit;
}
