@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
menu,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */

*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu,
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

body {
  font-family: "Hiragino Sans", "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
}

.main {
  padding-top: 50px;
  padding-bottom: 80px;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 1px 1px #f0f0f0;
  z-index: 5;
}

.header__back-btn {
  width: 60px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__back-btn a {
  text-decoration: none;
  color: inherit;
}

.header__menu {
  width: 60px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__title {
  font-size: 16px;
  text-align: center;
}

.header__bland-logo {
  width: calc(100% - 120px);
}

.header__bland-logo img {
  max-width: 100%;
  width: 425px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  box-shadow: 0 -1px 15px #666666;
  z-index: 5;
}

.footer__menu {
  position: relative;
  display: block;
  text-decoration: none;
  text-align: center;
  color: #000;
}

.footer__menu.active {
  color: #940c0c;
}

.footer__menu--text {
  font-size: 12px;
}

.footer__icon {
  width: 94%;
  height: 100%;
  padding-bottom: 2px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__icon--on {
  display: none;
}

.footer__icon--off {
  display: inline;
}

.footer__menu.active .footer__icon--on {
  display: inline;
}

.footer__menu.active .footer__icon--off {
  display: none;
}

.footer__cart-badge {
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: #ffffff;
  background-color: #940c0c;
  top: -2px;
  right: -2px;
  border: solid 2px #ffffff;
  border-radius: 50%;
  font-size: 12px;
}

.footer__balloon {
  position: absolute;
  display: inline-block;
  top: calc(-100% - 18px);
  width: 90%;
  padding: 20px 10px;
  font-size: 20px;
  text-align: center;
  background-color: #FFF;
  box-sizing: border-box;
  cursor: pointer;
  color: #8f0101;
  border: 2px solid #929292;
  border-radius: 7px;
  font-weight: bold;
}

.footer__balloon:before {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 75%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 23px solid #FFF;
  z-index: 2;
}

.footer__balloon:after {
  content: "";
  position: absolute;
  bottom: -42px;
  left: 75%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 25px solid #555;
  z-index: 1;
}

.footer__balloon p {
  margin: 0;
  padding: 0;
}

.footer-btn {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
  background-color: #8f090c;
  z-index: 5;
  text-decoration: none;
  font-size: 20px;
}

.footer-btn::after {
  content: "keyboard_arrow_right";
  font-family: "Material Icons";
  position: absolute;
  right: 30px;
  font-size: 28px;
}

.layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  opacity: 0;
  visibility: hidden;
  background-color: #3c3c3c;
  z-index: 100;
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  transition: right 300ms;
  z-index: 101;
}

.drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  color: #f0f0f0;
  padding: 10px;
}

.drawer__header-text {
  padding-left: 18px;
}

.drawer__menu {
  width: 100%;
  height: "auto";
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #0f204f;
  border-bottom: solid 1px #f0f0f0;
  color: #f0f0f0;
  text-decoration: none;
  padding: 12px 10px;
}

.drawer__menu-title {
  padding-left: 5px;
}

.drawer__menu--last {
  border-bottom: none;
}

.drawer__detail-area {
  background-color: #f0f0f0;
  padding: 4px 0;
}

.drawer__detail {
  width: auto;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  text-decoration: none;
  color: #000000;
  padding: 8px 0 8px 20px;
}

.drawer__detail::before {
  content: "arrow_right";
  font-family: "Material Icons";
  padding-right: 4px;
}

.form-check-input.invalid,
.form-control.invalid {
  background-color: #ffffff;
  box-shadow: 0 0 5px 0 #dc3545;
  border-color: #dc3545;
  outline: 0;
}

.form-control {
  width: calc(100% - 2 * (16px + 0px) - 2px);
  margin: 0 0px;
  padding: 10px 16px;
  border-style: solid;
  border-width: 1px;
  border-color: #D7DAE2;
  border-radius: 5px;
}

.form-control:focus {
  background-color: #FFFBE8;
  box-shadow: 0 0 5px 0 #07dbb8;
  border-color: #07dbb8;
  outline: 0;
}

.form-control::-moz-placeholder {
  color: #BFC1CD;
}

.form-control:-ms-input-placeholder {
  color: #BFC1CD;
}

.form-control::placeholder {
  color: #BFC1CD;
}

.form-control:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #ffffff inset;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
}

select.form-control {
  width: calc(100% - 8px);
  color: #0f204f;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

select.form-control::-ms-expand {
  display: none;
}

.form-select-wrap {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.form-select-wrap::after {
  content: "arrow_drop_down";
  height: 30px;
  line-height: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
  font-family: "Material Icons";
  font-weight: 900;
  pointer-events: none;
}

.form-select-wrap--inline {
  display: inline-block;
}

textarea.form-control {
  resize: none;
}

.errors__buttons > a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 46px;
  border: none;
  background-color: #8f090c;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  border-radius: 23px;
}

.errors__buttons > a:after {
  content: "keyboard_arrow_right";
  font-family: "Material Icons";
  position: absolute;
  display: block;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
}

.errors {
  margin: 28px 30px;
  padding: 40px 14px;
  background: #f0f0f0;
  border-radius: 10px;
}

.errors__header {
  padding-bottom: 26px;
}

.errors__code {
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
}

.errors__message {
  display: inline-block;
  font-size: 18px;
  color: #7c7c7c;
  padding-left: 10px;
}

.errors__detail {
  font-size: 12px;
  line-height: 1.4;
}

.errors__buttons {
  padding-top: 35px;
  text-align: center;
}

.errors__buttons > a {
  width: 200px;
  margin: 5px 0;
}

.pagination {
  display: flex;
  justify-content: center;
  border: solid 1px #f2f2f2;
  margin: 20px auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 5px;
  overflow: hidden;
}

.page-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  width: 26px;
  height: 30px;
  border-right: solid 1px #f2f2f2;
}

.page-item:last-child {
  border-right: none;
}

.page-item .page-link {
  text-decoration: none;
  color: #07dbb8;
}

.page-item.disabled,
.page-item.active {
  background: #07dbb8;
}

.page-item.disabled .page-link,
.page-item.active .page-link {
  color: #ffffff;
}

.bounce-object {
  transform: translateX(-50%);
  -webkit-animation: bounce 1.5s infinite;
          animation: bounce 1.5s infinite;
  z-index: 1000;
  transition: opacity 0.5s;
}

@-webkit-keyframes bounce {
  0% {
    transform: translateX(0%) translateY(0);
  }

  50% {
    transform: translateX(0%) translateY(10px);
  }

  100% {
    transform: translateX(0%) translateY(0);
  }
}

@keyframes bounce {
  0% {
    transform: translateX(0%) translateY(0);
  }

  50% {
    transform: translateX(0%) translateY(10px);
  }

  100% {
    transform: translateX(0%) translateY(0);
  }
}

/* CSS Document */

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

/* 全体*/

body {
  float: none;
  margin: 0;
  padding: 0;
  color: #333333;
  font-size: 1.2em;
  line-height: 1.5;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main {
  padding-top: 50px;
  padding-bottom: 80px;
}

.help_main_bg {
  background-color: #edeff1;
}

.help_sub_title {
  width: 100%;
  height: 2rem;
  background-color: #344c64;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  /*縦方向の中央揃え*/
  display: flex;
  /* 縦方向中央揃え（Safari用） */
  align-items: center;
  /* 縦方向中央揃え */
  /* 横方向中央揃え（Safari用） */
  justify-content: center;
  /* 横方向中央揃え */
}

.help_text-s {
  font-size: 0.85rem;
}

.help_text_area {
  display: inline-block;
  text-align: left;
  padding: 0.7rem 1rem 2rem 1rem;
  margin: 0 auto;
}

.help_bg_img {
  width: 100%;
  height: 228px;
  margin: 1rem auto 0 auto;
}

.step01_img {
  background: url(/images/help_img001.svg?adb7b3c787d61e30b27a1f3f09380054) no-repeat center;
}

.step02_img {
  background: url(/images/help_img002.svg?9d6770c701df9fc5cf9b5e6308e55dbf) no-repeat center;
}

.step03_img {
  background: url(/images/help_img003.svg?0395c4242b00bb9608e3d2265d8ca449) no-repeat center;
}

.step04_img {
  background: url(/images/help_img004.svg?a11a74ef619411ce92382952c38c5b1d) no-repeat center;
}

.step05_img {
  background: url(/images/help_img005.svg?b3e2cf92cea3966a334dd2324b58c902) no-repeat center;
}

.step06_img {
  background: url(/images/help_img006.svg?7623fe8fc37f7ac2cfa826119f62eb55) no-repeat center;
}

.step07_img {
  background: url(/images/help_img007.svg?2fe09302f7da9dda5c37806ae5ef2406) no-repeat center;
}

.step08_img {
  background: url(/images/help_img008.svg?f773bee3f785e026309d1ff0f3fe7fd1) no-repeat center;
}

.step09_img {
  background: url(/images/help_img009.svg?473634c43c2caba9c1ecfd202bc7c192) no-repeat center;
}

.step10_img {
  background: url(/images/help_img010.svg?510240ca2413a89ed23a00dbe3952029) no-repeat center;
}

.text-ri {
  height: 228px;
  padding-left: 10.5rem;
  line-height: 1.4rem;
  padding-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.text-le {
  height: 228px;
  padding-right: 10.5rem;
  line-height: 1.4rem;
  padding-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.text-center {
  padding-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.text_height_center {
  color: #1a1a1a;
  text-align: center;
  /*縦方向の中央揃え*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.help_text-m {
  font-size: 1rem;
}

.help_bg_text {
  width: 100%;
  height: 65px;
  margin: 0 auto 2rem auto;
}

.help-howto_text_area {
  width: 300px;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  line-height: 1.4rem;
  padding: 0 1rem;
}

.help_bg_img-10 {
  width: 100%;
  height: 270px;
  margin: 4rem auto 0 auto;
}

/*  ----------------------------420px以下[xxs] */

/*  ----------------------------375px以上420px以下 */

