@charset "UTF-8";
/*-----------------------------------
共通
-----------------------------------*/
.for_pc {
  display: none;
}
@media screen and (min-width: 901px) {
  .for_pc {
    display: block;
  }
}

.for_tablet {
  display: none;
}
@media screen and (max-width: 900px) and (min-width: 751px) {
  .for_tablet {
    display: block;
  }
}

.for_sp {
  display: block;
}
@media screen and (min-width: 901px) {
  .for_sp {
    display: none;
  }
}

.wrap {
  position: relative;
  overflow: hidden;
  margin: 60px 0 0 0;
}
@media screen and (min-width: 861px) {
  .wrap {
    margin: 105px 0 0 0;
  }
}
@media screen and (min-width: 1201px) {
  .wrap {
    margin: 122px 0 0 0;
  }
}

body.overflow {
  overflow: hidden;
}

body, p, a, button, input {
  font-family: "TsukuARdGothic-Regular", "筑紫A丸ゴシック", "Hiragino Maru Gothic Pro", "ヒラギノ丸ゴ Pro";
}

body {
  position: relative;
  font-size: 20px;
  line-height: 40px;
  color: #29294C;
}
@media screen and (max-width: 900px) and (min-width: 751px) {
  body {
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 750px) {
  body {
    font-size: 14px;
    line-height: 26px;
  }
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

a {
  text-decoration: none !important;
}

p {
  margin: 0;
}

ul {
  list-style: none;
}

h1 {
  font-weight: bold;
  letter-spacing: 0.15em;
}