@charset "UTF-8";
/*---
〜SP：519px
SP〜TAB：520px〜649px
TAB〜PC(min)：650px〜1200px
---*/
/*--- ページ共通設定 -----------------*/
* {
  min-height: 0;
  min-width: 0;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body, div,
h1, h2, h3, h4, h5, h6,
dl, dt, dd, ul, ol, li,
form, fieldset, input, textarea,
p, pre, blockquote,
th, td {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

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

fieldset, img {
  border: 0;
}

abbr, acronym {
  border: 0;
}

A:link {
  color: #e05363;
}

A:visited {
  color: #e05363;
  text-decoration: none;
}

A:active {
  color: #e05363;
}

A:hover {
  color: #e05363;
  text-decoration: none;
}

/*----------------*/
/*--- 共通class -------------*/
.wrap {
  box-sizing: border-box;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}
@media screen and (min-width: 650px) {
  .wrap {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1000px) {
  .wrap {
    padding: 0;
  }
}

@media screen and (min-width: 520px) {
  .BoxSp {
    display: none;
  }
}

@media screen and (max-width: 519px) {
  .BoxPc {
    display: none;
  }
}

/*--- マージン一括設定 ---*/
.mt_xsml {
  margin-top: 10px;
}

.mt_sml {
  margin-top: 20px;
}

.mt_mdl {
  margin-top: 30px;
}
@media screen and (min-width: 650px) {
  .mt_mdl {
    margin-top: 40px;
  }
}

.mt_lg {
  margin-top: 50px;
}
@media screen and (min-width: 650px) {
  .mt_lg {
    margin-top: 60px;
  }
}

.mb10, .mb15, .mb_xsml {
  margin-bottom: 10px;
}

.mb20, .mb_sml {
  margin-bottom: 20px;
}

.mb30, .mb_mdl {
  margin-bottom: 30px;
}
@media screen and (min-width: 650px) {
  .mb30, .mb_mdl {
    margin-bottom: 40px;
  }
}

.mb40, .mb_lg {
  margin-bottom: 40px;
}
@media screen and (min-width: 650px) {
  .mb40, .mb_lg {
    margin-bottom: 50px;
  }
}

.mb50, .mb_xlg {
  margin-bottom: 50px;
}
@media screen and (min-width: 650px) {
  .mb50, .mb_xlg {
    margin-bottom: 60px;
  }
}

/*--------------------*/
/*--- テキスト関連 ---*/
.txr {
  text-align: left;
}
@media screen and (min-width: 650px) {
  .txr {
    text-align: right;
  }
}

.txl {
  text-align: left;
}

.txc {
  text-align: center;
}

.fnt-b {
  font-weight: bold;
}

.fnt-red {
  color: #dc0404;
}

.note {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (min-width: 520px) {
  .note {
    font-size: 13px;
    line-height: 1.5;
  }
  .note br {
    display: none;
  }
}

/*--------------------*/
/*--- フェードイン設定 ---*/
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

/*--- トップへ戻るボタン ---*/
.UpBtn {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 2%;
  bottom: 12%;
  background: #3475DE;
  opacity: 0.7;
  border-radius: 50%;
  z-index: 1001;
}
.UpBtn a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
.UpBtn a:before {
  position: absolute;
  top: 5%;
  bottom: 0;
  right: 0;
  left: 0;
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin: auto;
}
@media screen and (min-width: 520px) {
  .UpBtn {
    width: 50px;
    height: 50px;
  }
  .UpBtn a {
    width: 50px;
    height: 50px;
  }
  .UpBtn a:before {
    top: 0%;
    font-size: 30px;
  }
}

.UpBtn:hover {
  opacity: 1;
}