@charset "utf-8";

/* ======================================================
 * beginners_kouza
 * ------------------------------------------------------
 * - Override
 * - PageComponent
 * - Clearfix
 * Print
====================================================== */


/* ------------------------------------------------------
 * Override
------------------------------------------------------ */
.m-beginners-kouza-flow__nest * {
  color: #313942;
}



/* ------------------------------------------------------
 * PageComponent
------------------------------------------------------ */

.p-entry_btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  min-height: 48px;
  margin: 0 auto;
  padding: 8px 24px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #e64e1c 0%, #f5480f);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  filter: brightness(100%);
  cursor: pointer;
  transition: filter 0.25s ease;
}
.p-entry_btn:hover {
  color: #fff;
  filter: brightness(112%);
}
.p-entry_btn > b {
  display: block;
  margin-bottom: 8px;
  padding: 0 24px;
  background-color: #fff;
  border-radius: 1.5em;
  color: #e64e1c;
  line-height: 1.5;
}

.p-entry_btn.-fx {
  background: linear-gradient(to right, #e5a420 0%, #d69d2b);
}
.p-entry_btn.-fx > b {
  color: #d69d2b;
}

.p-entry_btn.-login {
  background: #0c9dc2;
}


@media print, screen and (min-width: 768px) {
.p-entry_btn {
  max-width: 336px;
  font-size: 2rem;
  padding: 16px 16px 12px;
}
.m-tab__body {
  padding-top: 3em;
}


/* m-beginners-kouza-choice */
.m-beginners-kouza-choice {}
.m-beginners-kouza-choice > *:first-child {
  margin-top: 0 !important;
}

/* ----- m-beginners-kouza-tab ----- */
.m-beginners-kouza-choice-tab {}

.m-beginners-kouza-choice-tab__head {
  display: none;
}
.m-beginners-kouza-choice-tab__list {}
.m-beginners-kouza-choice-tab__button {}
.m-beginners-kouza-choice-tab__label {}
.m-beginners-kouza-choice-tab__balloon {}


/* ----- m-beginners-kouza-choice-layout ----- */
.m-beginners-kouza-choice-layout {
  display: flex;
  flex-flow: row wrap;
  margin-top: 36px;
}

/* ----- m-beginners-kouza-choice-box ----- */
.m-beginners-kouza-choice-box {
  position: relative;
  padding: 40px 28px 30px;
  background: #f4f9fb;
  /* background: rgba(10, 31, 51, 0.03); */
  /* border: 1px solid #dde0e5; */
  /* border-radius: 5px; */
  border-radius: 8px;
}
.m-beginners-kouza-choice-layout > .m-beginners-kouza-choice-box {
  width: calc((100% - 35px) / 2 - 0.1px);
  margin-right: 35px;
}
.m-beginners-kouza-choice-box > *:first-child {
  margin-top: 0 !important;
}
.m-beginners-kouza-choice-layout > .m-beginners-kouza-choice-box:nth-child(2n){
  margin-right: 0;
}
.m-beginners-kouza-choice-layout > .m-beginners-kouza-choice-box:nth-child(n+3){
  margin-top: 30px;
}
.m-beginners-kouza-choice-box__balloon {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  text-align: center;
}
.m-beginners-kouza-choice-box__balloon__inner {
  display: inline-block;
  padding: 5px 28px;
  background: #e74c3c;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
}
.m-beginners-kouza-choice-box__balloon__inner::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -11px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 0 11px;
  border-color: #e74c3c transparent transparent transparent;
}
.m-beginners-kouza-choice-box__title {
  font-size: 2.4rem;
  text-align: center;
}
.m-beginners-kouza-choice-box__lead {
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.m-beginners-kouza-choice-box__lead-v2{
  margin-top: 30px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.m-beginners-kouza-choice-box__lead__highlight {
  color: #c00;
}

/* m-beginners-kouza-choice-box__button */
.m-beginners-kouza-choice-box__button,
.m-beginners-kouza-choice-box__button-v2 {
  margin-top: 20px;
}
.m-beginners-kouza-choice-box__button .m-beginners-kouza-choice-box__button__type,
.m-beginners-kouza-choice-box__button .m-beginners-kouza-choice-box__button__type--blank,
.m-beginners-kouza-choice-box__button-v2 .m-beginners-kouza-choice-box__button-v2__type,
.m-beginners-kouza-choice-box__button-v2 .m-beginners-kouza-choice-box__button-v2__type--blank {
  display: block;
  position: relative;
  width: 84%;
  margin: 0 auto;
  padding: 17px 40px;
  border-radius: 5px;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.m-beginners-kouza-choice-box__button__type,
.m-beginners-kouza-choice-box__button__type--blank {
  background: #a72424;
}
.m-beginners-kouza-choice-box__button__type:hover,
.m-beginners-kouza-choice-box__button__type--blank:hover {
  background: #cf3030;
}
.m-beginners-kouza-choice-box__button-v2__type,
.m-beginners-kouza-choice-box__button-v2__type--blank {
  background: #c7890f;
}
.m-beginners-kouza-choice-box__button-v2__type:hover,
.m-beginners-kouza-choice-box__button-v2__type--blank:hover {
  background: #df9a11;
}
.m-beginners-kouza-choice-box__button__type--blank::after,
.m-beginners-kouza-choice-box__button-v2__type--blank::after {
  content: '';
  position: absolute;
  right: 22px;
  top: calc(50% - 7px);
  display: block;
  width: 15px;
  height: 14px;
  background: url("/app-files/img/sprite/icon.svg#blank2-usage");
}
.m-beginners-kouza-choice-box__button__label,
.m-beginners-kouza-choice-box__button-v2__label {
  display: inline-block;
}

/* m-beginners-kouza-choice-box__service */
.m-beginners-kouza-choice-box__service {
  margin-top: 25px;
  padding: 25px 30px;
  background: #fff;
}
.m-beginners-kouza-choice-box__service > *:first-child {
  margin-top: 0 !important;
}
.m-beginners-kouza-choice-box__service__title {
  margin-top: 1em;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.m-beginners-kouza-choice-box__service__list,
.m-beginners-kouza-choice-box__service__list-v2 {
  margin: 1em 0 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.m-beginners-kouza-choice-box__service__list > li,
.m-beginners-kouza-choice-box__service__list-v2 > li {
  list-style: none;
}
.m-beginners-kouza-choice-box__service__list > li {
  /* width: calc((100% - 56px) / 9 - 0.1px); */
  margin-right: 12px;
  margin-bottom: 8px;
}
.m-beginners-kouza-choice-box__service__list-v2 > li {
  /* width: 48px; */

  margin-right: 12px;
}
.m-beginners-kouza-choice-box__service__list > li > img,
.m-beginners-kouza-choice-box__service__list-v2 > li > img {
  width: 40px;
  height: 40px;
}
.m-beginners-kouza-choice-box__service__list > li:nth-child(9n),
.m-beginners-kouza-choice-box__service__list-v2 > li:last-child {
  margin-right: 0;
}

.m-beginners-kouza-choice-box__service__add {
  padding-top: 35px;
  position: relative;
}
.m-beginners-kouza-choice-box__service__add::before,
.m-beginners-kouza-choice-box__service__add::after {
  content: '';
  position: absolute;
  top: 12px;
  left: calc(50% - 10px);
  width: 20px;
  height: 3px;
  display: block;
  background: #465059;
}
.m-beginners-kouza-choice-box__service__add::before{
  transform: rotate(90deg);
}
.m-beginners-kouza-choice-box__service__add__inner {
  padding: 8px;
  background: #f3f4f6;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}

/*m-beginners-kouza-choice-box-list-wrap */
.m-beginners-kouza-choice-box-list-wrap {
  margin-top: 1em;
}

/* m-beginners-kouza-choice-box__case */
.m-beginners-kouza-choice-box__case {
  margin-top: 25px;
  border: 1px solid #dde0e5;
}
.m-beginners-kouza-choice-box__case__head {
  position: relative;
  padding: 10px 10px;
  background: #024f95;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.m-beginners-kouza-choice-box__case__head::after {
  content: '';
  position: absolute;
  display: block;
  bottom: -8px;
  left: calc(50% - 8px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #024f95 transparent transparent transparent;

}
.m-beginners-kouza-choice-box__case__body {
  padding: 18px 10px;
  background: #fff;
}
.m-beginners-kouza-choice-box__case__body > *:first-child {
  margin-top: 0 !important;
}


/* ----- m-beginners-kouza-service-list ----- */
.m-beginners-kouza-service-list {
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.m-beginners-kouza-service-list > li {
  list-style: none;
  width: 62px;
  margin-right: 16px;
}
.m-beginners-kouza-service-list > li:last-child {
  margin-right: 0;
}


/* ----- m-beginners-kouza-lead ----- */
.m-beginners-kouza-lead {
  margin: 1em 0 0;
  font-size: 1.6rem;
  text-align: center;
}

/* ----- m-beginners-kouza-infoBox ----- */
.m-beginners-kouza-infoBox {
  margin-top: 2em;
}
.m-beginners-kouza-infoBox__inner {
  padding: 28px 20px;
  background: #f4f9fb;
  border: 1px solid #dde0e5;
  border-radius: 5px;
}
.m-beginners-kouza-infoBox__inner > *:first-child {
  margin-top: 0 !important;
}

.m-beginners-kouza-infoBox__lead {
  margin: 0;
  font-size: 1.8rem;
  text-align: center;
}
.m-beginners-kouza-infoBox__button {
  margin-top: 15px;
}
.m-beginners-kouza-infoBox__button .m-beginners-kouza-infoBox__button__type,
.m-beginners-kouza-infoBox__button .m-beginners-kouza-infoBox__button__type--blank {
  display: block;
  position: relative;
  width: 412px;
  margin: 0 auto;
  padding: 17px 40px;
  border-radius: 5px;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.m-beginners-kouza-infoBox__button__type,
.m-beginners-kouza-infoBox__button__type--blank {
  background: #024f95;
}
.m-beginners-kouza-infoBox__button__type:hover,
.m-beginners-kouza-infoBox__button__type--blank:hover {
  background: #0067c3;
}
.m-beginners-kouza-infoBox__button__type--blank::after {
  content: '';
  position: absolute;
  right: 22px;
  top: calc(50% - 7px);
  display: block;
  width: 15px;
  height: 14px;
  background: url("/app-files/img/sprite/icon.svg#blank2-usage");
}
.m-beginners-kouza-infoBox__button__label {
  display: inline-block;
}

/* ----- m-beginners-kouza-flow-heading1 ----- */
.m-beginners-kouza-flow-heading1 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 1.6em 0;
  background-color: #f4f9fb;
  box-shadow: inset 0px 5px 5px -5px rgba(6, 0, 1, 0.1);
}
.m-beginners-kouza-flow-heading1__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: calc(1200px + 30px * 2);
  margin: 0 auto;
  padding: 0 30px;
}
.m-beginners-kouza-flow-heading1__title {
  margin: 0;
  line-height: 1.4;
  font-size: 4.0rem;
  font-weight: 700;
}
.m-beginners-kouza-flow-heading1__title__sub {
  font-size: 2.4rem;
}
.m-beginners-kouza-flow-heading1__catch {
  position: relative;
  padding: 6px 0 4px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50px;
}
.m-beginners-kouza-flow-heading1__catch__label {
  padding: 0 80px 0 72px;
  font-size: 1.8rem;
  font-weight: bold;
}
.m-beginners-kouza-flow-heading1__catch__label__highlight {
  color: #c00;
  font-size: 2.4rem;
}
.m-beginners-kouza-flow-heading1__catch__point {
  position: absolute;
  right: 5px;
  top: calc(50% - 21px);
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  background: #e74c3c;
  border-radius: 100%;
  color: #fff;
  font-size: 3rem;
  font-weight: normal;
}
.m-beginners-kouza-flow-heading1__catch__point__unit {
  display: block;
  align-self: center;
  margin-top: 15px;
  font-size: 1.1rem;
}

/* ----- m-beginners-kouza-flow-step ----- */
.m-beginners-kouza-flow-step {
  margin-top: 60px;
  padding: 14px 20px;
  border-radius: 5px;
  background: #f3f4f6;
}
.m-heading2 + section .m-beginners-kouza-flow-step:first-child {
  margin-top: 0;
}

.m-beginners-kouza-flow-step__heading {
  display: flex;
  align-items: center;
  margin: 0;
  font-weight: normal;
}
.m-beginners-kouza-flow-step__heading__badge {
  flex-basis: 150px;
  flex-shrink: 0;
  padding: 2px 8px 2px;
  margin-right: 35px;
  background: #465059;
  border-radius: 50px;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
}
.m-beginners-kouza-flow-step__heading__label {
  font-size: 2.2rem;
  font-weight: bold;
}

/* ----- m-beginners-kouza-flow-layout ----- */
.m-beginners-kouza-flow-layout {
  display: flex;
  justify-content: start;
  margin-top: 25px;
}
.m-beginners-kouza-flow-layout__head {
  flex-basis: 160px;
  flex-shrink: 0;
  margin-right: 45px;
  padding-left: 20px;
  text-align: center;
}
.m-beginners-kouza-flow-layout__head__img {
  width: 88px;
}
.m-beginners-kouza-flow-layout__head__img-v2 {
  width: 74px;
}
.m-beginners-kouza-flow-layout__head__img-v3 {
  width: 48px;
}
.m-beginners-kouza-flow-layout__head__img-v4 {
  width: 57px;
}
.m-beginners-kouza-flow-layout__head__img-v5 {
  width: 75px;
}

.m-beginners-kouza-flow-layout__body {}
.m-beginners-kouza-flow-layout__body > *:first-child,
.m-beginners-kouza-flow-layout__body > section:first-child > *:first-child {
  margin-top: 0 !important;
}

/* ----- m-beginners-kouza-flow-inquiry ----- */
.m-beginners-kouza-flow-inquiry {
  margin: 2.4em 0 0;
  border-radius: 3px;
  background-color: #f4f9fb;
  box-shadow: 0px 0px 0px 1px #dde0e5 inset;
}
.m-beginners-kouza-flow-inquiry__box {
  padding: 1.8em 1.8em 2.4em;
}
.m-beginners-kouza-flow-inquiry__title {
  margin: 0;
  line-height: 1.4;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
}
.m-beginners-kouza-flow-inquiry__detail {
}

/* m-beginners-kouza-flow-inquiry-button */
.m-beginners-kouza-flow-inquiry-button-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 1em 0 0 0;
}
.m-beginners-kouza-flow-inquiry-button__ballon {
  margin-top: 18px;
  padding-bottom: 20px;
  text-align: center;
}
.m-beginners-kouza-flow-inquiry-button__ballon__inner {
  position: relative;
  display: inline-block;
  padding: 5px 30px;
  background: #e74c3c;
  border-radius: 20px;
  color: #fff;
}
.m-beginners-kouza-flow-inquiry-button__ballon__inner::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -11px;
  left: calc(50% - 11px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 0 11px;
  border-color: #e74c3c transparent transparent transparent;
}

.m-beginners-kouza-flow-inquiry-button__ballon + * {
  margin-top: 0 !important;
}
.m-beginners-kouza-flow-inquiry-button {
  width: 400px;
}
.m-beginners-kouza-flow-inquiry-button__type,
.m-beginners-kouza-flow-inquiry-button__type--blank  {
  position: relative;
  display: flex;
  padding: .8636em 1.6em;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #a72424;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  color: #fff !important  ;
  line-height: 1.4;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
}
.m-beginners-kouza-flow-inquiry-button__type--blank::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  right: 22px;
  background: url("/app-files/img/sprite/icon.svg#blank2-usage") no-repeat center;
}

.m-beginners-kouza-flow-inquiry-button__type:hover,
.m-beginners-kouza-flow-inquiry-button__type--blank:hover {
  background-color: #cf3030;
}
.m-beginners-kouza-flow-inquiry-button__label {}

/* m-beginners-kouza-flow-inquiry-case */
.m-beginners-kouza-flow-inquiry-case {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.m-beginners-kouza-flow-inquiry-case__head {
  margin-right: 40px;
  font-weight: bold;
}
.m-beginners-kouza-flow-inquiry-case__head > *:first-child {
  margin-top: 0 !important;
}
.m-beginners-kouza-flow-inquiry-case__body {}
.m-beginners-kouza-flow-inquiry-case__body > *:first-child{
  margin-top: 0 !important;
}

.m-entry_hojin-column {
    margin-top: 50px;
  }
  .m-entry_hojin-column__item > :first-child,
  .m-entry_hojin-column__item > section:first-child > :first-child {
    margin-top: 0 !important;
  }
  /* m-beginners-kouza-step */
  .m-beginners-kouza-step-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
  }
  .m-beginners-kouza-step {
  }
  .m-beginners-kouza-step + .m-beginners-kouza-step {
    margin-left: 35px;
  }
  .m-beginners-kouza-step {}
  /* m-beginners-kouza-check-list */
  .m-beginners-kouza-check-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
  }
  .m-beginners-kouza-check-list > li {
    position: relative;
    margin-top: 0;
    padding-left: 30px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .m-beginners-kouza-check-list > li::before {
    content: '';
    display: block;
    position: absolute;
    top: 0.3em;
    left: 0;
    width: 18px;
    height: 11px;
    border-left: 4px solid #e74c3c;
    border-bottom: 5px solid #e74c3c;
    transform: rotate(-45deg);
  }
  .m-beginners-kouza-check-list > li + li {
    margin-top: 0.3em;
  }
  /* ----- m-beginners-kouza-hojin-choice-box ----- */
  .m-beginners-kouza-hojin-choice-box {
    position: relative;
    padding: 24px 28px 30px;
    background: #f4f9fb;
    border: 1px solid #dde0e5;
    border-radius: 5px;
  }
  .m-beginners-kouza-hojin-choice-box > *:first-child {
    margin-top: 0 !important;
  }
  .m-beginners-kouza-hojin-choice-box__balloon {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    text-align: center;
  }
  .m-beginners-kouza-hojin-choice-box__balloon__inner {
    display: inline-block;
    padding: 5px 28px;
    min-width: 361px;
    background: #e74c3c;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    font-weight: bold;
  }
  .m-beginners-kouza-hojin-choice-box__balloon__inner::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -11px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 11px 0 11px;
    border-color: #e74c3c transparent transparent transparent;
  }
  .m-beginners-kouza-hojin-choice-box__title {
    font-size: 2.4rem;
    text-align: center;
  }
  .m-beginners-kouza-hojin-choice-box__lead {
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
  }
  .m-beginners-kouza-hojin-choice-box__lead-v2{
    margin-top: 30px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
  }
  .m-beginners-kouza-hojin-choice-box__lead__highlight {
    color: #c00;
  }

  /* m-beginners-kouza-hojin-choice-box__button */
  .m-beginners-kouza-hojin-choice-box__button,
  .m-beginners-kouza-hojin-choice-box__button-v2,
  .m-beginners-kouza-hojin-choice-box__button-v3 {
    margin-top: 29px;
  }
  .m-beginners-kouza-hojin-choice-box__button .m-beginners-kouza-hojin-choice-box__button__type,
  .m-beginners-kouza-hojin-choice-box__button .m-beginners-kouza-hojin-choice-box__button__type--blank,
  .m-beginners-kouza-hojin-choice-box__button-v2 .m-beginners-kouza-hojin-choice-box__button-v2__type,
  .m-beginners-kouza-hojin-choice-box__button-v2 .m-beginners-kouza-hojin-choice-box__button-v2__type--blank {
    display: block;
    position: relative;
    width: 400px;
    margin: 0 auto;
    padding: 17px 40px;
    border-radius: 5px;
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .m-beginners-kouza-hojin-choice-box__button-v3 .m-beginners-kouza-hojin-choice-box__button-v3__type {
    display: block;
    position: relative;
    width: 100%;
    padding: 14px 40px;
    border: 4px solid #666666;
    border-radius: 3px;
    background-color: #fff;
    color: #666666;
    font-size: 2.0rem;
    font-weight: 700;
    text-align: center;
  }
  .m-beginners-kouza-hojin-choice-box__button__type,
  .m-beginners-kouza-hojin-choice-box__button__type--blank {
    background: #a72424;
  }
  .m-beginners-kouza-hojin-choice-box__button__type:hover,
  .m-beginners-kouza-hojin-choice-box__button__type--blank:hover {
    background: #cf3030;
  }
  .m-beginners-kouza-hojin-choice-box__button-v2__type,
  .m-beginners-kouza-hojin-choice-box__button-v2__type--blank {
    background: #c7890f;
  }
  .m-beginners-kouza-hojin-choice-box__button-v2__type:hover,
  .m-beginners-kouza-hojin-choice-box__button-v2__type--blank:hover {
    background: #df9a11;
  }
  .m-beginners-kouza-hojin-choice-box__button__type--blank::after,
  .m-beginners-kouza-hojin-choice-box__button-v2__type--blank::after {
    content: '';
    position: absolute;
    right: 22px;
    top: calc(50% - 7px);
    display: block;
    width: 15px;
    height: 14px;
    background: url("/app-files/img/sprite/icon.svg#blank2-usage");
  }
  .m-beginners-kouza-hojin-choice-box__button__label,
  .m-beginners-kouza-hojin-choice-box__button-v2__label,
  .m-beginners-kouza-hojin-choice-box__button-v3__label {
    display: inline-block;
  }

  /* m-beginners-kouza-hojin-choice-box__service */
  .m-beginners-kouza-hojin-choice-box__service {
    margin-top: 25px;
    padding: 25px 30px;
    background: #fff;
  }
  .m-beginners-kouza-hojin-choice-box__service > *:first-child {
    margin-top: 0 !important;
  }
  .m-beginners-kouza-hojin-choice-box__service__title {
    margin-top: 1em;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
  }
  .m-beginners-kouza-hojin-choice-box__service__list,
  .m-beginners-kouza-hojin-choice-box__service__list-v2 {
    margin: 1em 0 0;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  .m-beginners-kouza-hojin-choice-box__service__list > li,
  .m-beginners-kouza-hojin-choice-box__service__list-v2 > li {
    list-style: none;
  }
  .m-beginners-kouza-hojin-choice-box__service__list > li {
    width: calc((100% - 56px) / 9);
    margin-right: 7px;
    margin-bottom: 7px;
  }
  .m-beginners-kouza-hojin-choice-box__service__list-v2 > li {
    width: 48px;
    margin-right: 12px;
  }
  .m-beginners-kouza-hojin-choice-box__service__list > li:nth-child(9n),
  .m-beginners-kouza-hojin-choice-box__service__list-v2 > li:last-child {
    margin-right: 0;
  }

  .m-beginners-kouza-hojin-choice-box__service__add {
    padding-top: 35px;
    position: relative;
  }
  .m-beginners-kouza-hojin-choice-box__service__add::before,
  .m-beginners-kouza-hojin-choice-box__service__add::after {
    content: '';
    position: absolute;
    top: 12px;
    left: calc(50% - 10px);
    width: 20px;
    height: 3px;
    display: block;
    background: #465059;
  }
  .m-beginners-kouza-hojin-choice-box__service__add::before{
    transform: rotate(90deg);
  }
  .m-beginners-kouza-hojin-choice-box__service__add__inner {
    padding: 8px;
    background: #f3f4f6;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
  }

  /*m-beginners-kouza-hojin-choice-box-list-wrap */
  .m-beginners-kouza-hojin-choice-box-list-wrap {
    margin-top: 1em;
  }

  /* m-beginners-kouza-hojin-choice-box__case */
  .m-beginners-kouza-hojin-choice-box__case {
    margin-top: 25px;
    border: 1px solid #dde0e5;
  }
  .m-beginners-kouza-hojin-choice-box__case__head {
    position: relative;
    padding: 10px 10px;
    background: #024f95;
    color: #fff;
    font-weight: bold;
    text-align: center;
  }
  .m-beginners-kouza-hojin-choice-box__case__head::after {
    content: '';
    position: absolute;
    display: block;
    bottom: -8px;
    left: calc(50% - 8px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #024f95 transparent transparent transparent;

  }
  .m-beginners-kouza-hojin-choice-box__case__body {
    padding: 18px 10px;
    background: #fff;
  }
  .m-beginners-kouza-hojin-choice-box__case__body > *:first-child {
    margin-top: 0 !important;
  }
  .m-beginners-kouza-order-list {
    margin: 1.2em 0 0 0;
    padding: 0;
    list-style: none;
  }
  .m-beginners-kouza-order-list > li {
    position: relative;
    padding-left: 1.8em;
  }
  .m-beginners-kouza-order-list > li + li {
    margin-top: 0.5em;
  }
  .m-beginners-kouza-order-list__mark {
    position: absolute;
    top: 0;
    left: 0;
    color: #024f95;
  }
  .m-entry_hojin-heading{
    margin: 4em 0 0;
  }
  .m-entry_hojin-heading + * {
    margin-top: 27px;
  }
  .m-entry_hojin-heading__inner{
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 1.8em;
    box-shadow: 0px -1px 0px 0px #dde0e5 inset;
  }
  .m-entry_hojin-heading__title{
    margin: 0;
    line-height: 1.4;
    font-size: 3.0rem;
    font-weight: normal;
  }
  .m-entry_hojin-heading__balloon{
    margin: 0 0 0 18px;
    display: inline-block;
    padding: 5px 19px;
    background: #e74c3c;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    font-weight: bold;
  }
  .m-entry_hojin-step-list{
    display: flex;
    margin: 30px 0 0;
  }
  .m-entry_hojin-step-list__item{
    width: 100%;
    text-align: center;
  }
  .m-entry_hojin-step-list > .m-entry_hojin-step-list__item {
    margin-left: 35px;
  }
  .m-entry_hojin-step-list > .m-entry_hojin-step-list__item:first-child {
    margin-left: 0;
  }
  .m-entry_hojin-step__head{
    margin: 0;
    padding: 15px 10px 20px;
    font-size: 1.6rem;
    font-weight: normal;
    background-color: #f3f4f6;
  }
  .m-entry_hojin-step__prefix{
    display: block;
    margin: 0 auto;
    padding: 3px 0 1px;
    width: 150px;
    color: #fff;
    border-radius: 30px;
    background-color: #465059;
  }
  .m-entry_hojin-step__title{
    display: block;
    margin-top: 13px;
    line-height: 1.5;
    font-size: 2.2rem;
    font-weight: bold;
  }
  .m-entry_hojin-step__body{
    margin-top: 20px;
  }
  .m-entry_hojin-step__image{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 67px;
  }
  .m-entry_hojin-step__text{
    margin: 22px 0 0;
  }
}


@media only screen and (max-width: 767.98px) {
.p-entry_btn {
  max-width: 260px;
  padding-top: 12px;
  /* font-size: 2rem; */
  /* padding: 16px 16px 12px; */
}

/* m-beginners-kouza-choice */
.m-beginners-kouza-choice {}
.m-beginners-kouza-choice > *:first-child {
  margin-top: 0 !important;
}

/* ----- m-beginners-kouza-tab ----- */
.m-beginners-kouza-choice-tab {
  margin-top: 10px;
}

.m-beginners-kouza-choice-tab__head {
  padding-bottom: 10px;
}
.m-beginners-kouza-choice-tab__list {
  margin: 0;
  padding: 0;
  display: flex;
}
.m-beginners-kouza-choice-tab__list > li {
  list-style: none;
  width: 100%;
}
.m-beginners-kouza-choice-tab__list > li:first-child {
}
.m-beginners-kouza-choice-tab__list > li:last-child {
}
.m-beginners-kouza-choice-tab__button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  line-height: 1.4;
  padding: 10px 30px;
  border-top: 1px solid #dde0e5;
  border-bottom: 1px solid #dde0e5;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.m-beginners-kouza-choice-tab__list > li.is-current .m-beginners-kouza-choice-tab__button {
  background: #024f95;
  color: #fff;
  border-color: #024f95;
}
.m-beginners-kouza-choice-tab__list > li.is-current .m-beginners-kouza-choice-tab__button::after {
  content: '';
  display: block;
  position: absolute;
  left: calc(50% - 5px);
  bottom: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #024f95 transparent transparent transparent;
}
.m-beginners-kouza-choice-tab__list > li:first-child .m-beginners-kouza-choice-tab__button {
  border-radius: 5px 0 0 5px;
  border-left: 1px solid #dde0e5;
}
.m-beginners-kouza-choice-tab__list > li:last-child .m-beginners-kouza-choice-tab__button {
  border-radius: 0 5px 5px 0;
  border-right: 1px solid #dde0e5;
}
.m-beginners-kouza-choice-tab__label {
  font-weight: bold;
}
.m-beginners-kouza-choice-tab__balloon {
  position: absolute;
  top: -34px;
  right: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  line-height: 1.4;
  background: #e74c3c;
  border-radius: 100%;
  color: #fff;
  font-weight: bold;
}
.m-beginners-kouza-choice-tab__balloon::after {
  content: '';
  position: absolute;
  left: 10px;
  bottom: -4px;
  display: block;
  transform: rotate(40deg);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 6px 0 3px;
  border-color: #e74d3c transparent transparent transparent;

}
/* ----- m-beginners-kouza-choice-layout ----- */
.m-beginners-kouza-choice-layout {
  margin-top: 10px;
}

/* ----- m-beginners-kouza-choice-box ----- */
.m-beginners-kouza-choice-box {
  position: relative;
  margin: 0 -15px;
  padding: 15px 15px 30px;
  background: #f4f9fb;
  border-top: 1px solid #dde0e5;
  border-bottom: 1px solid #dde0e5;
}
.m-beginners-kouza-choice-box > *:first-child {
  margin-top: 0 !important;
}
.m-beginners-kouza-choice-box__balloon {
  display: none;
}
.m-beginners-kouza-choice-box__title {
  font-size: 1.7rem;
  text-align: center;
}
.m-beginners-kouza-choice-box__lead {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
}
.m-beginners-kouza-choice-box__lead-v2{
  margin-top: 1em;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.m-beginners-kouza-choice-box__lead__highlight {
  color: #c00;
}

/* m-beginners-kouza-choice-box__button */
.m-beginners-kouza-choice-box__button,
.m-beginners-kouza-choice-box__button-v2 {
  margin-top: 1em;
}
.m-beginners-kouza-choice-box__button .m-beginners-kouza-choice-box__button__type,
.m-beginners-kouza-choice-box__button .m-beginners-kouza-choice-box__button__type--blank,
.m-beginners-kouza-choice-box__button-v2 .m-beginners-kouza-choice-box__button-v2__type,
.m-beginners-kouza-choice-box__button-v2 .m-beginners-kouza-choice-box__button-v2__type--blank {
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 15px 30px;
  border-radius: 5px;
  color: #fff;
  font-size: 1.9rem;
  text-align: center;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.m-beginners-kouza-choice-box__button__type,
.m-beginners-kouza-choice-box__button__type--blank {
  background: #a72424;
}
.m-beginners-kouza-choice-box__button-v2__type,
.m-beginners-kouza-choice-box__button-v2__type--blank {
  background: #c7890f;
}
.m-beginners-kouza-choice-box__button__type--blank::after,
.m-beginners-kouza-choice-box__button-v2__type--blank::after {
  content: '';
  position: absolute;
  right: 14px;
  top: calc(50% - 7px);
  display: block;
  width: 15px;
  height: 14px;
  background: url("/app-files/img/sprite/icon.svg#blank2-usage");
}
.m-beginners-kouza-choice-box__button__label,
.m-beginners-kouza-choice-box__button-v2__label {
  display: inline-block;
}

/* m-beginners-kouza-choice-box__service */
.m-beginners-kouza-choice-box__service {
  margin-top: 20px;
  padding: 15px 20px;
  background: #fff;
}
.m-beginners-kouza-choice-box__service > *:first-child {
  margin-top: 0 !important;
}
.m-beginners-kouza-choice-box__service__title {
  margin-top: 1em;
  font-weight: bold;
  text-align: center;
}
.m-beginners-kouza-choice-box__service__list,
.m-beginners-kouza-choice-box__service__list-v2 {
  margin: .8em 0 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.m-beginners-kouza-choice-box__service__list > li,
.m-beginners-kouza-choice-box__service__list-v2 > li {
  list-style: none;
}
.m-beginners-kouza-choice-box__service__list > li {
  width: calc((100% - 56px) / 9 - 0.1px);
  margin-right: 7px;
  margin-bottom: 7px;
}
.m-beginners-kouza-choice-box__service__list-v2 > li {
  width: 32px;
  margin-right: 8px;
}
.m-beginners-kouza-choice-box__service__list > li:nth-child(9n),
.m-beginners-kouza-choice-box__service__list-v2 > li:last-child {
  margin-right: 0;
}

.m-beginners-kouza-choice-box__service__add {
  padding-top: 20px;
  position: relative;
}
.m-beginners-kouza-choice-box__service__add::before,
.m-beginners-kouza-choice-box__service__add::after {
  content: '';
  position: absolute;
  top: 6px;
  left: calc(50% - 6px);
  width: 12px;
  height: 2px;
  display: block;
  background: #465059;
}
.m-beginners-kouza-choice-box__service__add::before{
  transform: rotate(90deg);
}
.m-beginners-kouza-choice-box__service__add__inner {
  padding: 6px 8px;
  background: #f3f4f6;
  font-weight: bold;
  text-align: center;
}

/*m-beginners-kouza-choice-box-list-wrap */
.m-beginners-kouza-choice-box-list-wrap {
  margin-top: 1em;
}

/* m-beginners-kouza-choice-box__case */
.m-beginners-kouza-choice-box__case {
  margin-top: 16px;
  border: 1px solid #dde0e5;
}
.m-beginners-kouza-choice-box__case__head {
  position: relative;
  padding: 10px 10px 5px;
  background: #024f95;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.m-beginners-kouza-choice-box__case__head::after {
  content: '';
  position: absolute;
  display: block;
  bottom: -6px;
  left: calc(50% - 6px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #024f95 transparent transparent transparent;

}
.m-beginners-kouza-choice-box__case__body {
  padding: 20px 10px;
  background: #fff;
}
.m-beginners-kouza-choice-box__case__body > *:first-child {
  margin-top: 0 !important;
}


/* ----- m-beginners-kouza-service-list ----- */
.m-beginners-kouza-service-list {
  margin: 10px 0 30px;
  padding: 0;
  display: flex;
  justify-content: center;
}
.m-beginners-kouza-service-list > li {
  list-style: none;
  width: calc((100% - 64px) / 9 - 0.1px);
  margin-right: 8px;
}
.m-beginners-kouza-service-list > li:last-child {
  margin-right: 0;
}

/* ----- m-beginners-kouza-lead ----- */
.m-beginners-kouza-lead {
  margin: 1em 0 0;
}

/* ----- m-beginners-kouza-infoBox ----- */
.m-beginners-kouza-infoBox {
  margin-top: 1.5em;
}
.m-beginners-kouza-infoBox__inner {
  padding: 18px 20px;
  background: #f4f9fb;
  border: 1px solid #dde0e5;
  border-radius: 5px;
}
.m-beginners-kouza-infoBox__inner > *:first-child {
  margin-top: 0 !important;
}

.m-beginners-kouza-infoBox__lead {
  margin: 0;
  text-align: center;
}
.m-beginners-kouza-infoBox__button {
  margin-top: 1em;
}
.m-beginners-kouza-infoBox__button .m-beginners-kouza-infoBox__button__type,
.m-beginners-kouza-infoBox__button .m-beginners-kouza-infoBox__button__type--blank {
  display: block;
  position: relative;
  padding: 15px 30px;
  border-radius: 5px;
  color: #fff;
  font-size: 1.9rem;
  text-align: center;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.m-beginners-kouza-infoBox__button__type,
.m-beginners-kouza-infoBox__button__type--blank {
  background: #024f95;
}
.m-beginners-kouza-infoBox__button__type--blank::after {
  content: '';
  position: absolute;
  right: 14px;
  top: calc(50% - 7px);
  display: block;
  width: 15px;
  height: 14px;
  background: url("/app-files/img/sprite/icon.svg#blank2-usage");
}
.m-beginners-kouza-infoBox__button__label {
  display: inline-block;
}
.m-beginners-kouza-infoBox__button + [class^="m-list-wrap"] {
  margin-top: 1em !important;
}
/* ----- m-beginners-kouza-flow-heading1 ----- */
.m-beginners-kouza-flow-heading1 {
  margin-left: 0;
  margin-right: 0;
  background-color: #f4f9fb;
  box-shadow: inset 0px 5px 5px -5px rgb(6 0 1 / 10%)
}
.m-beginners-kouza-flow-heading1__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.2em 15px;
  margin: 0 auto;
}
.m-beginners-kouza-flow-heading1__title {
  margin: 0;
  line-height: 1.4;
  font-size: 2.6rem;
  font-weight: 700;
}
.m-beginners-kouza-flow-heading1__title__sub {
  margin-top: 4px;
  display: block;
  font-size: 1.7rem;
}
.m-beginners-kouza-flow-heading1__catch {
  position: relative;
  width: 72px;
  flex-basis: 72px;
  flex-shrink: 0;
  height: 72px;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0 4px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 100%;
}
.m-beginners-kouza-flow-heading1__catch__label {
  font-size: 1.0rem;
  font-weight: bold;
  text-align: center;
}
.m-beginners-kouza-flow-heading1__catch__label__highlight {
  display: block;
  margin-top: 2px;
  color: #c00;
  font-size: 1.6rem;
}
.m-beginners-kouza-flow-heading1__catch__point {
  display: none;
}

/* ----- m-beginners-kouza-flow-step ----- */
.m-beginners-kouza-flow-step {
  margin-top: 40px;
  padding: 10px 14px;
  border-radius: 5px;
  background: #f3f4f6;
}
.m-heading2 + section .m-beginners-kouza-flow-step:first-child {
  margin-top: -10px;
}

.m-beginners-kouza-flow-step__heading {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-weight: normal;
}
.m-beginners-kouza-flow-step__heading__badge {
  flex-basis: 75px;
  flex-shrink: 0;
  padding: 2px 8px 0;
  margin-top: 2px;
  margin-right: 12px;
  background: #465059;
  border-radius: 50px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}
.m-beginners-kouza-flow-step__heading__label {
  font-size: 1.7rem;
  font-weight: bold;
}

/* ----- m-beginners-kouza-flow-layout ----- */
.m-beginners-kouza-flow-layout {
  margin-top: 15px;
}
.m-beginners-kouza-flow-layout__head {
  text-align: center;
}
.m-beginners-kouza-flow-layout__head__img {
  width: 65px;
}
.m-beginners-kouza-flow-layout__head__img-v2 {
  width: 35px;
}
.m-beginners-kouza-flow-layout__head__img-v3 {
  width: 35px;
}
.m-beginners-kouza-flow-layout__head__img-v4 {
  width: 43px;
}
.m-beginners-kouza-flow-layout__head__img-v5 {
  width: 56px;
}

.m-beginners-kouza-flow-layout__body {
  margin-top: 15px;
}
.m-beginners-kouza-flow-layout__body > *:first-child,
.m-beginners-kouza-flow-layout__body > section:first-child > *:first-child {
  margin-top: 0 !important;
}

/* ----- m-beginners-kouza-flow-inquiry ----- */
.m-beginners-kouza-flow-inquiry {
  margin: 1.2em 0 0;
  border-radius: 3px;
  background-color: #f4f9fb;
  box-shadow: 0px 0px 0px 1px #dde0e5 inset;
}
.m-beginners-kouza-flow-inquiry__box {
  padding: 1.4em 1.4em 1.0em;
}
.m-beginners-kouza-flow-inquiry__title {
  margin: 0;
  line-height: 1.4;
  font-size: 1.7rem;
  font-weight: 400;
  text-align: center;
}
.m-beginners-kouza-flow-inquiry__detail {
}

/* m-beginners-kouza-flow-inquiry-button */
.m-beginners-kouza-flow-inquiry-button-wrap {
  margin: 1em 0 0 0;
}
.m-beginners-kouza-flow-inquiry-button__ballon {
  margin-top: 18px;
  padding-bottom: 24px;
  text-align: center;
}
.m-beginners-kouza-flow-inquiry-button__ballon__inner {
  position: relative;
  display: inline-block;
  padding: 5px 22px;
  background: #e74c3c;
  border-radius: 20px;
  color: #fff;
}
.m-beginners-kouza-flow-inquiry-button__ballon__inner::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -11px;
  left: calc(50% - 11px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 0 11px;
  border-color: #e74c3c transparent transparent transparent;
}

.m-beginners-kouza-flow-inquiry-button__ballon + * {
  margin-top: 0 !important;
}
.m-beginners-kouza-flow-inquiry-button {
}
.m-beginners-kouza-flow-inquiry-button__type,
.m-beginners-kouza-flow-inquiry-button__type--blank  {
  position: relative;
  display: flex;
  padding: .8636em 2.1em;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #a72424;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  color: #fff !important  ;
  line-height: 1.4;
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
}
.m-beginners-kouza-flow-inquiry-button__type--blank::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  right: 22px;
  background: url("/app-files/img/sprite/icon.svg#blank2-usage") no-repeat center;
}

.m-beginners-kouza-flow-inquiry-button__label {}

/* m-beginners-kouza-flow-inquiry-case */
.m-beginners-kouza-flow-inquiry-case {
  margin-top: 16px;
}
.m-beginners-kouza-flow-inquiry-case__head {
  font-weight: bold;
  text-align: center;
}
.m-beginners-kouza-flow-inquiry-case__head > *:first-child {
  margin-top: 0 !important;
}
.m-beginners-kouza-flow-inquiry-case__body {
  margin-top: 15px;
}
.m-beginners-kouza-flow-inquiry-case__body > *:first-child{
  margin-top: 0 !important;
}
 .m-entry_hojin-column {
    margin-top: 42px;
  }
  .m-entry_hojin-column__item > :first-child,
  .m-entry_hojin-column__item > section:first-child > :first-child {
    margin-top: 0 !important;
  }
  .m-entry_hojin-column__item + .m-entry_hojin-column__item {
    margin-top: 30px;
  }
  /* m-beginners-kouza-check-list */
  .m-beginners-kouza-check-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
  }
  .m-beginners-kouza-check-list > li {
    position: relative;
    margin-top: 0;
    padding-left: 32px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .m-beginners-kouza-check-list > li::before {
    content: '';
    display: block;
    position: absolute;
    top: 0.3em;
    left: 0;
    width: 18px;
    height: 11px;
    border-left: 4px solid #e74c3c;
    border-bottom: 5px solid #e74c3c;
    transform: rotate(-45deg);
  }
  .m-beginners-kouza-check-list > li + li {
    margin-top: 0.4em;
  }
  /* ----- m-beginners-kouza-hojin-choice-box ----- */
  .m-beginners-kouza-hojin-choice-box {
    position: relative;
    margin: 0 -15px;
    padding: 21px 15px 20px;
    background: #f4f9fb;
    border-top: 1px solid #dde0e5;
    border-bottom: 1px solid #dde0e5;
  }
  .m-beginners-kouza-hojin-choice-box > *:first-child {
    margin-top: 0 !important;
  }
  .m-beginners-kouza-hojin-choice-box__balloon {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    text-align: center;
  }
  .m-beginners-kouza-hojin-choice-box__balloon__inner {
    display: inline-block;
    padding: 5px 14px;
    background: #e74c3c;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    font-weight: bold;
  }
  .m-beginners-kouza-hojin-choice-box__balloon__inner::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -11px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 11px 0 11px;
    border-color: #e74c3c transparent transparent transparent;
  }
  .m-beginners-kouza-hojin-choice-box__title {
    font-size: 1.7rem;
    text-align: center;
  }
  .m-beginners-kouza-hojin-choice-box__lead {
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
  }
  .m-beginners-kouza-hojin-choice-box__lead-v2{
    margin-top: 1em;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
  }
  .m-beginners-kouza-hojin-choice-box__lead__highlight {
    color: #c00;
  }

  /* m-beginners-kouza-hojin-choice-box__button */
  .m-beginners-kouza-hojin-choice-box__button,
  .m-beginners-kouza-hojin-choice-box__button-v2,
  .m-beginners-kouza-hojin-choice-box__button-v3 {
    margin-top: 1.6em;
  }
  .m-beginners-kouza-hojin-choice-box__button .m-beginners-kouza-hojin-choice-box__button__type,
  .m-beginners-kouza-hojin-choice-box__button .m-beginners-kouza-hojin-choice-box__button__type--blank,
  .m-beginners-kouza-hojin-choice-box__button-v2 .m-beginners-kouza-hojin-choice-box__button-v2__type,
  .m-beginners-kouza-hojin-choice-box__button-v2 .m-beginners-kouza-hojin-choice-box__button-v2__type--blank {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 15px 30px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.9rem;
    text-align: center;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .m-beginners-kouza-hojin-choice-box__button-v3 .m-beginners-kouza-hojin-choice-box__button-v3__type {
    display: block;
    position: relative;
    width: 100%;
    padding: 17px 30px;
    border: 3px solid #666666;
    border-radius: 3px;
    background-color: #fff;
    color: #666666;
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
  }
  .m-beginners-kouza-hojin-choice-box__button__type,
  .m-beginners-kouza-hojin-choice-box__button__type--blank {
    background: #a72424;
  }
  .m-beginners-kouza-hojin-choice-box__button-v2__type,
  .m-beginners-kouza-hojin-choice-box__button-v2__type--blank {
    background: #c7890f;
  }
  .m-beginners-kouza-hojin-choice-box__button__type--blank::after,
  .m-beginners-kouza-hojin-choice-box__button-v2__type--blank::after {
    content: '';
    position: absolute;
    right: 14px;
    top: calc(50% - 7px);
    display: block;
    width: 15px;
    height: 14px;
    background: url("/app-files/img/sprite/icon.svg#blank2-usage");
  }
  .m-beginners-kouza-hojin-choice-box__button__label,
  .m-beginners-kouza-hojin-choice-box__button-v2__label,
  .m-beginners-kouza-hojin-choice-box__button-v3__label {
    display: inline-block;
    font-weight: bold;
  }

  /* m-beginners-kouza-hojin-choice-box__service */
  .m-beginners-kouza-hojin-choice-box__service {
    margin-top: 20px;
    padding: 15px 20px;
    background: #fff;
  }
  .m-beginners-kouza-hojin-choice-box__service > *:first-child {
    margin-top: 0 !important;
  }
  .m-beginners-kouza-hojin-choice-box__service__title {
    margin-top: 1em;
    font-weight: bold;
    text-align: center;
  }
  .m-beginners-kouza-hojin-choice-box__service__list,
  .m-beginners-kouza-hojin-choice-box__service__list-v2 {
    margin: 0.6em 0 0;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  .m-beginners-kouza-hojin-choice-box__service__list > li,
  .m-beginners-kouza-hojin-choice-box__service__list-v2 > li {
    list-style: none;
  }
  .m-beginners-kouza-hojin-choice-box__service__list > li {
    width: calc((100% - 56px) / 9);
    margin-right: 7px;
    margin-bottom: 7px;
  }
  .m-beginners-kouza-hojin-choice-box__service__list-v2 > li {
    width: 32px;
    margin-right: 8px;
  }
  .m-beginners-kouza-hojin-choice-box__service__list > li:nth-child(9n),
  .m-beginners-kouza-hojin-choice-box__service__list-v2 > li:last-child {
    margin-right: 0;
  }

  .m-beginners-kouza-hojin-choice-box__service__add {
    padding-top: 20px;
    position: relative;
  }
  .m-beginners-kouza-hojin-choice-box__service__add::before,
  .m-beginners-kouza-hojin-choice-box__service__add::after {
    content: '';
    position: absolute;
    top: 6px;
    left: calc(50% - 6px);
    width: 12px;
    height: 2px;
    display: block;
    background: #465059;
  }
  .m-beginners-kouza-hojin-choice-box__service__add::before{
    transform: rotate(90deg);
  }
  .m-beginners-kouza-hojin-choice-box__service__add__inner {
    padding: 6px 8px;
    background: #f3f4f6;
    font-weight: bold;
    text-align: center;
  }

  /*m-beginners-kouza-hojin-choice-box-list-wrap */
  .m-beginners-kouza-hojin-choice-box-list-wrap {
    margin-top: 1em;
  }

  /* m-beginners-kouza-hojin-choice-box__case */
  .m-beginners-kouza-hojin-choice-box__case {
    margin-top: 16px;
    border: 1px solid #dde0e5;
  }
  .m-beginners-kouza-hojin-choice-box__case__head {
    position: relative;
    padding: 10px 10px 5px;
    background: #024f95;
    color: #fff;
    font-weight: bold;
    text-align: center;
  }
  .m-beginners-kouza-hojin-choice-box__case__head::after {
    content: '';
    position: absolute;
    display: block;
    bottom: -6px;
    left: calc(50% - 6px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #024f95 transparent transparent transparent;

  }
  .m-beginners-kouza-hojin-choice-box__case__body {
    padding: 20px 10px;
    background: #fff;
  }
  .m-beginners-kouza-hojin-choice-box__case__body > *:first-child {
    margin-top: 0 !important;
  }
  .m-beginners-kouza-order-list {
    margin: 0.8em 0 0 0;
    padding: 0;
    list-style: none;
  }
  .m-beginners-kouza-order-list > li {
    position: relative;
    padding-left: 1.8em;
  }
  .m-beginners-kouza-order-list > li + li {
    margin-top: 0.5em;
  }
  .m-beginners-kouza-order-list__mark {
    position: absolute;
    top: 0;
    left: 0;
    color: #024f95;
  }
  .m-entry_hojin-heading{
    margin: 3.3em 0 0;
  }
  .m-entry_hojin-heading + * {
    margin-top: 15px;
  }
  .m-entry_hojin-heading__inner{
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 0.8em;
    box-shadow: 0px -1px 0px 0px #dde0e5 inset;
  }
  .m-entry_hojin-heading__title{
    margin: 0;
    line-height: 1.4;
    font-size: 2.0rem;
    font-weight: normal;
  }
  .m-entry_hojin-heading__balloon{
    margin: 0 0 0 auto;
    display: inline-block;
    padding: 5px 14px;
    background: #e74c3c;
    border-radius: 50px;
    font-size: 1.2rem;
    text-align: center;
    color: #fff;
    font-weight: bold;
  }
  .m-entry_hojin-step-list{
    margin: 15px 0 0;
  }
  .m-entry_hojin-step-list__item{
    width: 100%;
  }
  .m-entry_hojin-step-list > .m-entry_hojin-step-list__item {
    margin-top: 23px;
  }
  .m-entry_hojin-step-list > .m-entry_hojin-step-list__item:first-child {
    margin-top: 0;
  }
  .m-entry_hojin-step__head{
    display: flex;
    align-items: center;
    margin: 0;
    padding: 13px 14px 13px;
    font-size: 1.2rem;
    font-weight: normal;
    background-color: #f3f4f6;
  }
  .m-entry_hojin-step__prefix{
    display: inline-block;
    margin: 0 11px 0 0;
    padding: 1px 3px;
    min-width: 75px;
    text-align: center;
    color: #fff;
    border-radius: 30px;
    background-color: #465059;
  }
  .m-entry_hojin-step__title{
    display: block;
    line-height: 1.4;
    font-size: 1.7rem;
    font-weight: bold;
  }
  .m-entry_hojin-step__body{
    display: flex;
    margin-top: 20px;
    padding-left: 20px;
  }
  .m-entry_hojin-step__image{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    width: 63px;
    height: 57px;
    text-align: center;
  }
  .m-entry_hojin-step__image--step-2 img{
    width: 36px;
  }
  .m-entry_hojin-step__image--step-3 img{
    width: 40px;
  }
  .m-entry_hojin-step__image--step-4 img{
    width: 43px;
  }
  .m-entry_hojin-step__image--step-5 img{
    width: 56px;
  }
  .m-entry_hojin-step__text{
    margin: 0;
  }

}






/* ------------------------------------------------------
 * Clearfix
------------------------------------------------------ */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* ------------------------------------------------------
 * Print
------------------------------------------------------ */
@media print {
  .m-beginners-kouza-flow-heading1 {
    width: auto;
    margin-left: auto;
  }
}
