@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700&family=Outfit:wght@400;700&display=swap");
body {
  background-color: #f8f8f8;
}

a {
  color: #0F6FB9;
}
a:hover {
  color: #CD443A;
}

.btn--main {
  background: #0F6FB9;
  color: #ffffff;
}
.btn--main:hover {
  background: #CD443A;
}

.btn--sub {
  background: transparent;
  color: #0F6FB9;
}
.btn--sub:hover {
  background: #0F6FB9;
  color: #ffffff;
}

.detail__btn a::before {
  border-color: #000000;
}

.btn--chevron {
  color: #0F6FB9;
}
.btn--chevron::after {
  border-color: #0F6FB9;
}
.btn--chevron:hover {
  color: #CD443A;
}
.btn--chevron:hover::after {
  border-color: #CD443A;
}

.btn--chevron-left {
  color: #0F6FB9;
}
.btn--chevron-left::after {
  border-color: #0F6FB9;
}
.btn--chevron-left:hover {
  color: #CD443A;
}
.btn--chevron-left:hover::after {
  border-color: #CD443A;
}

.page--mypage .wrap > section {
  overflow: hidden;
}
.page--mypage .logo {
  display: none;
}

header {
  padding: 2em 5% 0;
}
header h1 {
  position: relative;
  width: 15vw;
  max-width: 200px;
  margin: 3em auto 1em;
}
header h1 svg {
  fill: #000000;
}

.section--login {
  padding-top: 0;
}

.wrap {
  background: #f8f8f8;
}

.block--attention {
  padding: 20px;
  border: solid 1px;
  border-radius: 6px;
  font-size: 14px;
}

.ph, .thumb {
  position: relative;
  line-height: 0;
}
.ph img, .thumb img {
  width: 100%;
}
.ph::after, .thumb::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/static/common/global-image/dummy.gif);
  background-size: cover;
}
.ph .dummy, .thumb .dummy {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.block--firstlogin .login--attention {
  padding: 20px;
  border: solid 2px #cc0000;
  background: #ffdada;
  font-size: 13px;
}
.block--firstlogin .login--attention .txt--basic {
  display: inline-block;
  margin: 0 0 0.8em;
  border-bottom: solid 1px;
}
.block--firstlogin .login--attention b {
  color: #cc0000;
}
.block--firstlogin .login--attention a {
  color: #333333;
}
.block--firstlogin .login--attention .btn--firstlogin {
  margin: 6% auto 9%;
}
.block--firstlogin .login--attention .btn--firstlogin a {
  position: relative;
  border-bottom: solid 2px #cc0000;
  font-weight: bold;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.block--firstlogin .login--attention .btn--firstlogin a::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333333;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.block--firstlogin .login--attention .btn--firstlogin a:hover {
  color: #000000;
}
.block--firstlogin .login--attention .btn--firstlogin a:hover::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.btn--birthday {
  background-color: #184988;
  color: #ffffff;
}
.btn--birthday i {
  margin-right: 0.3em;
  font-family: "Font Awesome 5 Free";
}

.list--menu .list--notes {
  margin-bottom: 0;
  padding-top: 0.5em;
}
.list--menu .list--notes li {
  margin-bottom: 0.5em;
  border: none;
}
.list--menu .list--notes li a {
  display: inline-block;
  padding: 0;
  font-size: 11px;
  text-indent: 0;
  text-decoration: underline;
}
.list--menu .list--notes li a::after {
  display: none;
}

.mypage .detail__btn.app a::after {
  content: "BACK";
}

#mypage--app section .area--user-status.status--free {
  background: #999999;
}

#mypage--app section .area--user-status.status--member {
  background: #1f100a;
}

@media screen and (min-width: 1px) and (max-width: 768px) {
  header h1 {
    width: 50vw;
    margin: 6px auto 20px;
  }
}