@charset "UTF-8";
body {
  color: #333;
}

.f_bold {
  font-family: "HondaGlobalFontJP-Bold", sans-serif;
  /* font-weight: bold; */
}

#mainnav li {
  border-bottom: unset;
}

/* contents
----------------------------------------- */
#main {
  margin-bottom: 135px;
  width: auto;
}

.container {
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 414px) {
  .container {
    margin-bottom: 0 !important;
  }
}

.kv {
  padding: 60px 10px 80px;
}
@media screen and (max-width: 414px) {
  .kv {
    padding: 0 10px 16px;
  }
}
.kv-header {
  font-size: 30px;
  margin-bottom: 48px;
}
@media screen and (max-width: 414px) {
  .kv-header {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.kv-visual:hover {
  opacity: 0.6;
}

.entry-area {
  padding: 120px 0;
  background-color: #EAEBEC;
}
@media screen and (max-width: 414px) {
  .entry-area {
    padding: 40px 0;
  }
}
.entry-area .register {
  padding-bottom: 120px;
  border-bottom: 1px solid #35363B;
}
@media screen and (max-width: 414px) {
  .entry-area .register {
    padding-bottom: 40px;
    margin: 0 10px;
  }
}
.entry-area .register__title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 414px) {
  .entry-area .register__title {
    font-size: 30px;
    margin-bottom: 8px;
  }
}
.entry-area .register__lead {
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 414px) {
  .entry-area .register__lead {
    padding: 0 26px;
  }
}
.entry-area .register__lead span {
  color: #CC0000;
}
.entry-area .register__txt {
  text-align: center;
  font-size: 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 414px) {
  .entry-area .register__txt {
    padding: 0 26px;
    margin-bottom: 32px;
  }
}
.entry-area .register__steps {
  display: flex;
  justify-content: space-between;
  height: 255px;
}
@media screen and (max-width: 414px) {
  .entry-area .register__steps {
    height: 100%;
    flex-direction: column;
    padding: 0 20px;
    gap: 44px;
  }
}
.entry-area .register__step {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 218px;
  position: relative;
}
@media screen and (max-width: 414px) {
  .entry-area .register__step:last-child {
    width: 100%;
  }
}
@media screen and (max-width: 414px) {
  .entry-area .register__step {
    width: 100%;
    height: 100%;
  }
}
.entry-area .register__step::after {
  content: "";
  background: url("../image/register-arrow.png") no-repeat center/cover;
  display: block;
  width: 18px;
  height: 25px;
  position: absolute;
  right: -28px;
}
@media screen and (max-width: 414px) {
  .entry-area .register__step::after {
    background: url("../image/register-arrow-sp.png") no-repeat center/cover;
    bottom: -30px;
    right: calc(50% - 14px);
    width: 32px;
    height: 20px;
  }
}
.entry-area .register__step:last-child::after {
  display: none;
}
.entry-area .register__notes {
  list-style: none;
  margin-top: 24px;
  font-size: 12px;
}
@media screen and (max-width: 414px) {
  .entry-area .register__notes {
    padding: 0 20px;
    font-size: 10px;
  }
}
.entry-area .register__notes li {
  text-indent: -14px;
  padding-left: 14px;
}
.entry-area .step {
  flex: 1;
  border: 2px solid #c00;
  border-radius: 4px;
  padding: 24px 16px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 15px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 414px) {
  .entry-area .step {
    padding: 24px 42px 0;
    gap: 24px;
  }
  .entry-area .step.step1 {
    padding: 24px 42px 40px;
  }
  .entry-area .step.step2 {
    padding: 24px 16px 20px;
  }
  .entry-area .step.step2 p {
    padding: 0 26px 16px;
  }
  .entry-area .step.step2 .step__img img {
    width: 100%;
  }
  .entry-area .step.step3 {
    padding: 24px 22px 33px;
  }
  .entry-area .step.step4 {
    padding: 24px 42px 73px;
  }
}
.entry-area .step__label {
  text-align: center;
  font-size: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c00;
  color: #CC0000;
  line-height: 1;
}
@media screen and (max-width: 414px) {
  .entry-area .step__label {
    width: 156px;
    margin: 0 auto;
    padding-bottom: 14px;
  }
}
.entry-area .step__label span {
  font-size: 38px;
  margin-left: 2px;
}
.entry-area .step__body {
  font-size: 16px;
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 414px) {
  .entry-area .step__body {
    font-size: 18px;
  }
}
.entry-area .step__body .link {
  color: #0077FF;
}
.entry-area .step__body .link:hover {
  text-decoration: underline;
}
.entry-area .step__body .pb16 {
  padding-bottom: 16px;
}
.entry-area .step__note {
  font-size: 12px;
  margin-top: 16px;
  text-align: left;
  text-indent: -14px;
  padding-left: 14px;
}
@media screen and (max-width: 414px) {
  .entry-area .portal {
    padding: 0 10px;
  }
}
.entry-area .portal__title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  padding-top: 120px;
}
@media screen and (max-width: 414px) {
  .entry-area .portal__title {
    padding-top: 54px;
    font-size: 30px;
    margin-bottom: 24px;
  }
}
.entry-area .portal__tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 80px;
}
@media screen and (max-width: 414px) {
  .entry-area .portal__tabs {
    flex-direction: column;
    margin-bottom: 40px;
    padding: 0 20px;
  }
}
.entry-area .tab {
  flex: 1;
  background: #333;
  color: #fff;
  border-radius: 40px;
  padding: 20px 0;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  height: 77px;
  box-sizing: border-box;
  position: relative;
}
.entry-area .tab:hover {
  opacity: 0.6;
}
@media screen and (max-width: 414px) {
  .entry-area .tab {
    text-align: left;
    padding-left: 24px;
  }
}
.entry-area .tab:nth-child(2) {
  padding: 6px 0;
}
@media screen and (max-width: 414px) {
  .entry-area .tab:nth-child(2) {
    padding: 8px 24px;
  }
}
.entry-area .tab::after {
  content: "";
  background: url("../image/tab-arrow.png") no-repeat center/cover;
  display: block;
  width: 16px;
  height: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
}
@media screen and (max-width: 414px) {
  .entry-area .tab::after {
    left: auto;
    right: 24px;
    bottom: 27px;
  }
}
.entry-area .panel {
  margin-bottom: 80px;
}
.entry-area .panel:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 414px) {
  .entry-area .panel {
    margin-bottom: 40px;
  }
}
.entry-area #tab1 .panel__heading {
  font-size: 24px;
  text-align: center;
  padding-bottom: 16px;
  position: relative;
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab1 .panel__heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.entry-area #tab1 .panel__heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #CC0000;
  bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.entry-area #tab1 .panel__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 96px 40px 84px;
  background-color: #fff;
  margin-bottom: 24px;
  border-radius: 15px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab1 .panel__item {
    padding: 24px 20px 40px;
    border-radius: 0;
  }
  .entry-area #tab1 .panel__item.pb16 {
    padding-bottom: 16px;
  }
}
.entry-area #tab1 .panel__note {
  display: flex;
  gap: 8px;
  font-size: 12px;
  align-items: center;
  margin-top: 40px;
  justify-content: center;
}
@media screen and (max-width: 414px) {
  .entry-area #tab1 .panel__note {
    align-items: flex-start;
    margin-top: 0;
  }
}
.entry-area #tab1 .panel__note img {
  height: 29px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab1 .panel__note p {
    font-size: 10px;
  }
}
.entry-area #tab1 .item__info {
  display: flex;
  flex-direction: column;
  width: 445px;
  height: 348px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab1 .item__info {
    width: 100%;
    height: auto;
    align-items: center;
  }
}
.entry-area #tab1 .item__icon {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab1 .item__icon {
    gap: 16px;
    margin-bottom: 16px;
  }
}
.entry-area #tab1 .item__icon img {
  width: 120px;
  height: 112px;
  object-fit: contain;
}
@media screen and (max-width: 414px) {
  .entry-area #tab1 .item__icon img {
    width: 90px;
    height: auto;
  }
}
.entry-area #tab1 .item__ttl {
  font-size: 24px;
  color: #c00;
}
@media screen and (max-width: 414px) {
  .entry-area #tab1 .item__ttl {
    font-size: 20px;
  }
}
.entry-area #tab1 .item__ttl span {
  font-size: 20px;
  font-weight: normal;
  color: #333;
}
@media screen and (max-width: 414px) {
  .entry-area #tab1 .item__ttl span {
    font-size: 16px;
  }
}
.entry-area #tab1 .item__text {
  font-size: 16px;
}
.entry-area #tab1 .item__btn {
  display: inline-block;
  width: 318px;
  background: #333;
  color: #fff;
  font-size: 20px;
  padding: 20px 0;
  transition: background 0.2s;
  margin: auto auto 0;
  text-align: center;
  border-radius: 33px;
  position: relative;
  letter-spacing: 2px;
}
.entry-area #tab1 .item__btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 414px) {
  .entry-area #tab1 .item__btn {
    width: 100%;
    padding: 18px 0;
  }
}
.entry-area #tab1 .item__btn p {
  display: inline-block;
  position: relative;
}
.entry-area #tab1 .item__img {
  width: 207px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab1 .item__img {
    width: 181px;
    margin: 24px 0;
  }
}
.entry-area #tab2 .panel__heading {
  font-size: 24px;
  text-align: center;
  padding-bottom: 16px;
  position: relative;
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab2 .panel__heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.entry-area #tab2 .panel__heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #CC0000;
  bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.entry-area #tab2 .panel__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 86px;
  background-color: #fff;
  margin-bottom: 24px;
  border-radius: 15px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab2 .panel__item {
    margin-bottom: 16px;
    padding: 24px 20px 32px;
    border-radius: 0;
  }
}
.entry-area #tab2 .item__info {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 414px) {
  .entry-area #tab2 .item__info {
    gap: 16px;
  }
}
.entry-area #tab2 .item__icon {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab2 .item__icon {
    gap: 16px;
  }
}
.entry-area #tab2 .item__icon img {
  width: 120px;
  height: 112px;
  object-fit: contain;
}
@media screen and (max-width: 414px) {
  .entry-area #tab2 .item__icon img {
    width: 90px;
    height: 84px;
  }
}
.entry-area #tab2 .item__ttl {
  font-size: 24px;
  color: #c00;
  margin-bottom: 16px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab2 .item__ttl {
    font-size: 20px;
  }
}
.entry-area #tab2 .item__text {
  font-size: 16px;
}
.entry-area #tab2 .item__img {
  width: 207px;
}
.entry-area #tab3 .panel__heading {
  font-size: 24px;
  text-align: center;
  padding-bottom: 16px;
  position: relative;
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab3 .panel__heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.entry-area #tab3 .panel__heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #CC0000;
  bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.entry-area #tab3 .panel__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 86px 56px;
  background-color: #fff;
  margin-bottom: 24px;
  border-radius: 15px;
}
.entry-area #tab3 .panel__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 414px) {
  .entry-area #tab3 .panel__item {
    padding: 24px 20px 32px;
    border-radius: 0;
  }
}
.entry-area #tab3 .item1 .item__info {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 414px) {
  .entry-area #tab3 .item1 .item__info {
    gap: 16px;
  }
}
.entry-area #tab3 .item1 .item__icon {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab3 .item1 .item__icon {
    gap: 16px;
  }
}
.entry-area #tab3 .item1 .item__icon img {
  width: 120px;
  height: 112px;
  object-fit: contain;
}
@media screen and (max-width: 414px) {
  .entry-area #tab3 .item1 .item__icon img {
    width: 90px;
    height: 84px;
  }
}
.entry-area #tab3 .item1 .item__ttl {
  font-size: 24px;
  color: #c00;
  margin-bottom: 16px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab3 .item1 .item__ttl {
    font-size: 20px;
  }
}
.entry-area #tab3 .item1 .item__text {
  font-size: 16px;
}
.entry-area #tab3 .item1 .item__img {
  width: 207px;
}
.entry-area #tab3 .item2 .item__info {
  display: flex;
  flex-direction: column;
}
.entry-area #tab3 .item2 .item__icon {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 54px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab3 .item2 .item__icon {
    gap: 16px;
    margin-bottom: 16px;
  }
}
.entry-area #tab3 .item2 .item__icon img {
  width: 120px;
  height: 112px;
  object-fit: contain;
}
@media screen and (max-width: 414px) {
  .entry-area #tab3 .item2 .item__icon img {
    width: 90px;
    height: 84px;
  }
}
.entry-area #tab3 .item2 .item__ttl {
  font-size: 24px;
  color: #c00;
  margin-bottom: 16px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab3 .item2 .item__ttl {
    margin-bottom: 0;
    font-size: 20px;
  }
}
.entry-area #tab3 .item2 .item__ttl span {
  font-size: 20px;
  font-weight: normal;
  color: #333;
}
.entry-area #tab3 .item2 .item__text {
  font-size: 16px;
}
@media screen and (max-width: 414px) {
  .entry-area #tab3 .item2 .item__text {
    margin-bottom: 24px;
  }
}
.entry-area #tab3 .item2 .item__btns {
  display: flex;
  gap: 42px;
  justify-content: center;
}
@media screen and (max-width: 414px) {
  .entry-area #tab3 .item2 .item__btns {
    flex-direction: column;
    gap: 16px;
  }
}
.entry-area #tab3 .item2 .item__btn {
  display: inline-block;
  width: 318px;
  background: #333;
  color: #fff;
  font-size: 20px;
  padding: 18px 0;
  transition: background 0.2s;
  text-align: center;
  border-radius: 33px;
  position: relative;
}
.entry-area #tab3 .item2 .item__btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 414px) {
  .entry-area #tab3 .item2 .item__btn {
    width: 100%;
  }
}
.entry-area #tab3 .item2 .item__btn p {
  display: inline-block;
  position: relative;
}
.entry-area #tab3 .item2 .item__btn p::after {
  content: "";
  display: block;
  width: 17px;
  height: 13px;
  background: url(../image/link_icon.png) no-repeat center;
  background-size: cover;
  position: absolute;
  right: -24px;
  top: 24%;
}
.entry-area #tab3 .item2 .item__img {
  width: 207px;
}

.qna {
  padding: 120px 0 25px;
}
@media screen and (max-width: 414px) {
  .qna {
    padding: 40px 0;
  }
}
.qna__title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 56px;
}
@media screen and (max-width: 414px) {
  .qna__title {
    font-size: 30px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 414px) {
  .qna__list {
    padding: 0 10px;
  }
}
.qna__item {
  border-top: 1px solid #CC0000;
  padding: 56px 76px;
}
.qna__item:last-child {
  border-bottom: 1px solid #CC0000;
}
@media screen and (max-width: 414px) {
  .qna__item {
    padding: 24px 20px;
  }
}
.qna__q {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-size: 24px;
  margin-bottom: 16px;
}
@media screen and (max-width: 414px) {
  .qna__q {
    gap: 8px;
    font-size: 20px;
  }
}
.qna__q span {
  color: #c00;
  flex-shrink: 0;
  font-weight: 28px;
}
@media screen and (max-width: 414px) {
  .qna__q span {
    font-size: 24px;
  }
}
.qna__a {
  display: flex;
  align-items: baseline;
  gap: 27px;
  font-size: 16px;
  color: #444;
  padding-left: 10px;
}
@media screen and (max-width: 414px) {
  .qna__a {
    gap: 15px;
  }
}
.qna__a span {
  flex-shrink: 0;
  font-size: 24px;
}
.qna__cta {
  position: relative;
  text-align: center;
  margin: 104px 0 120px;
}
@media screen and (max-width: 414px) {
  .qna__cta {
    padding: 0 30px;
    margin: 72px 0 40px;
  }
}
.qna__cta-badge {
  position: absolute;
  top: -20px;
  right: calc(50% - 280px);
  background: #fff;
  border: 1px solid #c00;
  font-size: 24px;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #333;
}
@media screen and (max-width: 414px) {
  .qna__cta-badge {
    width: 62px;
    height: 62px;
    font-size: 18px;
    top: -50px;
    right: calc(50% - 150px);
  }
}
.qna__cta-badge small {
  font-size: 27px;
}
@media screen and (max-width: 414px) {
  .qna__cta-badge small {
    font-size: 20px;
  }
}
.qna__cta-btn {
  display: inline-block;
  background: #c00;
  color: #fff !important;
  font-size: 24px;
  padding: 44px 0;
  border-radius: 63px;
  position: relative;
  width: 662px;
}
.qna__cta-btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 414px) {
  .qna__cta-btn {
    width: 100%;
    aspect-ratio: 315/65;
    padding: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.qna__cta-btn p {
  position: relative;
  display: inline-block;
}
.qna__cta-btn p::after {
  content: "";
  display: block;
  width: 17px;
  height: 13px;
  background: url(../image/link_icon-red.png) no-repeat center;
  background-size: cover;
  position: absolute;
  right: -24px;
  top: 24%;
}
.qna__cta-note {
  margin-top: 24px;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 414px) {
  .qna__cta-note {
    text-align: left;
    text-indent: -12px;
    padding-left: 12px;
    font-size: 10px;
  }
}
.qna__trouble {
  background: #EAEBEC;
  border-radius: 15px;
  padding: 40px 105px;
  text-align: center;
}
@media screen and (max-width: 414px) {
  .qna__trouble {
    padding: 32px 30px 40px;
    border-radius: 0;
  }
}
.qna__trouble-title {
  font-size: 24px;
  margin-bottom: 16px;
}
@media screen and (max-width: 414px) {
  .qna__trouble-title {
    margin-bottom: 24px;
  }
}
.qna__trouble-list {
  font-size: 20px;
  background: #fff;
  padding: 24px 52px;
  border-radius: 10px;
  margin-bottom: 16px;
  text-align: left;
}
@media screen and (max-width: 414px) {
  .qna__trouble-list {
    padding: 24px 16px 24px 24px;
    font-size: 16px;
    text-indent: -8px;
    border-radius: 0;
  }
}
.qna__trouble-list li::before {
  content: "・";
}
.qna__trouble-arrow {
  width: 28px;
  height: 26px;
  margin: 0 auto 16px;
}
.qna__trouble-link {
  font-size: 16px;
}
.qna__trouble-link a {
  color: #0077FF;
}
.qna__trouble-link a:hover {
  text-decoration: underline;
}

/* sp */
@media screen and (max-width: 414px) {
  #main {
    width: 100% !important;
    margin-bottom: 0 !important;
  }
}