@charset "UTF-8";
/* Scss Document */
/*====================================================================
	index
====================================================================

Part name///
	01 General_style
	02 Common_style
	03 Top_style
*/
/*====================================================================
	01 General_style
====================================================================*/
body {
  font-family: "M PLUS 1","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Meiryo,sans-serif,"宋体",Gulim;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  background: #FFF2EA;
}

body.on {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

body .bg {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #FFF2EA;
  z-index: -1;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

h1, h2, h3, h4, h5, p, a {
  color: #222;
}

a {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:hover {
  opacity: .7;
}

img {
  display: block;
}

section {
  position: relative;
}

/*====================================================================
	02 Common style
====================================================================*/
/*---------------------------------------------------------
	header
*/
header {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 999;
}

@media screen and (max-width: 960px) {
  header {
    width: 100%;
    height: 60px;
  }
}

header .logo {
  position: fixed;
  top: -10px;
  left: 5%;
  display: block;
  width: 150px;
  z-index: 9999;
}

@media screen and (max-width: 960px) {
  header .logo {
    width: 120px;
  }
}

header .menu {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 80px;
  height: 80px;
  background: none;
  cursor: pointer;
  z-index: 9999;
}

@media screen and (max-width: 960px) {
  header .menu {
    width: 60px;
    height: 60px;
  }
}

header .menu .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

header .menu .wrap span {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 2px;
  background: #222;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

header .menu .wrap span:first-child {
  -webkit-transform: translate(-50%, -11px);
  -ms-transform: translate(-50%, -11px);
  -moz-transform: translate(-50%, -11px);
  -o-transform: translate(-50%, -11px);
  transform: translate(-50%, -11px);
}

header .menu .wrap span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

header .menu .wrap p {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: block;
  width: 100%;
  text-align: center;
}

header .menu.on .wrap span {
  top: 40%;
  width: 30px;
  background: #222;
}

header .menu.on .wrap span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

header .menu.on .wrap span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

header .bg_area {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

header .bg_area.view {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.5);
}

header .nav {
  position: fixed;
  top: 0;
  right: -300px;
  display: block;
  width: 300px;
  height: 100vh;
  padding: 80px 0 0;
  background: #fff;
  z-index: 999;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

@media screen and (max-width: 960px) {
  header .nav {
    top: 60px;
    right: -80%;
    width: 80%;
    padding: 40px 0 0;
  }
}

header .nav ul.main_nav {
  position: relative;
  padding: 0 0 20px;
}

header .nav ul.main_nav:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  display: block;
  width: calc(100% - 20px);
  height: 1px;
  background: #eee;
}

header .nav ul.main_nav li {
  display: block;
}

header .nav ul.main_nav li a {
  display: block;
  font-size: 1.33em;
  padding: 20px 20px;
}

header .nav ul.sub_nav {
  border-left: none;
  border-right: none;
  padding: 20px 0;
}

header .nav ul.sub_nav li {
  display: block;
  padding: 10px 20px;
}

header .nav ul.sub_nav li a {
  font-size: 1.13em;
}

header .nav.view {
  right: 0;
}

header .nav .sns {
  text-align: center;
  margin: 20px 0 0;
}

header .nav .sns .wrap {
  letter-spacing: -.4em;
}

header .nav .sns .wrap a {
  display: inline-block;
  margin: 0 10px;
}

header .nav .sns .wrap a img {
  height: 50px;
}

/*---------------------------------------------------------
	footer
*/
footer {
  position: fixed;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  display: block;
  width: 100%;
  height: 80px;
  background: #f2c9b0;
  z-index: 99;
}

@media screen and (max-width: 960px) {
  footer {
    display: block;
    width: 100%;
    height: 80px;
  }
}

@media screen and (max-width: 960px) {
  footer ul {
    letter-spacing: -.4em;
    text-align: center;
  }
}

footer ul li {
  display: inline-block;
  width: 32%;
  letter-spacing: normal;
}

footer ul li a {
  display: block;
  width: 70px;
  text-align: center;
  margin: 10px auto 0;
}

footer ul li a img {
  width: 40px;
  margin: 0 auto;
}

footer ul li a p {
  display: block;
  margin: 5px 0 0;
}

/*====================================================================
	03 Top style
====================================================================*/
/*---------------------------------------------------------
	Top
*/
#top {
  padding: 100px 0 120px;
}

#top .wrap {
  display: block;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

#top .wrap h1 {
  font-size: 2em;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
  margin: 0 auto 20px;
}

#top .wrap .season {
  padding: 0 0 40px;
}

#top .wrap .season h3 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 10px;
}

#top .wrap .season h3:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #222;
  margin: 10px auto;
}

#top .wrap .season p {
  font-size: 1.16em;
}

#top .wrap .prayer_info {
  position: relative;
  display: table;
  margin: 0 auto 40px;
}

#top .wrap .prayer_info .id {
  display: table;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 auto 10px;
  color: #222;
}

#top .wrap .prayer_info h2 {
  display: table;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto;
  color: #222;
}

#top .wrap .prayer_info .rank_icon {
  position: absolute;
  top: -20px;
  right: -50px;
  display: block;
  width: 50px;
}

#top .wrap .possession {
  font-weight: bold;
  margin: 0 0 40px;
}

#top .wrap .possession p {
  color: #222;
  display: block;
  margin: 0 0 10px;
}

#top .wrap .possession .possession_point {
  position: relative;
  font-size: 5rem;
  padding: 0 25px 0 0;
  opacity: 0;
  color: #222;
}

#top .wrap .possession .possession_point span {
  font-size: 5rem;
  font-family: "Acme", sans-serif;
}

#top .wrap .possession .possession_point:before {
  content: "pt";
  position: absolute;
  bottom: 15px;
  right: 0;
  font-size: 2rem;
  font-family: "Acme", sans-serif;
}

#top .wrap .possession .odometer.odometer-auto-theme .odometer-digit .odometer-value,
#top .wrap .possession .odometer.odometer-theme-default .odometer-digit .odometer-value {
  font-size: 5rem;
  font-family: "Acme", sans-serif;
}

#top .wrap .possession .odometer.odometer-auto-theme .odometer-digit,
#top .wrap .possession .odometer.odometer-theme-default .odometer-digit {
  vertical-align: top;
}

#top .wrap .point_history {
  display: block;
  font-size: 1.25em;
  text-decoration: underline;
}

#top .sns {
  padding: 80px 0 40px;
  text-align: center;
}

#top .sns h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 30px;
}

#top .sns ul {
  letter-spacing: -.4em;
}

#top .sns ul li {
  display: inline-block;
  max-width: 25%;
  margin: 0 10px;
}

@media screen and (max-width: 960px) {
  #top .sns ul li {
    margin: 0 2%;
  }
}

#top .sns ul li a img {
  width: 100px;
  max-width: 100%;
}

#top .banner {
  padding: 20px 0 40px;
}

#top .banner h3 {
  font-size: 1.16em;
  text-align: center;
  margin: 0 auto 10px;
}

#top .banner img {
  display: block;
  width: 90%;
  max-width: 260px;
  margin: 0 auto;
}

#top .link_wrap {
  text-align: center;
}

#top .link_wrap a {
  display: block;
  font-size: 1.33em;
  line-height: 2;
  margin: 0 0 5px;
}

/*====================================================================
	04 Chip style
====================================================================*/
/*---------------------------------------------------------
	chip
*/
#chip .chip {
  position: relative;
  display: block;
  width: 90%;
  max-width: 600px;
  margin: 80px auto;
  padding: 40px 0;
  text-align: center;
  background: #fafafa;
}

@media screen and (max-width: 960px) {
  #chip .chip {
    margin: 100px auto;
  }
}

#chip .chip .prf_img img {
  width: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

#chip .chip .wrap {
  display: block;
  width: 90%;
  margin: 0 auto;
}

#chip .chip .wrap .prayer_info {
  margin: 0 0 40px;
}

#chip .chip .wrap .prayer_info .id {
  font-size: 1.5em;
  margin: 0 0 10px;
  color: #222;
}

#chip .chip .wrap .prayer_info h2 {
  font-size: 2em;
  margin: 0;
  color: #222;
}

#chip .chip .wrap .possession {
  font-weight: bold;
}

#chip .chip .wrap .possession p {
  color: #222;
  display: block;
  margin: 0 0 10px;
}

#chip .chip .wrap .possession .possession_chip {
  position: relative;
  font-size: 3rem;
  padding: 0 0 0 20px;
  opacity: 0;
  color: #222;
}

#chip .chip .wrap .possession .possession_chip span {
  font-size: 4rem;
  font-family: 'Allerta Stencil', sans-serif;
}

#chip .chip .wrap .possession .possession_chip:before {
  content: "$";
  position: absolute;
  top: 19px;
  left: 0;
  font-size: 2rem;
  font-family: 'Allerta Stencil', sans-serif;
}

#chip .chip .wrap .possession .odometer.odometer-auto-theme .odometer-digit .odometer-value,
#chip .chip .wrap .possession .odometer.odometer-theme-default .odometer-digit .odometer-value {
  font-size: 3rem;
  font-family: 'Allerta Stencil', sans-serif;
}

/*====================================================================
	05 Point style
====================================================================*/
/*---------------------------------------------------------
	Point
*/
#history {
  position: relative;
  display: block;
  width: 90%;
  max-width: 600px;
  margin: 80px auto;
  padding: 40px 0;
}

#history h2 {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  margin: 0 0 40px;
}

#history .mycred-history-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 80px;
  text-align: center;
}

#history .mycred-history-wrapper tfoot, #history .mycred-history-wrapper .pagination-top {
  display: none;
}

#history .mycred-history-wrapper table {
  width: 100%;
}

#history .mycred-history-wrapper table thead tr th {
  line-height: 60px;
  font-size: 1.16em;
}

#history .mycred-history-wrapper table thead tr th.column-time {
  width: 50%;
}

#history .mycred-history-wrapper table thead tr th.column-creds {
  width: 25%;
}

#history .mycred-history-wrapper table thead tr th.column-entry {
  width: 25%;
}

#history .mycred-history-wrapper table tbody {
  border-top: 1px solid #eaeaea;
}

#history .mycred-history-wrapper table tbody tr {
  border-bottom: 1px solid #eaeaea;
}

#history .mycred-history-wrapper table tbody tr td {
  line-height: 1.5;
  font-size: 1.16em;
  padding: 20px 0;
}

#history .mycred-history-wrapper table tbody tr td.column-time time {
  font-size: 1em;
}

#history .mycred-history-wrapper .pagination-bottom {
  margin: 80px 0 0;
}

#history .mycred-history-wrapper .pagination-bottom .pagination li {
  padding: 0 10px;
}

#history .mycred-history-wrapper .pagination-bottom .pagination li span, #history .mycred-history-wrapper .pagination-bottom .pagination li a {
  font-size: 1.25em;
}

#history .mycred-history-wrapper .pagination-bottom .pagination li a {
  text-decoration: underline;
}

#ranking {
  padding: 100px 0;
}

#ranking h2 {
  text-align: center;
  font-size: 1.5em;
  line-height: 1.5;
  font-weight: bold;
  margin: 30px auto 40px;
}

#ranking ul {
  display: block;
  width: 96%;
  margin: 0 auto;
}

#ranking ul li {
  position: relative;
  display: block;
  margin: 0 0 20px;
  padding: 0 5% 20px;
  letter-spacing: .04em;
  border-bottom: 1px solid #eee;
}

#ranking ul li h3 {
  display: block;
  font-size: 1.33em;
  margin: 0 0 10px;
  font-weight: bold;
}

#ranking ul li h4 {
  display: block;
  font-size: 1.33em;
}

#ranking ul li p {
  position: absolute;
  bottom: 20px;
  right: 5%;
  font-size: 1.33em;
}

/*====================================================================
	06 User style
====================================================================*/
/*---------------------------------------------------------
	ユーザーページ
*/
#my-page {
  display: block;
  width: 90%;
  max-width: 600px;
  margin: 80px auto;
  padding: 40px 0;
}

#my-page .um-profile.um .um-name a {
  color: #222;
}

#my-page .um-header {
  border: none;
  padding: 0;
}

#my-page .um {
  width: 90%;
  margin: 0 auto !important;
}

#my-page .prayer {
  text-align: center;
  margin: 0 auto 40px;
}

#my-page .prayer p {
  font-size: .8em;
  margin: 0 0 10px;
}

#my-page .prayer h2 {
  font-size: 1.5em;
  font-weight: bold;
  color: #222;
}

#my-page .wrap {
  display: block;
  width: 90%;
  margin: 0 auto;
}

#my-page .wrap ul li {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #ddd;
}

#my-page .wrap ul li h3 {
  font-size: 1em;
  margin: 0 0 10px;
  color: #222;
}

#my-page .wrap ul li p {
  font-size: 1.25em;
  color: #222;
}

#account .wrap {
  display: block;
  width: 90%;
  margin: 0 auto;
}

#account .wrap .um-account-meta-img {
  width: 120px;
  margin: 0 auto;
}

#login .wrap, #register .wrap {
  position: relative;
  display: block;
  width: 90%;
  max-width: 600px;
  margin: 80px auto;
  padding: 40px 20px;
  text-align: center;
}

#login .wrap .um-field-block a, #register .wrap .um-field-block a {
  text-decoration: underline;
  font-size: .9em;
  margin: 0 10px 0 0;
}

#login .wrap .banner, #register .wrap .banner {
  padding: 20px 0 40px;
}

#login .wrap .banner h3, #register .wrap .banner h3 {
  font-size: 1.16em;
  text-align: center;
  margin: 0 auto 10px;
}

#login .wrap .banner img, #register .wrap .banner img {
  display: block;
  width: 90%;
  max-width: 260px;
  margin: 0 auto;
}

#register h1 {
  font-size: 1.5em;
}

.um-um_password_id.um {
  width: 90% !important;
  margin: 80px auto;
}

@media screen and (max-width: 960px) {
  .um-um_password_id.um {
    margin: 100px auto;
  }
}

.um-um_account_id {
  width: 90% !important;
  margin: 80px auto;
}

@media screen and (max-width: 960px) {
  .um-um_account_id {
    margin: 100px auto;
  }
}

.um-um_account_id .um-account-meta-img {
  max-width: 50%;
  margin: 0 auto;
}

/*====================================================================
	99 other style
====================================================================*/
/*---------------------------------------------------------
	other
*/
#system {
  padding: 100px 5%;
}

#system h1 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 20px;
  text-align: center;
}

#system h1:after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #222;
  margin: 20px auto;
}

#system .wrap {
  margin: 40px 0 0;
}

#system .wrap h2 {
  font-size: 1.33em;
  font-weight: bold;
  margin: 0 0 30px;
  text-align: center;
}

#system .wrap ul {
  margin: 0 0 60px;
  border-top: 1px solid #aaa;
}

#system .wrap ul li {
  position: relative;
  padding: 20px;
  border-bottom: 1px solid #aaa;
}

#system .wrap ul li h3 {
  font-size: 1.25em;
  line-height: 1.5;
}

#system .wrap ul li p {
  margin: 10px 0 0;
  line-height: 1.5;
  font-size: 1.16em;
}

#system .wrap ul li h4 {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.25em;
}

#system .wrap .text {
  font-size: 1.25em;
}

#privacy-policy {
  display: block;
  width: 90%;
  max-width: 600px;
  margin: 80px auto;
  padding: 40px 5%;
}

#privacy-policy .wrap {
  margin: 40px 0 0;
}

#privacy-policy h1 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 20px;
  text-align: center;
  color: #222;
}

#privacy-policy h1:after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #222;
  margin: 20px auto;
}

#privacy-policy h2, #privacy-policy p {
  letter-spacing: .04em;
  color: #222;
}

#privacy-policy h2 {
  font-size: 1.25em;
  font-weight: bold;
  margin: 0 0 10px;
}

#privacy-policy p {
  font-size: 1.06em;
  line-height: 2;
}

#privacy-policy p.inner {
  padding: 0 0 0 20px;
}

#privacy-policy p.inner_2 {
  padding: 0 0 0 40px;
}

#privacy-policy p a {
  text-decoration: underline;
}
