@charset "utf-8";

/* ▼リセット
------------------------------------------------------------------------ */
  html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  list-style: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input, select {
  vertical-align: middle;
}
 button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  appearance: none;
}
button:focus {
  outline: 0;
}
:focus:not(:focus-visible) {
      outline: 0;
      /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

/* 
------------------------------------------------------------------------ */
html {
  font-size: 62.5%;
  width: 100%;
  height:100%;
}
/* 
------------------------------------------------------------------------ */

body {
  width: 100%;
  height:100%;
background-color:#000;
  font-size: 1.6em;
  line-height: 1.6;
  user-select: none;
-webkit-user-select: none;
 -ms-user-select: none;
 -moz-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  -webkit-font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}
a {
  color: #333;
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
a:link {
  text-decoration: none;
}
a:visited {
  color: inherit;
  text-decoration: none;
}
a:active, a:hover, a:focus, a:visited {
  outline: 0
}
a:hover {
  text-decoration: none;
}

img {
  border-style: none;
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  width:100%;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body::-webkit-scrollbar {
  width: 8px;
  height: auto;
}
body::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 1.0);
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.0);
  border-left: solid 1px #ececec;
}
body::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #fff;
}

/* div */
div::-webkit-scrollbar { 
  width: 0px;
  height:0px;
}
div::-webkit-scrollbar-track { 
  background-color: rgba(255, 255, 255, 1.0);
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.0); 
  border-left: solid 0px #ececec;
}
div::-webkit-scrollbar-thumb {
  background-color: #ddd;
  width: 0px;
  height: 0;
  border-radius: 10px;
  box-shadow:inset 0 0 0 0px #fff;
}

/*フォ－ム
------------------------------------------ */
input[type="text"],input[type="tel"],input[type="password"], input[type="submit"] ,input[type=checkbox], input[type="button"],textarea, select {
  width: 100%;
  padding: 5px;
  font-size: 1.4rem;
  font-size: 16px;
  line-height: 1.4;
  outline: 0;
  border:none;
  font-family: inherit;
  -webkit-appearance: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFFFFF));
  background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
  background-color: #fff;
  color: #111;
  font-size: 16px;
/*  overflow: hidden;*/
}
textarea::-webkit-scrollbar { 
  width: 8px;
  height: auto;
}
textarea::-webkit-scrollbar-track { 
  background-color: rgba(255, 255, 255, 1.0);
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.0);
  border-left: solid 1px #ececec;
}
textarea::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #fff;
}
select {
  color: #111;
  font-size: 16px;
}

/*svg インライン クラス付与
------------------------*/
.svg-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display:block;
  object-fit: contain;
}



/* ページカバー
---------------------------------------------- */
.index-page-cover{
  position: fixed;
  overflow: hidden;
  top: 0;
  left:0;
  background-color:#fff;
  width: 100%;
  height: 100vh;
  transform: translate3d(0,0,0);
  z-index: 99998;
  display:block;
}
/* 
---------------------------------------------- */
.index-page-cover-inner {
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  visibility:hidden;
}

/*ページオープン　モーダルオープン　共通ローダー
------------------------------------------------*/
.loading-box {
  position: absolute;
  display:block;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(.6, .6);
  width: 74px;
  height: 74px;
  background: none;
  z-index: 99999;
  visibility:hidden;
}
/*
------------------------------------------------*/
.loader-flower, 
.loader-flower-modal{
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateZ(0) scale(0.74);
  backface-visibility: hidden;
  transform-origin: 0 0;
  visibility:hidden;
}
.loader-flower.loading,
.loader-flower-modal.loading {
 visibility:visible;
}
.loader-flower div,
.loader-flower-modal div { 
  box-sizing: content-box; 
}
.loader-flower.loading div,
.loader-flower-modal.loading div {
  left: 47px;
  top: 24px;
  position: absolute;
  background: #535353;
  width: 6px;
  height: 12px;
  border-radius: 3px / 6px;
  transform-origin: 3px 26px;
  animation: loader-flower linear 1s infinite;
}
.loader-flower div:nth-child(1),
.loader-flower-modal div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -0.9166666666666666s;
  background: #535353;
}
.loader-flower div:nth-child(2),
.loader-flower-modal div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -0.8333333333333334s;
  background: #535353;
}
.loader-flower div:nth-child(3),
.loader-flower-modal div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.75s;
  background: #535353;
}
.loader-flower div:nth-child(4),
.loader-flower-modal div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.6666666666666666s;
  background: #535353;
}
.loader-flower div:nth-child(5),
.loader-flower-modal div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.5833333333333334s;
  background: #535353;
}
.loader-flower div:nth-child(6),
.loader-flower-modal div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.5s;
  background: #535353;
}
.loader-flower div:nth-child(7),
.loader-flower-modal div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.4166666666666667s;
  background: #535353;
}
.loader-flower div:nth-child(8),
.loader-flower-modal div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.3333333333333333s;
  background: #535353;
}
.loader-flower div:nth-child(9),
.loader-flower-modal div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.25s;
  background: #535353;
}
.loader-flower div:nth-child(10),
.loader-flower-modal div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.16666666666666666s;
  background: #535353;
}
.loader-flower div:nth-child(11),
.loader-flower-modal div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.08333333333333333s;
  background: #535353;
}
.loader-flower div:nth-child(12),
.loader-flower-modal div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
  background: #535353;
}
@keyframes loader-flower {
  0% {
   opacity: 1 
  }
  100%
  { 
    opacity: 0
  }
}

/*▼モーダルを開いた時スクロールバーを消す
------------------------------------------ */
body.scrollbar-hide::-webkit-scrollbar {
}
body.scrollbar-hide::-webkit-scrollbar-thumb{
  background-color: #fff;
}
/*モーダルに入った時
------------------------------------------ */
body.modalNaka::-webkit-scrollbar {
  width: 0px;
  height: auto;
}
body.modalNaka::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.0);
  border-radius: 0px;
  border-left: solid 0px #ececec;
}
body.modalNaka::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.0);
  border-radius: 0;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.0);
}
/*▲
-------------------------------------------------*/

/*▼モーダル
------------------------------------------------*/
/*背景スクロール連鎖ストップ
---------------------------------------*/
.scroll-stop-box {  
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  height:100vh;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
  z-index: 101;
  transform: translate3d(0,0,0);
  display:none;
  background-color:rgba(34,37,43,.8);
  will-change: transform;
}
@media screen and (min-width: 769px) {
.scroll-stop-box {  
  background-color:rgba(34,37,43,.8);
}
}
.scroll-stop-box::-webkit-scrollbar { 
  width: 0px!important;
  height: 0px!important; 
}
.scroll-stop-box::-webkit-scrollbar-track { 
  background-color: rgba(255, 255, 255, 0) !important;
  border-radius:0!important;
  -webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0.0)!important;
  border-left: solid 0px #ececec !important;
}
.scroll-stop-box::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 0 !important;
  box-shadow:inset 0 0 0 rgba(0,0,0,0.0)!important;
}
/* 
------------------------------------------------*/
.scroll-stop-box-inner {  
  position: relative;
  width: 1px;
  height:calc(100vh + 1px);
}

/* モーダルボックス
-------------------------------------------*/
.modalBox {
  position: fixed;
  overflow:hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
  width:100%;
  min-width: auto;
  height:100%;
  top:0;
  bottom: 0;
  right: 0;
  left:auto;
  background-color:rgba(0,0,0,1);
  transform: translate3d(0,0,0) scale3d(0,1,1); 
  transform-origin: center right;
  transition: transform .6s, opacity .6s;
  opacity:0;
  will-change: transform;
  pointer-events:none;
  display:none;
  z-index: 102;
}

@media screen and (min-width: 821px) {
.modalBox {
  width: 50%;
  min-width: 650px;
}
}


/*▼モーダルの中で開くとき
------------------------------------------------------------*/
@media screen and (min-width: 821px) {
body.modalNaka .modalBox {
  width: 100%;
  min-width: auto;
}
}
/* ▲
----------------------------------------------------------- */

.modalBox.act {
  transform: translate3d(0,0,0) scale3d(1,1,1); 
  opacity:1;
  pointer-events:auto;
}

/*iframe内のスクロールで背景連鎖を止める
---------------------------------------*/
.modalBox-scroll-stop-inner {  
  position: relative;
  width: 1px;
  height:calc(100% + 1px);
  pointer-events:none;
}
/*閉じる
---------------------------------------*/
.close-iframe-modal,
a.close-iframe-modal {
  position: absolute;
  display:block;
  top:10px;
  left:10px;
  width: 46px;
  height:46px;
  cursor: pointer;
  background-color:rgba(255,255,255,.35);
  border-radius:50%;
  cursor: pointer;
  transform: translate3d(0,0,0);
  z-index: 10;
}
.close-iframe-modal::after {
    position: absolute;
    content:"";
    margin:0;
    width: 10px;
    height: 10px;
    top:50%;
    left:50%;
    border-top:3px solid #000;
    border-right:3px solid #000;
    pointer-events: none;
    transform : translate3d(-50%,-50%,0) rotate(-135deg);
}
/*iframe インナー
-------------------------------------------*/

iframe.iframeModal {
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  bottom:0;
  left:0;
  right:0;
  overflow: hidden;
  transform: translate3d(0,0,0);
  opacity:0;
  transition: transform .0s, opacity .8s;
}
iframe.iframeModal.show {
  transform: translate3d(0,0,0);
  opacity:1;
}
/*▲
-------------------------------------------*/






