@charset "UTF-8";
:root {
  --key-color: #00A0E9;
  --black: #333333;
  --white: #FFFFFF;
  --red: #F42C2C;
  --disabled: #C4C4C4;
}

:focus {
  outline: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  /* sticky */
  height: 100%;
}

body {
  color: var(--black);
  font-family: 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100vh;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* sticky */
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

body,
button,
input {
  line-height: 1.5;
}

input:-ms-input-placeholder,
input::-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--disabled);
}

input::-ms-input-placeholder,
input::-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--disabled);
}

input::placeholder,
input::-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--disabled);
}

input::-ms-reveal {
  visibility: hidden;
}

input[type=check],
input[type=radio] {
  vertical-align: middle;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

p:disabled {
  background: #F3F3F3;
  border-color: #F3F3F3;
}

h1,
h2,
h3,
h4,
th {
  font-weight: normal;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  width: 100%;
  table-layout: fixed;
}

tr {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 24px;
}

tr:first-of-type {
  margin-top: 0;
}

tr th {
  text-align: left;
  font-weight: normal;
}

tr td {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

tr td input {
  width: 100%;
}

tr td input:not(:first-child) {
  margin-left: 12px;
}

tr td input,select:last-child {
  margin-left: 8px;
}

tr td > label {
  margin-left: 12px;
}

tr td div:not(:first-child) {
  margin-left: 8px;
}

input:focus {
  border-color: var(--key-color);
}

img {
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--black);
}

figure {
  text-align: center;
}

.l-header {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  z-index: 2;
  /* sticky */
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.l-header-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 8px 0;
}

.l-header img {
  width: 56px;
}

.l-wrap {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 12px 0 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.l-wrap h2 {
  text-align: center;
  width: 400px;
  margin: 0 auto;
}

.l-wrap > p {
  text-align: center;
}

.l-btn-wrap {
  text-align: center;
}

.l-footer {
  width: 100%;
  background: #F6F6F6;
  text-align: center;
  margin-top: 80px;
  padding: 16px 0;
  /* sticky */
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.l-footer p {
  color: #A6A6A6;
  font-size: 1.4rem;
}

.l-footer a {
  color: #A6A6A6;
  font-size: 1.2rem;
}

.c-content-wrap {
  width: 400px;
  margin: 24px auto 0;
}

.c-content-wrap .p-account,
.c-content-wrap .p-password {
  width: 100%;
  margin-top: 32px;
}

.c-content-wrap .p-account input {
  width: 100%;
}

.c-content-wrap .p-password input {
  border: none;
}

.c-content-wrap .p-password p {
  margin: 4px 0 0 8px;
}

.c-content-wrap .c-error {
  color: var(--red);
}

.c-button {
  display: block;
  border-radius: 47px;
  color: var(--white);
  max-width: 311px;
  width: 80%;
  margin: 0 auto;
  padding: 12px 0;
  background: var(--key-color);
  border: none;
}

.c-button > span {
  position: relative;
}

.c-button:not(:first-child) {
  margin-top: 24px;
}

.c-button.disabled {
  background: var(--disabled);
}

.c-button--outline-accent, .c-button--outline {
  color: var(--black);
  background: #FFFFFF;
}

.c-button--outline {
  border: 1px solid var(--key-color);
}

.c-button--outline-accent {
  border: 1px solid var(--red);
}

.c-button--outline-disabled {
  border: 1px solid var(--disabled);
  background-color: transparent;
  color: dimgray;
}

.c-button--small {
  width: 180px;
  padding: 8px 0;
  font-size: 1.4rem;
}

.c-button--s-padding {
  padding: 8px 0;
}

.c-button--clear-style {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-button--clear-style > span,
.c-button--clear-style > img {
  position: relative;
}

.c-input {
  padding: 10px 12px;
  height: 44px;
}

.c-input--password {
  position: relative;
  padding: 0;
  height: 44px;
}

.c-input--password:focus-within {
  border-color: var(--key-color);
}

.c-input--password input {
  width: 100%;
  height: 100%;
  padding: 10px 44px 10px 12px;
  border-radius: 4px;
}

.c-btn-radio-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.c-btn-radio input[type=checkbox],
.c-btn-radio input[type=radio] {
  display: none;
}

.c-btn-radio input[type=checkbox] + label::before,
.c-btn-radio input[type=radio] + label::before {
  position: absolute;
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #A6A6A6;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn-radio input[type=checkbox]:checked + label::before,
.c-btn-radio input[type=radio]:checked + label::before {
  border-color: var(--key-color);
}

.c-btn-radio input[type=checkbox]:disabled + label::before,
.c-btn-radio input[type=radio]:disabled + label::before {
  background: #F3F3F3;
  border-color: #F3F3F3;
}

.c-btn-radio input[type=checkbox] + label::after,
.c-btn-radio input[type=radio] + label::after {
  position: absolute;
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--key-color);
  left: 3px;
  top: 6px;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-btn-radio input[type=checkbox]:checked + label::after,
.c-btn-radio input[type=radio]:checked + label::after {
  opacity: 1;
}

.c-btn-radio label {
  position: relative;
  padding-left: 25px;
}

.c-btn-radio:not(:first-child) {
  margin-left: 32px;
}

.c-message {
  margin: 32px auto 48px;
}

.c-message--title, .c-message--detail {
  text-align: center;
}

.c-message--detail {
  margin-top: 32px;
}

.c-modal {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.c-modal--wrap {
  position: relative;
  width: 288px;
  padding: 56px 24px;
  background: #FFFFFF;
  border-radius: 8px;
}

.c-modal--contents {
  text-align: center;
}

.c-modal--close {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 8px;
  right: 8px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
}

.c-code {
  width: 100%;
  padding: 0px 0px 0px 40px;
  text-align: center;
  border: none;
  border-bottom: 2px solid #A6A6A6;
  border-radius: 0;
  font-size: 2.8rem;
  letter-spacing: 45px;
}

.c-form--logout {
  width: 100%;
  margin-top: 80px;
  text-align: center;
  vertical-align: top;
}

.c-form--logout img {
  margin-left: 2px;
  vertical-align: top;
}

.c-menu-btn {
  width: 54px;
  height: 24px;
  color: var(--key-color);
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: center;
  border: 1px solid var(--key-color);
  border-radius: 12px;
  cursor: pointer;
}

.c-menu-contents {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  text-align: center;
  background: #2F2E41;
  z-index: 4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-menu-contents.is-open {
  right: 0;
}

.c-menu-contents li,
.c-menu-contents a,
.c-menu-contents button {
  color: var(--white);
}

.c-menu-contents button {
  font-size: 1.4rem;
}

.c-menu-contents .c-menu-head-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 24px;
}

.c-menu-contents .c-menu-head-wrap .c-menu--close {
  width: 40px;
  height: 40px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 4rem;
  border-radius: 4px;
  background: #3A3951;
  color: #FFFFFF;
  cursor: pointer;
}

.c-menu-contents ol li {
  padding: 12px 0;
}

.c-ac-wrap .ac-label {
  cursor: pointer;
  text-align: center;
  position: relative;
}

.c-ac-wrap .ac-content {
  display: none;
  padding: 0 8px;
}

.c-ac-wrap .icon-wrap {
  position: absolute;
  right: 32px;
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 18px;
  height: 18px;
}

.c-ac-wrap .icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.c-ac-wrap .icon:before,
.c-ac-wrap .icon:after {
  position: absolute;
  content: "";
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #fff;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-ac-wrap .icon:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.c-ac-wrap .icon.is-active:before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.c-child-wrap {
  position: relative;
}

.c-child-wrap div::before, .c-child-wrap div::after {
  content: '';
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  background: #FFFFFF;
  right: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.c-child-wrap div::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-child-wrap div.is-active::before {
  top: 21px;
}

.c-child-wrap div.is-active::after {
  top: 30px;
  -webkit-transform: translate(0);
          transform: translate(0);
}

@-webkit-keyframes accordion {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes accordion {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.c-ac-content {
  display: none;
}

.c-ac-content .c-child-contents {
  width: 100%;
  margin-top: 12px;
  padding: 16px;
  background: #3A3951;
}

.c-mark-required::after {
  content: '必須';
  border: 1px solid var(--red);
  border-radius: 2px;
  font-size: 1.2rem;
  padding: 1px 10px;
  color: var(--red);
  margin-left: 8px;
}

.p-code {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-code input:not(:first-child) {
  margin-left: 30px;
}

.p-menu {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}

.p-menu .p-menu-item {
  position: relative;
  padding: 24px 24px 24px 76px;
  border: 1px solid var(--key-color);
  border-radius: 20px;
  width: 350px;
  font-size: 2rem;
}

.p-menu .p-menu-item::before {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-menu .p-menu-item:first-child::before {
  content: url("/image/icon/ic_member_info.svg");
}

.p-menu .p-menu-item:nth-child(2)::before {
  content: url("/image/icon/ic_account_link.svg");
}

.p-menu .p-menu-item:nth-child(3)::before {
  content: url("/image/icon/ic_account.svg");
}

.p-menu .p-menu-item:last-child::before {
  content: url("/image/icon/ic_data_link.svg");
}

.p-menu .p-menu-item:nth-child(2n) {
  margin-left: 50px;
}

.p-menu .p-menu-item:nth-child(n + 3) {
  margin-top: 50px;
}

.p-menu .p-menu-item div {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.p-menu .p-menu-item-detail {
  font-size: 1.4rem;
}

.u-boundary {
  border: 1px solid #A6A6A6;
  border-radius: 4px;
  width: 100%;
}

.u-ta--center {
  text-align: center;
}

.u-mt--medium {
  margin-top: 48px;
}

.u-mt--large {
  margin-top: 80px;
}

.u-mt--2 {
  margin-top: 2px;
}

.u-mt--4 {
  margin-top: 4px;
}

.u-mt--12 {
  margin-top: 12px;
}

.u-mt--24 {
  margin-top: 24px;
}

.u-mt--40 {
  margin-top: 40px;
}

.u-ml--8 {
  margin-left: 8px;
}

.u-mb--24 {
  margin-bottom: 24px;
}

.u-mb--40 {
  margin-bottom: 40px;
}

.u-pt--24 {
  padding-top: 24px;
}

.u-pt--40 {
  padding-top: 40px;
}

.u-pt--60 {
  padding-top: 60px;
}

.u-fs--14 {
  font-size: 1.4rem;
}

.u-w--600 {
  width: 600px;
}

.u-w--28-per {
  width: 28%;
}

.u-w--72-per {
  width: 72%;
}

.u-disabled {
  border: none;
  background: #F3F3F3;
}

.u-annotation {
  font-size: 1.2rem;
}

.u-pc-view {
  display: block;
}

.u-sp-view {
  display: none;
}

.u-eye-on,
.u-eye-off {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.u-eye-off {
  background: url("/image/icon/ic_eye_off.svg") no-repeat center/24px;
}

.u-eye-on {
  background: url("/image/icon/ic_eye_on.svg") no-repeat center/24px;
}

.u-step-indicator {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--key-color);
  margin: 0 auto;
}

.u-step-indicator img {
  width: 72px;
  margin-right: 10px;
}

.u-dp--none {
  display: none;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
  }
  .l-header-wrap {
    padding: 12px 24px;
    z-index: 2;
  }
  .l-wrap {
    max-width: 100%;
    margin-top: 72px;
    /* ヘッダー高さ72px */
    padding: 0 32px;
  }
  .l-wrap h2 {
    margin-top: 12px;
    text-align: left;
    width: 100%;
  }
  .l-wrap h2 img {
    width: 64px;
  }
  .l-wrap > p {
    text-align: left;
  }
  .l-footer {
    margin-top: 48px;
  }
  .l-footer p {
    font-size: 1.2rem;
  }
  .c-content-wrap {
    width: 100%;
    margin-top: 32px;
  }
  .c-content-wrap .p-account,
  .c-content-wrap .p-password {
    margin-top: 24px;
  }
  .c-content-wrap .c-error {
    font-size: 1.4rem;
  }
  .c-form--logout {
    font-size: 1.4rem;
    margin-top: 48px;
  }
  .c-button {
    max-width: 280px;
    width: 100%;
  }
  .c-button--small {
    width: 180px;
  }
  .c-menu-contents {
    width: 100vw;
    height: 100vh;
    right: -100vw;
  }
  .c-menu-contents .c-menu-head-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 16px;
  }
  .c-menu-contents .c-menu-head-wrap .c-menu--close {
    width: 40px;
    height: 40px;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    line-height: 4rem;
    border-radius: 4px;
    background: #3A3951;
    color: #FFFFFF;
    cursor: pointer;
  }
  .c-menu-contents button {
    font-size: 1.2rem;
  }
  .c-menu-contents ol {
    margin-top: 12px;
    text-align: left;
    text-indent: 32px;
  }
  .c-menu-contents ol li:last-child a {
    font-size: 1.4rem;
  }
  .c-child-wrap div::after {
    top: 2px;
  }
  .c-ac-wrap .ac-label {
    text-align: left;
  }
  .c-ac-wrap .ac-label .icon-wrap .icon {
    right: 32px;
  }
  .p-menu {
    margin-top: 40px;
  }
  .p-menu .p-menu-item {
    padding: 20px 0;
    border-radius: 47px;
    font-size: 1.6rem;
    text-align: center;
    margin-top: 40px;
  }
  .p-menu .p-menu-item::before {
    left: 32px;
  }
  .p-menu .p-menu-item:nth-child(2n) {
    margin-left: 0;
  }
  .p-menu .p-menu-item:nth-child(n + 3) {
    margin-top: 0;
  }
  .p-menu .p-menu-item:not(:first-child) {
    margin-top: 40px;
  }
  .u-pc-view {
    display: none;
  }
  .u-sp-view {
    display: block;
  }
  .u-step-indicator {
    height: 80px;
  }
  .u-step-indicator img {
    width: 64px;
  }
  .c-code {
    width: 100%;
    padding: 0px 0px 0px 30px;
    text-align: center;
    border: none;
    border-bottom: 2px solid #A6A6A6;
    border-radius: 0;
    font-size: 2.8rem;
    letter-spacing: 30px;
  }
}

@media (hover: hover) {
  .c-button:hover {
    cursor: pointer;
    opacity: 0.8;
  }
  .c-button:hover.disabled {
    cursor: default;
    opacity: 0.8;
  }
  .c-button.disabled:hover {
    cursor: default;
    opacity: 1;
  }
  .c-button--outline-accent:hover, .c-button--outline:hover {
    cursor: pointer;
    color: #FFFFFF;
    opacity: 0.8;
  }
  .c-button--outline:hover {
    background: var(--key-color);
  }
  .c-button--outline-accent:hover {
    background: var(--red);
  }
  .p-menu .p-menu-item:hover {
    background: var(--key-color);
    opacity: 0.8;
    border-color: rgba(0, 0, 0, 0);
    color: white;
  }
}

@media (hover: none) {
  .c-button:active.disabled {
    cursor: default;
    opacity: 0.8;
  }
  .c-button.disabled:active {
    cursor: default;
    opacity: 1;
  }
  .c-button--outline-accent:active, .c-button--outline:active {
    cursor: pointer;
    color: #FFFFFF;
    opacity: 0.8;
  }
  .c-button--outline:active {
    background: var(--key-color);
  }
  .c-button--outline-accent:active {
    background: var(--red);
  }
  .p-menu .p-menu-item:active {
    background: var(--key-color);
    opacity: 0.8;
    border-color: rgba(0, 0, 0, 0);
    color: white;
  }
}
/*# sourceMappingURL=common.css.map */
