@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
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, u, 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, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

@media not all and (max-width: 900px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
html {
  touch-action: manipulation;
}

body,
button,
input,
select,
textarea,
datalist {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: normal;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 600;
}
@media not all and (max-width: 900px) {
  body,
  button,
  input,
  select,
  textarea,
  datalist {
    font-size: 16px;
  }
}

body {
  background: #fff;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: baseline;
}

* {
  -webkit-tap-highlight-color: transparent;
}

main {
  display: block;
}

a {
  color: currentColor;
  text-decoration: none;
}

svg {
  fill-rule: evenodd;
  width: 100%;
  height: 100%;
}

[data-modal] {
  cursor: pointer;
}

[tabindex] {
  cursor: pointer;
}
[tabindex].focus-visible {
  outline: 1px solid;
}

.js-focus-visible :focus:not(:focus-visible) {
  outline: 0;
}

.visually-hidden {
  font-size: 0;
  opacity: 0;
}

.l-wrapper {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .l-wrapper {
  opacity: 1;
}



.l-main {
  position: relative;
  width: 100%;
  background: url(../img/bg_pc.jpg) top center repeat-x;
  background-size: cover;
}

@media screen and (max-width: 900px) {
  .l-main {
    background: url(../img/bg_sp.jpg) top center repeat-x;
    background-size: cover;
  }
}

@media not all and (max-width: 900px) {
  .l-main {
    min-height: 100vh;
  }
}

.chara {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 70%;
  max-width: 1200px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
}

@media screen and (max-width: 900px) {
  .chara {
    width: 100%;
    top: 45%;
  }
}

.is-load .chara {
  opacity: 1;
}

.txt {
  position: absolute;
  bottom: 1%;
  left: 0%;
  width: 100%;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  -webkit-transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1s, -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1) 1s;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1s, -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1) 1s;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1) 1s, opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1s;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1) 1s, opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1s, -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1) 1s;
}

@media screen and (max-width: 900px) {
  .txt {
    width: 100%;
    bottom: 0;
  }
}

.is-load .txt {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.m-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.is-modalopen .m-modal {
  opacity: 1;
  pointer-events: auto;
}

.m-modal__container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}

@media screen and (min-width: 901px) {
  .m-modal__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.m-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.9;
}

.m-modal__inner {
  position: relative;
  margin: 0 auto;
  pointer-events: auto;
}

@media not all and (max-width: 900px) {
  .m-modal__inner {
    width: 19%;
    min-width: 240px;
  }
}

@media screen and (max-width: 900px) {
  .m-modal__inner {
    width: 57%;
  }
}

.m-modal__close {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 80px;
  height: 80px;
}

@media screen and (max-width: 900px) {
  .m-modal__close {
    width: 60px;
    height: 60px;
  }
}

.m-modal__close::before,
.m-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 2px;
  background: #000;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width: 900px) {
  .m-modal__close::before,
  .m-modal__close::after {
    width: 40px;
    height: 1px;
  }
}

.m-modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.m-modal__img {
  margin-bottom: 5px;
}

.m-modal__dl-link {
  display: block;
  padding: 10px 0;
  background: #000;
  text-align: center;
  color: #fff;
  letter-spacing: 0.08rem;
}

@media screen and (max-width: 900px) {
  .m-modal__dl-link {
    font-size: 16px;
  }
}

@media (hover: hover) {
  .m-modal__dl-link {
    -webkit-transition: background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transition: background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .m-modal__dl-link:hover {
    background: #ff5a50;
  }
}

[data-modal-close] {
  cursor: pointer;
}

/***************************/
.m-modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  max-width: 1000px;
}

.m-modal__inner .digicon:first-child {
  width: 30%;
}

.m-modal__inner .digicon:last-child {
  width: 68%;
  margin-left: 2%;
}

@media screen and (max-width: 900px) {
  .m-modal__inner {
    display: block;
    padding: 50px 0;
  }
  .m-modal__inner .digicon:first-child {
    width: 75%;
    margin: 0 auto;
  }
  .m-modal__inner .digicon:last-child {
    width: 100%;
    margin-left: 0;
    margin-top: 5%;
    padding-bottom: 50px;
  }
}