@charset "UTF-8";
/* PCでのみ表示 */
.pc-only {
  display: block; /* 初期設定: 表示 */
}

/* SPでのみ表示 */
.sp-only {
  display: block; /* 初期設定: 表示 */
}

@media (max-width: 768px) {
  /* SP画面サイズ以下では、PCのみ表示を非表示 */
  .pc-only {
    display: none;
  }

  /* SP画面サイズ以下では、SPのみ表示を表示 */
  .sp-only {
    display: block;
  }
}

@media (min-width: 769px) {
  /* PC画面サイズ以上では、SPのみ表示を非表示 */
  .sp-only {
    display: none;
  }

  /* PC画面サイズ以上では、PCのみ表示を表示 */
  .pc-only {
    display: block;
  }
}
html {
  font-size: 10px;
}

body {
  overflow-wrap: break-word;
}

a,
a:link,
a:visited,
a:active,
a:hover,
a:hover img {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: none;
}

a:hover,
a:hover img,
.img_hover:hover {
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
  opacity: .80;
}

a {
  color: #000;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  width: auto;
  height: auto;
}

div,
p {
  /*word-break: break-all;*/
}

ul,
ol,
li {
  list-style: none;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, nav, picture {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

ul,
ol,
li {
  list-style: none;
}

body,
td,
th,
input,
textarea {
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

* {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

*:before, *:after {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

figure, picture {
  line-height: 0;
}

picture {
  display: block;
}

html, body {
  width: 100%;
  height: 100%;
}

button {
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

button:hover {
  opacity: 0.7;
}

@-webkit-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@-moz-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
         transform: scale(1.1);
  }
}

@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
         transform: scale(1.1);
  }
}

@font-face {
  font-family: "A-OTF Jun Pro 34";
  src: url("../fonts/A-OTFJunPro34.otf");
}

@font-face {
  font-family: RgPNOW-GE;
  src: url("../fonts/tcnowge.ttc");
}

@font-face {
  font-family: "DIN Next Rounded LT Pro";
  src: url("../fonts/DINNextRoundedLTPro-Medium.ttf");
}

@font-face {
  font-family: "DIN Pro";
  src: url("../fonts/dinpro_medium.otf");
}

@font-face {
  font-family: APJapanesefont;
  src: url("../fonts/APJapanesefont.ttf");
}

@font-face {
  font-family: "TBGothicL Std";
  src: url("../fonts/TBGoStdL-Normal.otf");
}

@font-face {
  font-family: "TBGothicB Std C8";
  src: url("../fonts/TBGoStdB-C8.otf");
}

.erabo-toast {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: bold;
    z-index: 10001;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
    min-width: 200px;
}
.erabo-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}