@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img,
svg {
  vertical-align: middle;
}

.circle {
  position: fixed;
  bottom: 40px;
  z-index: 4;
  cursor: pointer;
  display: flex;
  justify-content: center;
  width: 100%;
  transition: bottom .3s ease;
}
.circle.slideup {
  bottom: 120px;
  transition: bottom .3s ease;
}
.Close {
  margin-right: 13px;
}
.Close__Button {
  width: 138px;
  height: 55px;
  background: #888888;
  border: none;
}
.Close__Text {
  font-size: 18px;
  color: #FFFFFF;
}

.Share__Button {
  width: 138px;
  height: 55px;
  background: #6F2E70;
  border: none;
}
.Share__Text {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 24px;
  vertical-align: middle;
}

html {
  height: -webkit-fill-available;
}

body {
  min-height: 100%;
  min-height: -webkit-fill-available;
}

.OnPicture {
  position: fixed;
  height: 100%;
}
.OnPicture__Canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.OnPicture__Images {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#video {
  position: absolute;
  width: 100%;
  min-width: 100%;
  object-fit: cover;
}

#videoOncanvas {
  display: block;
  position: absolute;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
}

#concat {
  display: none;
  width: 100%;
}

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10;
  /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 10px;
  background-color: #fff;
  border-radius: 10px;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.modalContents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.modalContents__ImageArea {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modalContents__Image {
  display: block;
  width: 100%;
  vertical-align: bottom;
}

/* 以下ボタンスタイル */
button {
  padding: 10px;
  background-color: red;
  cursor: pointer;
}

.Operation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.Operation__text {
  width: 100%;
  text-align: center;
  padding: 10px 10px;
}
.Operation__Buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.Vector {
  display: none;
  position: fixed;
  background-color: #f5f5f5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
@media (orientation: landscape) {
  .Vector {
    display: block;
  }
}
.Vector__Notition {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.Vector__Text {
  display: block;
}

/* PhotoFrame Slider */
.footer-popup {
}

.photoframe-menu {
  overflow: hidden;
}

.hamburger-wrapper {
  position: fixed;
  display: flex;
  bottom: 0;
  right: 10px;
  width: 80px;
  height: 40px;
  background: #333;
  align-items: center;
  justify-content: center;
  transition: bottom .2s ease;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 8;
}

.hamburger-wrapper.active {
  bottom: 98px;
  transition: bottom .3s ease;
}

.mobile-menu-overlay {
  position: fixed;
  width: 100vw;
  height: 100px;
  bottom: -100px;
  background: white;
  text-align: center;
  transition: transform .3s ease;
  z-index: 9;
}

.mobile-menu-overlay.visible {
  transform: translate(0, -100px);
  transition: transform .3s ease;
}

.hamburger-menu,
.hamburger-menu:after,
.hamburger-menu:before {
  width: 23px;
  height: 2px;
}

.hamburger-menu {
  position: relative;
  display: block;
  background: #333;
  transition: all 0ms 200ms;
}

.hamburger-menu.animate {
  background: #333;
}

.hamburger-menu:before {
  content: "";
  position: absolute;
  left: -8px;
  background: white;
  transition: left 200ms 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  transform: rotate(-45deg);
}

.hamburger-menu:after {
  content: "";
  position: absolute;
  left: 8px;
  background: white;
  transition: left 200ms 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  transform: rotate(45deg);
}

.hamburger-menu.animate:after {
  left: 0;
  transform: rotate(45deg);
  transition: left 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 200ms 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu.animate:before {
  left: 0;
  transform: rotate(-45deg);
  transition: left 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 200ms 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-wrapper {
  overflow-y: scroll;
  scrollbar-width: none;
  padding: 0;
  height: 100%;
  background: #333;
}

.menu-wrapper::-webkit-scrollbar {
  display: none;
}

.menu-item-wrap {
  padding: 10px 10px;
}
/* PhotoFrame Slider End */

.flexslider {
  border-radius: 0!important;
  border: none !important;
  background: #333!important;
}

.flexslider .slides > li {
  background: white;
}

.flexslider .slides img {
  border: 5px solid rgba(0, 0, 0, .1)!important;
}

.flexslider .slides li.flex-active-slide img {
  border: 5px solid rgba(0, 0, 0, .5)!important;
}