@charset "UTF-8";
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
/* Button ================================== 
色味や装飾の指定にとどめる、縦横幅、フォントサイズなどは別途指定する */
.c-button {
  border-radius: 7px;
  display: inline-block;
  box-sizing: border-box;
  color: #ffffff;
  background: #3C3C3C;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  font-weight: normal;
  line-height: inherit;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-weight: normal;
  font-size: 14px;
  padding: 0.5em 1em;
}
@media screen and (min-width: 821px) {
  .c-button {
    font-size: 16px;
  }
}
.c-button.ext-alt {
  background: #B4B4B4;
}
.c-button.ext-cart {
  color: #ffffff;
  background: #53A96D;
}
.c-button.ext-sub {
  border: 1px solid #222;
  color: #222;
  background: #ffffff;
}
.c-button.is-disable {
  background: #B4B4B4;
  pointer-events: none;
  cursor: default;
  opacity: 0.7;
}
@media screen and (min-width: 821px) {
  .c-button:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

.c-table {
  border-collapse: collapse;
}
.c-table th, .c-table td {
  text-align: center;
  font-size: 16px;
  vertical-align: middle;
  padding: 0.7em 20px;
  box-sizing: border-box;
}
.c-table th {
  font-weight: bold;
  vertical-align: middle;
}
.c-table tr {
  border-bottom: 1px solid #e5e5e5;
}
.c-table tr:last-child {
  border-bottom: none;
}
.c-table thead {
  border-bottom: 1px solid #e5e5e5;
}
.c-table thead th {
  background: #F8F8F8;
}
.c-table.ext-odd tr:nth-child(odd) th, .c-table.ext-odd tr:nth-child(odd) td {
  background: #F8F8F8;
}
.c-table.ext-even tr:nth-child(even) th, .c-table.ext-even tr:nth-child(even) td {
  background: #F8F8F8;
}
.c-table.ext-vertical th, .c-table.ext-vertical td {
  border-right: 1px solid #e5e5e5;
}
.c-table.ext-vertical th:last-child, .c-table.ext-vertical td:last-child {
  border-right: none;
}
@media screen and (max-width: 820px) {
  .c-table th, .c-table td {
    font-size: 14px;
    padding: 0.7em 15px;
  }
}
.c-table .ext-left {
  text-align: left;
}
.c-table .ext-right {
  text-align: right;
}
.c-table .c-tooltip:after {
  vertical-align: middle;
  margin-top: -2px;
}
.c-table.ext-border {
  border-top: 1px solid #d1d1d1;
}
.c-table.ext-border tr {
  border-bottom: 1px solid #d1d1d1;
}
.c-table.ext-border th, .c-table.ext-border td {
  border-left: 1px solid #d1d1d1;
}
.c-table.ext-border th:first-child, .c-table.ext-border td:first-child {
  border-left: none;
}
.c-table.ext-border th:not(:last-child) {
  border-right: 1px solid #d1d1d1;
}
.c-table.ext-border tr.ext-alt th, .c-table.ext-border tr.ext-alt td {
  background: #ffffff;
}
.c-table.ext-border.ext-reverse th:nth-child(odd), .c-table.ext-border.ext-reverse td:nth-child(odd),
.c-table.ext-border.ext-reverse th:nth-child(even), .c-table.ext-border.ext-reverse td:nth-child(even), .c-table.ext-border:not(.ext-reverse) th:nth-child(odd), .c-table.ext-border:not(.ext-reverse) td:nth-child(odd),
.c-table.ext-border:not(.ext-reverse) th:nth-child(even), .c-table.ext-border:not(.ext-reverse) td:nth-child(even) {
  background: #ffffff;
}

.c-form {
  display: flex;
  flex-wrap: wrap;
}
.c-form.ext-follow {
  display: block;
}
.c-form.ext-follow .c-form__item {
  width: auto;
  display: inline-block;
  vertical-align: top;
}
.c-form__item {
  box-sizing: border-box;
  margin-right: 30px;
  margin-bottom: 20px;
  width: 100%;
}
.c-form__label {
  font-weight: bold;
  font-size: 13px;
  white-space: nowrap;
  display: block;
  margin-bottom: 4px;
}
.c-form__split {
  margin-right: 10px;
  display: inline-block;
}
.c-form__split:last-child {
  margin-right: 0;
}
@media screen and (max-width: 820px) {
  .c-form__split {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.c-form__require {
  font-size: 9px;
  color: #E35D54;
  margin-left: 0.5em;
  padding: 0.2em 0.4em;
  border: 1px solid #E35D54;
}
.c-form__note {
  font-size: 11px;
  opacity: 0.7;
  display: block;
  margin-top: 0.3em;
}
@media screen and (min-width: 821px) {
  .c-form.ext-double .c-form__item {
    width: calc(50% - 20px);
  }
  .c-form.ext-double .c-form__item:nth-child(2n) {
    margin-right: 0;
  }
  .c-form.ext-triple .c-form__item {
    width: calc(33.33% - 20px);
  }
  .c-form.ext-triple .c-form__item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 820px) {
  .c-form {
    flex-direction: column;
  }
  .c-form__item {
    margin-right: 0;
    width: 100%;
  }
  .c-form__item:last-child {
    margin-bottom: 0;
  }
}

.c-checkbox {
  cursor: pointer;
  display: inline-block;
}
.c-checkbox input {
  display: none;
}
.c-checkbox span {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.c-checkbox span:before {
  content: "";
  border: 1px solid #d1d1d1;
  border-radius: 7px;
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  text-align: center;
  margin-right: 0.5em;
  background-color: #F8F8F8;
  vertical-align: middle;
  flex-shrink: 0;
  flex-grow: 0;
}
.c-checkbox input:checked + span:before {
  background: #3C3C3C url(/svg/icn-check_mark.svg) no-repeat center center;
  background-size: contain;
}
.c-checkbox.is-disable {
  opacity: 0.7;
  pointer-events: none;
}

.c-radio {
  cursor: pointer;
  display: inline-block;
}
.c-radio input {
  display: none;
}
.c-radio span {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.c-radio span:before {
  content: "";
  border: 1px solid #d1d1d1;
  border-radius: 50%;
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  text-align: center;
  margin-right: 0.5em;
  background-color: #F8F8F8;
  vertical-align: middle;
}
.c-radio input:checked + span:before {
  background: #3C3C3C;
  background: #3C3C3C url(/svg/icn-check_mark.svg) no-repeat center center;
  background-size: contain;
}
.c-radio.is-disable {
  opacity: 0.7;
  pointer-events: none;
}

:not(span).c-select,
span.c-select select {
  -webkit-appearance: none;
  font-size: 16px;
  border: 1px solid #d1d1d1;
  border-radius: 20px;
  padding: 0.5em 20px;
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #222;
  cursor: pointer;
}
:not(span).c-select:focus,
span.c-select select:focus {
  outline: none;
}
:not(span).c-select[readonly],
span.c-select select[readonly] {
  border-color: #F8F8F8;
  background-color: #F8F8F8;
  pointer-events: none;
}

span.c-select {
  position: relative;
  display: inline-block;
}
span.c-select:after {
  content: "";
  display: block;
  right: 15px;
  top: 50%;
  margin-top: -5px;
  position: absolute;
  width: 10px;
  height: 10px;
  background: url(/images/matching/icn-pulldown.svg) no-repeat center center;
  pointer-events: none;
  background-size: contain;
}
span.c-select select {
  padding-right: 35px;
}

.c-input {
  -webkit-appearance: none;
  border: 1px solid #d1d1d1;
  padding: 0.5em 20px;
  border-radius: 20px;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
}
.c-input:focus {
  color: #222;
  border-color: #222;
}
.c-input.ext-right {
  text-align: right;
}
.c-input[readonly] {
  border-color: #F8F8F8;
  background-color: #F8F8F8;
}

.c-spinner .ui-spinner {
  border: none !important;
  padding: 0 44px;
  overflow: visible;
  display: inline-block;
  background: none;
}
.c-spinner .ui-spinner .ui-spinner-input {
  -webkit-appearance: none;
  border: 1px solid #d1d1d1;
  padding: 0.5em 20px;
  border-radius: 20px;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
  margin: 0;
  text-align: center;
  max-width: 120px;
  width: 100%;
  background: #ffffff;
}
.c-spinner .ui-spinner .ui-spinner-input:focus {
  color: #222;
  border-color: #222;
}
.c-spinner .ui-spinner .ui-spinner-input.ext-right {
  text-align: right;
}
.c-spinner .ui-spinner .ui-spinner-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  margin-top: -18px;
  background-color: #efefef;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  cursor: pointer;
  transition: opacity 0.4s;
  outline: none;
  border: none;
}
.c-spinner .ui-spinner .ui-spinner-button:hover {
  opacity: 0.7;
  transition: opacity 0s;
}
.c-spinner .ui-spinner .ui-spinner-button.ui-state-active {
  border: none;
  background-color: #3C3C3C !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  opacity: 1;
}
.c-spinner .ui-spinner .ui-spinner-down {
  left: 0;
  right: auto;
  background-image: url("/svg/form/icn-minus.svg");
}
.c-spinner .ui-spinner .ui-spinner-down.ui-state-active {
  background-image: url("/svg/form/icn-minus_w.svg");
}
.c-spinner .ui-spinner .ui-spinner-up {
  background-image: url("/svg/form/icn-plus.svg");
}
.c-spinner .ui-spinner .ui-spinner-up.ui-state-active {
  background-image: url("/svg/form/icn-plus_w.svg");
}
.c-spinner .ui-spinner .ui-button-text {
  display: none;
}

/*
/help/home/
ヘルプデスクセンター関係
===========================================*/
#wrapper {
  background: #fff;
}

.p-hdcenter {
  line-height: 1.3;
}

.detect-pc .p-hdcenter a:hover {
  text-decoration: underline;
}

.p-hdcenter__section {
  max-width: 1110px;
  padding: 0 30px;
  margin: 70px auto 0;
  box-sizing: border-box;
}

@media screen and (max-width: 820px) {
  .p-hdcenter__section {
    margin: 40px auto 0;
    padding: 0 20px;
  }
  .p-hdcenter__section:first-child {
    margin-top: 90px;
  }
}
.p-hdcenter__inner {
  max-width: 1110px;
  margin: 0 auto 0;
  padding: 0 30px;
  box-sizing: border-box;
}

@media screen and (max-width: 820px) {
  .p-hdcenter__inner {
    padding: 0 20px;
  }
}
.p-hdcenter__welcome h1 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

.p-hdcenter__welcome img {
  width: 50px;
  height: auto;
  display: block;
  margin: 20px auto 0;
}

@media screen and (max-width: 620px) {
  .p-hdcenter__welcome h1 {
    font-size: 20px;
  }
  .p-hdcenter__welcome img {
    width: 40px;
    margin: 16px auto 0;
  }
}
.p-hdcenter__login {
  text-align: center;
}

.p-hdcenter__login h2 {
  font-size: 24px;
  font-weight: bold;
}

.p-hdcenter__login h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 60px;
  text-align: center;
  line-height: 1.7em;
}

.p-hdcenter__note {
  margin-top: 32px;
  text-align: center;
  line-height: 1.5;
  font-size: 14px;
}

.p-hdcenter__login p span {
  font-size: 12px;
}

.p-hdcenter__action {
  margin-top: 32px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.p-hdcenter__action + .p-hdcenter__action {
  margin-top: 16px !important;
}
.p-hdcenter__action .p-hdcenter__button {
  flex-shrink: 1;
  padding: 0 16px;
  font-size: 16px;
  min-width: 240px;
}
.p-hdcenter__action .p-hdcenter__button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 820px) {
  .p-hdcenter__action .p-hdcenter__button {
    width: 100%;
    font-size: 13px;
  }
}

.p-hdcenter__action span {
  text-align: center;
  display: block;
}

.p-hdcenter__action span a {
  color: #F9504C;
  text-decoration: none;
  text-decoration: underline;
}
.p-hdcenter__action span a:hover {
  text-decoration: none;
}

.p-hdcenter__button {
  display: inline-block;
  min-width: 280px;
  background: #3C3C3C;
  color: #fff !important;
  height: 50px;
  line-height: 50px;
  text-decoration: none !important;
  text-align: center;
  padding: 0 30px;
  border-radius: 25px;
  font-size: 18px;
  margin-right: 20px;
  font-weight: bold;
  box-sizing: border-box;
}
.p-hdcenter__button.ext-contact {
  background-color: #53a96c;
}

@media screen and (max-width: 620px) {
  .p-hdcenter__login h2 {
    font-size: 18px;
  }
  .p-hdcenter__note {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.5;
  }
  .p-hdcenter__action {
    display: block;
    text-align: center;
  }
  .p-hdcenter__action span {
    font-size: 12px;
  }
  .p-hdcenter__button {
    display: block;
    margin-bottom: 10px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    margin-right: 0;
    min-width: 0;
  }
}
.p-hdcenter__tel {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 35px;
  text-align: left;
}

.p-hdcenter__tel h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.p-hdcenter__tel h2 + p {
  margin-top: 32px;
}

.p-hdcenter__tel h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 60px;
  text-align: center;
}
.p-hdcenter__tel h3:first-child {
  margin-top: 0;
}

.p-hdcenter__tel h4 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 30px;
}

.p-hdcenter__tel p {
  margin-top: 1em;
}

.p-hdcenter__tel p em {
  text-decoration: underline;
}

.p-hdcenter__tel a {
  color: #F9504C;
  text-decoration: underline;
}

.p-hdcenter__tel ul {
  margin-top: 1em;
}

.p-hdcenter__tel ul li {
  display: flex;
  align-items: flex-start;
}

.p-hdcenter__tel ul li * + * {
  margin-left: 0.8em;
}

.p-hdcenter__tel ul li + li {
  margin-top: 1em;
}

p.p-hdcenter__time {
  margin-top: 30px;
  font-size: 16px;
  text-align: center;
  line-height: 2;
}

.p-hdcenter__time br + span {
  margin-left: 0.8em;
}

.p-hdcenter__time span + span {
  margin-left: 0.8em;
}

@media screen and (max-width: 820px) {
  p.p-hdcenter__time {
    font-size: 14px;
  }
}
.p-hdcenter__extension {
  padding: 0.15em 1em;
  letter-spacing: 0.05em;
  height: 1.6em;
  background: #f8f8f8;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}

.p-hdcenter__annotation {
  font-size: 14px;
}

p.p-hdcenter__telnumber {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-top: 0.25em;
}

.p-hdcenter__telnumber + .p-hdcenter__annotation {
  text-align: center;
}

.p-hdcenter__form {
  margin-top: 30px;
  max-width: 720px;
}
.p-hdcenter__form .c-table {
  width: 100%;
}
.p-hdcenter__form .c-table td {
  text-align: left;
}
.p-hdcenter__form .c-table .c-checkbox span {
  white-space: normal;
  align-items: center;
}
.p-hdcenter__form .c-button {
  min-width: 280px;
  height: 50px;
  line-height: 50px;
  text-decoration: none !important;
  text-align: center;
  padding: 0 30px;
  border-radius: 25px;
  font-size: 18px;
  box-sizing: border-box;
}
@media screen and (max-width: 620px) {
  .p-hdcenter__form .c-button {
    display: block;
    margin-bottom: 10px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    margin-right: 0;
    min-width: 0;
  }
}
.p-hdcenter__form p {
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 820px) {
  .p-hdcenter__tel {
    font-size: 14px;
  }
  .p-hdcenter__tel h2 {
    font-size: 18px;
  }
  .p-hdcenter__tel h3,
  .p-hdcenter__login h3 {
    font-size: 16px;
  }
  .p-hdcenter__extension {
    font-size: 12px;
  }
  p.p-hdcenter__telnumber {
    font-size: 22px;
  }
  .p-hdcenter__telnumber a {
    pointer-events: all;
    text-decoration: underline;
  }
}
.p-hdcenter__faq {
  margin-top: 100px;
  padding-bottom: 80px;
  position: relative;
}

.p-hdcenter__faq:before {
  content: "";
  width: 100%;
  background: #f5f5f5;
  position: absolute;
  top: 150px;
  height: calc(100% - 150px);
}

.p-hdcenter__faq h2 {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 620px) {
  .p-hdcenter__faq {
    margin-top: 70px;
    padding-bottom: 20px;
  }
  .p-hdcenter__faq h2 {
    font-size: 18px;
  }
}
.p-hdcenter__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.p-hdcenter__list li {
  width: 23.5%;
  margin-left: 2%;
  margin-bottom: 40px;
  background: #fff;
  box-sizing: border-box;
  border-top: 1px solid #f5f5f5;
  border-left: 1px solid #f5f5f5;
  border-right: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  padding: 30px 15px 20px;
}

.p-hdcenter__list li:nth-child(4n+1) {
  margin-left: 0;
}

@media screen and (max-width: 820px) {
  .p-hdcenter__list li {
    width: 49%;
  }
  .p-hdcenter__list li:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 620px) {
  .p-hdcenter__list {
    margin-top: 20px;
  }
  .p-hdcenter__list li,
  .p-hdcenter__list li:nth-child(2n+1) {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.p-hdcenter__title {
  font-size: 18px;
  font-weight: bold;
  display: flex;
}

.p-hdcenter__title:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/svg/icn-popular_help.svg) no-repeat center center;
  background-size: contain;
  flex-shrink: 0;
  flex-grow: 0;
  display: block;
  margin-right: 8px;
  margin-top: 2px;
}

.p-hdcenter__text {
  margin-top: 1em;
  font-size: 14px;
}

.p-hdcenter__more {
  margin-top: 1em;
  text-align: right;
  font-size: 14px;
}

.p-hdcenter__more a {
  color: #F9504C;
  text-decoration: none;
}

@media screen and (max-width: 620px) {
  .p-hdcenter__title {
    font-size: 14px;
  }
  .p-hdcenter__text {
    font-size: 12px;
  }
  .p-hdcenter__more {
    font-size: 12px;
  }
}
/* ヘルプデスクセンター詳細記事
==============================*/
.p-hdcenter__article {
  margin: 70px auto;
  line-height: 1.6;
  max-width: 820px;
}

.p-hdcenter__article__back {
  margin-bottom: 20px;
  font-size: 16px;
}

.p-hdcenter__article__back:last-child {
  margin-top: 50px;
  margin-bottom: 0;
  text-align: center;
}

.p-hdcenter__article__back a {
  color: #F9504C;
}
.p-hdcenter__article__back a:hover {
  opacity: 0.7;
}

.p-hdcenter__article__back a:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  border-left: 1px solid #F9504C;
  border-top: 1px solid #F9504C;
  transform: rotate(-45deg);
  margin-right: 10px;
}

.p-hdcenter__article__back a.p-hdcenter__button:before {
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
}

@media screen and (max-width: 820px) {
  .p-hdcenter__article__back a.p-hdcenter__button {
    font-size: 15px;
  }
}

.p-hdcenter__article *.ext-center {
  text-align: center;
}

.p-hdcenter__article *.ext-right {
  text-align: right;
}

.p-hdcenter__article__body h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
}

.p-hdcenter__article__body h2 {
  font-size: 26px;
  font-weight: bold;
  margin-top: 50px;
}

.p-hdcenter__article__body h3 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 40px;
}

.p-hdcenter__article__body h4 {
  font-size: 22px;
  font-weight: bold;
  margin-top: 30px;
}

.p-hdcenter__article__body h5 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}

.p-hdcenter__article__body h6 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

.p-hdcenter__article__body p {
  font-size: 16px;
  margin-top: 20px;
}
.p-hdcenter__article__body p + p {
  margin-top: 0;
}

.p-hdcenter__article__body ul,
.p-hdcenter__article__body ol {
  font-size: 16px;
  margin: 30px auto;
  margin-left: 25px;
}

.p-hdcenter__article__body li {
  text-indent: -15px;
}

.p-hdcenter__article__body li:before {
  content: "・";
  display: inline-block;
  width: 15px;
  text-indent: 0;
}

.p-hdcenter__article__body li + li {
  margin-top: 0.5em;
}

.p-hdcenter__article__body strong {
  color: #F9504C;
  font-weight: bold;
}

.p-hdcenter__article__body b {
  font-weight: bold;
}

.p-hdcenter__article__body a {
  color: #F9504C;
  font-weight: bold;
}

.p-hdcenter__article__body img {
  max-width: 100%;
  height: auto;
}

.p-hdcenter__article__body table {
  margin: 30px auto;
  border-collapse: collapse;
  border-spacing: 0;
  box-sizing: border-box;
  border-right: 1px solid #efefef;
}

.p-hdcenter__article__body th {
  font-size: 14px;
  font-weight: bold;
  padding: 10px 15px;
  background-color: #efefef;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}

.p-hdcenter__article__body td {
  font-size: 16px;
  padding: 10px 15px;
  box-sizing: border-box;
  border-left: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}

.p-hdcenter__article__body th + td {
  border-left: 1px solid #fff;
}

.p-hdcenter__article__body th:first-child,
.p-hdcenter__article__body td:first-child {
  border-left: none;
}

.p-hdcenter__article__body iframe {
  max-width: 100%;
}

.p-hdcenter__article__body pre {
  background: #f5f5f5;
  padding: 30px 20px;
  margin: 30px auto;
  font-size: 14px;
}

.p-hdcenter__article__body pre > *:first-child {
  margin-top: 0;
}

.p-hdcenter__article__body pre > *:last-child {
  margin-bottom: 0;
}

.p-hdcenter__article__body blockquote {
  padding: 0 20px;
  border-left: 2px solid #F9504C;
  font-size: 14px;
}

@media screen and (max-width: 820px) {
  .p-hdcenter__article {
    margin: 20px auto 40px;
  }
  .p-hdcenter__article__body ul,
  .p-hdcenter__article__body ol {
    margin-left: 15px;
  }
  .p-hdcenter__article__body ul,
  .p-hdcenter__article__body ol,
  .p-hdcenter__article__body table {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .p-hdcenter__article__body h1 {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .p-hdcenter__article__body h2 {
    font-size: 18px;
    margin-top: 30px;
  }
  .p-hdcenter__article__body p,
  .p-hdcenter__article__body ul,
  .p-hdcenter__article__body ol {
    font-size: 14px;
  }
  .p-hdcenter__article__body th {
    font-size: 12px;
  }
  .p-hdcenter__article__body td {
    font-size: 14px;
  }
  .p-hdcenter__article__body pre {
    padding: 20px 15px;
    font-size: 14px;
  }
  .p-hdcenter__article__body blockquote {
    padding: 0 15px;
    font-size: 14px;
  }
  .p-hdcenter__article__back {
    font-size: 14px;
  }
  .p-hdcenter__article__back a:before {
    width: 8px;
    height: 8px;
    margin-right: 8px;
  }
  .p-hdcenter__article__back:last-child {
    margin-top: 40px;
  }
}
/* Utility ==============================*/
@media screen and (max-width: 820px) {
  .u-pc_only {
    display: none;
  }
}
@media screen and (min-width: 821px) {
  .u-sp_only {
    display: none;
  }
}
/* WEB-4493 */
.no_arrow:before {
  display: none !important;
}

#hd-loader {
  max-height: 32px;
  max-width: 32px;
  width: 32px;
  height: 32px;
  margin: 20% auto;
  display: block;
}

#hd-container {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #hd-container {
    padding: 0 15px;
    box-sizing: border-box;
  }
}
#hd-container .container-header {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  margin-bottom: 40px;
  background: #fafafa;
  border-radius: 20px;
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 820px) {
  #hd-container .container-header {
    margin-top: 70px;
    flex-direction: column;
    padding: 30px 15px;
    text-align: center;
  }
}
#hd-container .container-header:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top-color: #fafafa;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: -40px;
}
#hd-container .container-header img {
  width: 150px;
  height: auto;
  margin-right: 40px;
}
@media screen and (max-width: 820px) {
  #hd-container .container-header img {
    width: 100px;
    margin-right: 0;
    margin-bottom: 1em;
  }
}
#hd-container .container-header a {
  display: inline-block;
  font-size: 14px;
  margin-top: 3em;
  text-decoration: underline;
  color: #E35D54;
}
#hd-container .container-header a:hover {
  text-decoration: none;
}
@media screen and (max-width: 820px) {
  #hd-container .container-header a {
    margin-top: 2em;
  }
}
#hd-container .main-title {
  font-size: 32px;
  margin-top: 0;
  font-weight: bold;
}
@media screen and (max-width: 820px) {
  #hd-container .main-title {
    font-size: 24px;
  }
}
#hd-container .mini-title {
  margin-top: 0.5em;
  font-weight: normal;
  font-size: 18px;
  color: #787878;
}
@media screen and (max-width: 820px) {
  #hd-container .mini-title {
    font-size: 16px;
  }
}

#hd-selection {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
#hd-selection .list-label {
  font-weight: bold;
  font-size: 24px;
}
@media screen and (max-width: 820px) {
  #hd-selection .list-label {
    font-size: 18px;
  }
}

#hd-selector {
  margin-top: 2em;
}
@media screen and (max-width: 820px) {
  #hd-selector {
    margin-top: 1.5em;
  }
}
#hd-selector li + li {
  margin-top: 1em;
}
#hd-selector a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7em 1.4em;
  border: 2px solid #d1d1d1;
  border-radius: 7px;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 820px) {
  #hd-selector a {
    font-size: 16px;
  }
}
#hd-selector a:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(/svg/icn-arrow_banner_black.svg) no-repeat center center/contain;
}
#hd-selector a:hover {
  opacity: 0.7;
}

#hd-form {
  display: none;
}
#hd-form .list-label {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  font-weight: bold;
  font-size: 24px;
}
@media screen and (max-width: 820px) {
  #hd-form .list-label {
    font-size: 18px;
  }
}
#hd-form .list-label:first-child {
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 0.5em;
}
#hd-form .list-label span {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  text-decoration: underline;
  margin-bottom: 3em;
  cursor: pointer;
  color: #E35D54;
}
@media screen and (max-width: 820px) {
  #hd-form .list-label span {
    margin-bottom: 2em;
  }
}
#hd-form .list-label span:hover {
  text-decoration: none;
}
#hd-form .pan-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 1em 0;
  line-height: 1.6;
  font-size: 16px;
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 1em;
}
@media screen and (max-width: 820px) {
  #hd-form .pan-details {
    font-size: 14px;
  }
}
#hd-form .pan-details b {
  font-weight: bold;
  width: 20%;
  white-space: nowrap;
}
#hd-form .pan-details span {
  text-align: right;
}

#contact-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 2em;
}
@media screen and (max-width: 820px) {
  #contact-form {
    margin-top: 1em;
  }
}
#contact-form label {
  margin-top: 1.5em;
  font-size: 12px;
  margin-bottom: 0.5em;
  font-weight: bold;
}
#contact-form .c-input {
  width: 100%;
  box-sizing: border-box;
}
#contact-form textarea {
  min-height: 250px;
}
#contact-form label.file-msg {
  border: 2px dashed #CCC;
  font-size: 13px;
  padding: 10px 0px;
  width: 100%;
  text-align: center;
  display: block;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0;
}
#contact-form #hd-form label.file-msg:hover {
  background: #EAEAEA;
}
#contact-form .p-hdcenter__button {
  margin: 3em auto 0;
}
@media screen and (max-width: 820px) {
  #contact-form .p-hdcenter__button {
    margin: 2em auto 0;
    width: 100%;
    max-width: 250px;
  }
}

#hd-expired,
#hd-failure,
#hd-success {
  display: none;
}
@media screen and (max-width: 820px) {
  #hd-expired,
  #hd-failure,
  #hd-success {
    padding: 30px 15px;
  }
}
#hd-expired h3,
#hd-failure h3,
#hd-success h3 {
  font-weight: bold;
}
#hd-expired > div,
#hd-failure > div,
#hd-success > div {
  font-size: 16px;
  text-align: center;
}
#hd-expired > div > p,
#hd-failure > div > p,
#hd-success > div > p {
  margin-top: 30px;
}
#hd-expired > div img,
#hd-failure > div img,
#hd-success > div img {
  margin: 3em auto;
}
#hd-expired .c-button,
#hd-failure .c-button,
#hd-success .c-button {
  margin-top: 2em;
}
@media screen and (max-width: 820px) {
  #hd-expired .c-button,
  #hd-failure .c-button,
  #hd-success .c-button {
    width: 100%;
    box-sizing: border-box;
  }
}

.no_arrow:before {
  display: none !important;
}

.feedback-btn {
  border: 1.5px solid #CCC;
  border-radius: 36px;
  height: 36px;
  width: 36px;
  background: #FFF;
  padding: 2px 4px 1px 5px;
  outline: 0;
  cursor: pointer;
}

.feedback-btn:hover {
  border-color: #F9504C;
}

.p-faqs {
  position: relative;
}
.p-faqs__header {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
}
@media screen and (max-width: 820px) {
  .p-faqs__header {
    flex-direction: column;
    padding: 30px 15px;
  }
}
.p-faqs__header div {
  max-width: 480px;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .p-faqs__header div {
    display: flex;
    flex-direction: column;
  }
}
.p-faqs__header div h1 {
  text-align: left;
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 820px) {
  .p-faqs__header div h1 {
    font-size: 24px;
    text-align: center;
  }
}
.p-faqs__header div .search-box {
  max-width: 480px;
  width: 100%;
  margin-top: 2em;
}
@media screen and (max-width: 820px) {
  .p-faqs__header div .search-box {
    margin-top: 1em;
  }
}
.p-faqs__header div .c-input {
  max-width: 480px;
  width: 100%;
  box-sizing: border-box;
}
.p-faqs__header div > a {
  display: inline-block;
  font-size: 14px;
  margin-top: 3em;
  text-decoration: underline;
  color: #E35D54;
}
.p-faqs__header div > a:hover {
  text-decoration: none;
}
@media screen and (max-width: 820px) {
  .p-faqs__header div > a {
    margin: 2em auto 0;
  }
}
.p-faqs__housekun {
  width: 150px;
  height: auto;
  margin-right: 40px;
}
@media screen and (max-width: 820px) {
  .p-faqs__housekun {
    width: 100px;
    margin-right: 0;
    margin-bottom: 1em;
  }
}
.p-faqs .search-box {
  position: relative;
}
.p-faqs .search-box .loader {
  position: absolute;
  right: 8px;
  top: calc(50% - 12px);
  max-height: 24px !important;
  max-width: 24px !important;
  width: 24px !important;
  height: 24px !important;
}
.p-faqs .autocomplete-items {
  position: absolute;
  left: 20px;
  z-index: 100;
  width: calc(100% - 40px);
}
@media screen and (max-width: 820px) {
  .p-faqs .autocomplete-items {
    top: 100%;
  }
}
.p-faqs .autocomplete-items > div {
  font-size: 16px;
  display: block;
  box-sizing: border-box;
  padding: 0.5em 1em;
  background: #F8F8F8;
  border-radius: 7px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.01);
  cursor: pointer;
  border: 2px solid #efefef;
  margin-top: 0.2em;
}
.p-faqs .autocomplete-items > div:hover {
  background: #fafafa;
  transition: none;
}
.p-faqs .accordion-list {
  position: relative;
  padding: 56px 40px;
  background: #F8F8F8;
}
@media screen and (max-width: 820px) {
  .p-faqs .accordion-list {
    padding: 30px 15px;
  }
}
.p-faqs .accordion-list > li {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 7px 7px 0 0;
  font-size: 16px;
  color: #222;
  font-weight: bold;
  padding: 0.75em 15px;
  border-bottom: 1px solid #d1d1d1;
  background: #ffffff;
  border-bottom: none;
  padding-left: 15px;
  padding-right: 15px;
  cursor: pointer;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.4s, border-radius 0.4s;
  position: relative;
  border-radius: 7px;
}
@media screen and (min-width: 821px) {
  .p-faqs .accordion-list > li {
    font-size: 18px;
  }
}
@media screen and (min-width: 821px) {
  .p-faqs .accordion-list > li {
    padding: 0.75em 40px;
  }
}
@media screen and (min-width: 821px) {
  .p-faqs .accordion-list > li {
    padding: 1em 40px;
  }
}
.p-faqs .accordion-list > li > ul {
  margin-top: 1em;
  margin-left: 1em;
  display: none;
}
.p-faqs .accordion-list > li > ul li + li {
  margin-top: 0.6em;
}
.p-faqs .accordion-list > li > ul li a {
  font-size: 16px;
  display: block;
  box-sizing: border-box;
  padding: 0.5em 1em;
  background: #F8F8F8;
  border-radius: 7px;
  border: 2px solid #efefef;
}
.p-faqs .accordion-list > li > ul li a:hover {
  background: #fafafa;
  text-decoration: none;
  transition: none;
}
.p-faqs .accordion-list > li:not(.active):hover {
  opacity: 0.7;
}
.p-faqs .accordion-list > li h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 18px;
}
.p-faqs .accordion-list > li h3:after {
  content: "";
  border-radius: 9.5px;
  background: #3C3C3C url(/svg/form/icn-plus_w.svg) no-repeat center center/10px;
  color: #ffffff;
  width: 19px;
  height: 19px;
  display: inline-block;
  line-height: 19px;
  text-align: center;
  transition: transform 0.4s;
  margin-left: auto;
  font-size: 16px;
}
@media screen and (min-width: 821px) {
  .p-faqs .accordion-list > li h3:after {
    font-size: 18px;
  }
}
@media screen and (min-width: 821px) {
  .p-faqs .accordion-list > li h3:after {
    background: #3C3C3C url(/svg/form/icn-plus_w.svg) no-repeat center center/12px;
    border-radius: 12px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    vertical-align: middle;
  }
}
.p-faqs .accordion-list > li.active h3:after {
  content: "";
  background: #3C3C3C url(/svg/form/icn-minus_w.svg) no-repeat center center/10px;
  transform: rotate(360deg);
}
@media screen and (min-width: 821px) {
  .p-faqs .accordion-list > li.active h3:after {
    background: #3C3C3C url(/svg/form/icn-minus_w.svg) no-repeat center center/12px;
  }
}
.p-faqs .accordion-list > li + li {
  margin-top: 1em;
}

.p-hdcenter__still {
  margin-top: 60px;
  text-align: center;
}
.p-hdcenter__still strong {
  display: block;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 0.5em;
}
.p-hdcenter__still .p-hdcenter__button {
  margin-top: 1.5em;
  background-color: #53A96D;
}
.p-hdcenter__still .p-hdcenter__button:hover {
  opacity: 0.7;
  transition: none;
}