@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: baseline;
  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;
}

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

body {
  width: 100%;
  height:100%;
/* 
  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-family:
    "Noto Sans JP",
    "Hiragino Sans",
    "Yu Gothic",
    "Meiryo",
    sans-serif;

  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
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 1px #ececec;
}
div::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #fff;
}


/*フォ－ム
------------------------------------------ */
input[type="text"],input[type="tel"],input[type="password"], input[type="submit"] ,input[type="button"],textarea, select {
  width: 100%;
  padding: 5px;
  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;
}
/*ie
------------------------------------------ */
select::-ms-expand {
    display: none !important;
}
input::placeholder,textarea::placeholder,select::placeholder {
  color: #ccc;
  font-size: 1.4rem;
  line-height: 1.0;
}

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



/* =============================
    リロードテキスト
============================= */

#reloadNotice {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

#reloadNotice.show {
  opacity: 1;
  pointer-events: auto;
}

.reload-text {
  color: #fff;
  font-size: 18px;
  letter-spacing: .1em;
}


/* =============================
    スマホ横スワイプガード
============================= */

#edgeGuard{
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 100dvh;
  min-height: calc(var(--vh, 1vh) * 100);
  z-index: 99999;
  background: transparent;
  touch-action: none;
  pointer-events:auto;
}

/* モーダル中だけ */
body.scrollbar-hide #edgeGuard{
  width:25px;
}

/* 通常時 */
#edgeGuard{
  width:18px;
}


/* =============================
    共通ダイアログ
============================= */

.custom-dialog-overlay{
  position:fixed;
  top:0;
  left:0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  background-color:rgba(34,37,43,.3);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  will-change: transform,opacity;
  opacity:0;
  visibility:hidden;
  transition:.25s;
}
.custom-dialog-overlay.show{
  opacity:1;
  visibility:visible;
}
.custom-dialog-overlay-inner {  
  position: relative;
  width: 1px;
  height:calc(100vh + 1px);
  height:calc(100dvh + 1px);
  min-height: calc((var(--vh, 1vh) * 100) + 1px);
}
.custom-dialog{
  width:min(90%, 340px);
  background:#fff;
  border-radius:16px;
  overflow:hidden;
}

.custom-dialog-message{
  padding:28px 20px;
  text-align:center;
  line-height:1.8;
  font-size:14px;
}

.custom-dialog-buttons{
  display:flex;
  border-top:1px solid #eee;
}

.dialog-btn{
  flex:1;
  height:54px;
  border:none;
  background:none;
  font-size:14px;
}

.dialog-btn + .dialog-btn{
  border-left:1px solid #eee;
}

.dialog-btn.ok{
  font-weight:bold;
  color:#0066FF;
}


/* =============================
    クリップボードにコーピー
============================= */
.code-box-code{
    position:relative;
    cursor:pointer;
}

.copy-toast{

    position:absolute;
    top:calc(100% + 6px);
    left:50%;

    transform:translate(-50%,-8px) scale(.95);

    white-space:nowrap;

    background:rgba(0,0,0,.85);
    color:#fff;

    font-size:1.2rem;
    line-height:1;

    padding:7px 12px;
    border-radius:999px;

    opacity:0;
    transition:opacity .25s, transform .25s;

    pointer-events:none;
    z-index:100;
}

.copy-toast.show{

    opacity:1;
    transform:translate(-50%,0) scale(1.03);
}

/* =============================
    コピー対象の色をブルー
============================= */
.copy-number.copied{
  color:#fff; 
  background-color:#5C94C9;
  transition:color .2s;
  transition:background-color .2s;
}

