@charset "UTF-8";
body {
  background-color: #f5f5f5;
}

a {
  color: #000;
}

.btn--main {
  background: #000;
  color: #fff;
}

.btn--sub {
  background: transparent;
  color: #000;
}

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

.btn--chevron {
  color: #000;
}
.btn--chevron::after {
  border-color: #000;
}

.btn--chevron-left {
  color: #000;
}
.btn--chevron-left::after {
  border-color: #000;
}

@media screen and (min-width: 961px) {
  a:hover {
    color: #444;
  }
  .btn--main:hover {
    background: #FD9001;
    color: #fff;
  }
  .btn--sub:hover {
    color: #fff;
    background: #000;
  }
  .btn--chevron:hover {
    color: #FD9001;
  }
  .btn--chevron:hover::after {
    border-color: #FD9001;
  }
  .btn--chevron-left:hover {
    color: #FD9001;
  }
  .btn--chevron-left:hover::after {
    border-color: #FD9001;
  }
}
header {
  padding: 2em 5% 0;
}
header h1 {
  width: 14vw;
  margin: 20px auto;
  position: relative;
  max-width: 180px;
}

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

.wrap {
  background: #f5f5f5;
}

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

.txt--attention {
  font-size: 14px;
  background: #ffdada;
  color: #cc0000;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.block--firstlogin .login--attention {
  padding: 20px;
  border: solid 2px #cc0000;
  background: #ffdada;
  font-size: 13px;
}
.block--firstlogin .login--attention b {
  color: #cc0000;
}
.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;
  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: #000;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 0.4s;
}
.block--firstlogin .login--attention .btn--firstlogin a:hover::before {
  transform: scaleX(0);
}

/* SP */
/* tablet */
@media screen and (min-width: 570px) and (max-width: 960px) {
  .page--mypage h1.logo {
    width: 110px;
    margin-bottom: 5px;
  }
}
.list--menu .list--notes {
  padding-top: 0.5em;
  margin-bottom: 0;
}
.list--menu .list--notes li {
  border: none;
  margin-bottom: 0.5em;
}
.list--menu .list--notes li a {
  display: inline-block;
  text-decoration: underline;
  font-size: 11px;
  padding: 0;
  text-indent: 0;
}
.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: #999;
}

/* 有料会員 */
#mypage--app section .area--user-status.status--member {
  background: #1f100a;
}

.block--card {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100lvh;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: display 0.3s ease;
  z-index: 999;
}
.block--card .card {
  width: 450px;
  aspect-ratio: 1.5/1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.block--card .close {
  width: 24px;
  height: 24px;
  margin: 0 auto 2em;
  font-size: 0;
  position: absolute;
  top: -34px;
  right: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.block--card .close::before, .block--card .close::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 140%;
  height: 2px;
  background-color: #000;
}
.block--card .close::before {
  left: 0;
  transform: rotate(45deg);
  transform-origin: left;
}
.block--card .close::after {
  right: 0;
  transform: rotate(-45deg);
  transform-origin: right;
}
.block--card .inner {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}
.block--card .photo {
  width: 64.5%;
  height: 100%;
  overflow: hidden;
}
.block--card .photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.block--card .card-txt {
  width: 35.5%;
  height: 100%;
  padding: 20px;
  background-color: #000;
  font-size: 12px;
  position: relative;
}
.block--card .card-txt .title {
  color: #AAA;
  font-family: eurostile-condensed, sans-serif;
  font-weight: 800;
}
.block--card .card-txt .detail {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #FFF;
}
.block--card .card-txt > div + div {
  margin-top: 10px;
}
.block--card .card-txt .logo {
  position: absolute;
  width: calc(100% - 40px);
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .block--card .card {
    width: min(450px, 90%);
    aspect-ratio: 1.4/1;
  }
  .block--card .card-txt {
    padding: 12px;
    font-size: 11px;
  }
  .block--card .card-txt > div + div {
    margin-top: 8px;
  }
  .block--card .card-txt .logo {
    width: calc(100% - 24px);
    bottom: 12px;
  }
}

.form--post input + input {
  margin-top: 0.5em;
}

@media screen and (min-width: 640px) {
  .list--menu .menu__status {
    width: 190%;
    right: -190%;
  }
  .list--menu span {
    width: 35%;
  }
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  header h1 {
    width: 40vw;
    margin: 6px auto 20px auto;
  }
}/*# sourceMappingURL=mypage-service.css.map */