@charset "UTF-8";

ul[role="list"], ol[role="list"] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

:root {
  --color-main: #505de6;
  --color-main-rgb: 80, 93, 230;
  --color-sub: #fff;
  --color-sub-rgb: 255, 255, 255;
}

.preload * {
  transition: none !important;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  min-width: 1160px;
  color: #333;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.833;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

input,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  color: inherit;
}

a {
  outline: none;
  /* color: #333; */
  text-decoration: none;
}

/* img {
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
} */

strong,
em,
b {
  font-weight: bold;
}

em {
  font-style: normal;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

b {
  font-weight: bold;
}

.l-page {
  position: relative;
  min-height: 100vh;
  padding-bottom: 100px;
}

.l-header {
  height: 80px;
}

.l-header__fixed {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid var(--color-main);
  background: #fff;
}

.l-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.l-contents {
  padding-top: 33px;
}

.c-banner {
  display: block;
  transition: opacity 0.2s ease-out;
}

.c-btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: -5px -10px;
}

.c-btn-group > .c-btn {
  margin: 5px 10px;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s ease-out;
}

.c-card {
  display: block;
}

.c-card__title {
  margin-bottom: 5px;
  font-size: 1.7rem;
  font-weight: 500;
}

.c-card__body {
  padding: 19px 30px;
}

a.c-card {
  background: #fff;
  transition: opacity 0.2s ease-out;
}

.c-textbox,
.c-textarea,
.c-select {
  color: #333;
}

.c-textbox.p-form-error,
.c-textarea.p-form-error,
.c-select.p-form-error {
  border-color: #e67e7e;
  background-color: #fce6e6;
  color: #cc2929;
}

.c-textbox:focus,
.c-textarea:focus,
.c-select:focus {
  outline: none;
  background-color: #f0f0f0;
}

.c-textbox {
  width: 100%;
  height: 50px;
  padding: 12px;
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  background: #fff;
}

.c-textbox--s {
  width: 240px;
}

.c-textbox::-webkit-input-placeholder {
  color: #aaa;
}

.c-textbox::-moz-placeholder {
  color: #aaa;
}

.c-textbox:-ms-input-placeholder {
  color: #aaa;
}

.c-textbox::-ms-input-placeholder {
  color: #aaa;
}

.c-textbox::placeholder {
  color: #aaa;
}

.c-textarea {
  display: block;
  width: 100%;
  height: 200px;
  padding: 12px;
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  outline: none;
  background: #fff;
  resize: vertical;
}

.c-datepicker {
  background: url(https://system.expoline.jp/new-el-demo/newel_mockup/assets/images/common/ico_calendar.svg) no-repeat right 11px center #fff;
  background-size: 17px 17px;
}

.c-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 50px;
  padding: 10px 34px 10px 12px;
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  outline: none;
  background: url(https://system.expoline.jp/new-el-demo/newel_mockup/assets/images/common/ico_select.svg) no-repeat right 13px center #fff;
  background-size: 12.15 6.08px;
}

::-ms-expand {
  display: none;
}

.c-checkbox {
  display: inline-block;
  position: relative;
  margin: 3px 0;
  padding-left: 37px;
  line-height: 30px;
}

.c-checkbox__input {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  width: auto;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.c-checkbox__input:checked + .c-checkbox__label::before {
  border-color: var(--color-main);
  background: var(--color-main);
}

.c-checkbox__input:checked + .c-checkbox__label::after {
  opacity: 1;
}

.c-checkbox__input:disabled + .c-checkbox__label {
  pointer-events: none;
}

.c-checkbox__input:disabled + .c-checkbox__label::before {
  border-color: #dddddd;
  background: #f7f7f7;
}

.c-checkbox__label {
  display: inline-block;
  cursor: pointer;
}

.c-checkbox__label::before, .c-checkbox__label::after {
  display: block;
  position: absolute;
  content: '';
}

.c-checkbox__label::before {
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  background: #fff;
}

.c-checkbox__label::before {
  border-radius: 5px;
}

.c-checkbox__label::after {
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: url(https://system.expoline.jp/new-el-demo/newel_mockup/assets/images/common/ico_check.svg) no-repeat center center;
  opacity: 0;
}

.c-checkbox__label--text {
  padding-left: 4px;
}

.c-radio {
  display: inline-block;
  position: relative;
  margin: 3px 0;
  padding-left: 37px;
  line-height: 30px;
}

.c-radio__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.c-radio__input:checked + .c-radio__label::before {
  border-color: var(--color-main);
  background: var(--color-main);
}

.c-radio__input:checked + .c-radio__label::after {
  opacity: 1;
}

.c-radio__input:disabled + .c-radio__label {
  pointer-events: none;
}

.c-radio__input:disabled + .c-radio__label::before {
  border-color: #dddddd;
  background: #f7f7f7;
}

.c-radio__input:disabled:checked + .c-radio__label::after {
  background: #999999;
}

.c-radio__label {
  display: inline-block;
  cursor: pointer;
}

.c-radio__label::before, .c-radio__label::after {
  display: block;
  position: absolute;
  border-radius: 100%;
  content: '';
}

.c-radio__label::before {
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #c5c5c5;
  background: #fff;
}

.c-radio__label::before {
  border-radius: 100%;
}

.c-radio__label::after {
  top: 10px;
  left: 10px;
  width: 10px;
  height: 10px;
  background: var(--color-sub);
  opacity: 0;
}

.c-radio__label--text {
  padding-left: 4px;
}

.c-hyphen {
  display: inline-flex;
  align-items: center;
  padding: 0 7px;
}

.c-required {
  display: inline-block;
  height: 24px;
  padding: 0px 9px;
  border-radius: 3px;
  background: #e62e2e;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.846;
}

.c-form-label {
  font-size: 1.6rem;
  font-weight: 500;
}

.c-grid {
  display: flex;
  flex-wrap: wrap;
}

.c-grid__col12 {
  width: 100%;
}

.c-inner, .c-inner-narrow {
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.c-inner {
  max-width: 1160px;
}

.c-inner-narrow {
  max-width: 1000px;
}

.c-text-link {
  text-decoration: underline;
}

.c-text-link:hover {
  text-decoration: none;
}

.c-arrow-link {
  display: inline-block;
  position: relative;
  padding-left: 15px;
  transition: opacity 0.2s ease-out;
}

.c-arrow-link::before {
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 6.08px;
  height: 12.15px;
  background: url(https://system.expoline.jp/new-el-demo/newel_mockup/assets/images/common/arrow_link.svg) no-repeat center center/contain;
  content: '';
}

.c-list-dot__item {
  position: relative;
  padding-left: 1em;
}

.c-list-dot__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '・';
}

.c-desc-list__term:not(:first-child) {
  margin-top: 1em;
}

.c-title {
  display: table;
  margin: 0 auto 30px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--color-main);
  color: var(--color-main);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.438;
  text-align: center;
}

.c-alert {
  color: #cc2929;
}

.p-scroll-box {
  max-height: 300px;
  padding: 25px 30px;
  overflow-y: auto;
  background: #f0f0f0;
}

.p-scroll-box[data-simplebar] {
  padding-right: 43px;
}

.p-box-gray {
  padding: 25px 30px;
  background: #f7f7f7;
}

.p-box-gray--register {
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 48px;
}

.p-box-border {
  padding: 37px 39px 52px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.p-box-border__footer {
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid #ddd;
}

.p-btn-header {
  width: 160px;
  height: 50px;
  border-radius: 50px;
  font-weight: 500;
  line-height: 1.333;
}

.p-btn-header--primary-light {
  border-color: transparent;
  background: rgba(var(--color-main-rgb), 0.15);
  color: var(--color-main);
}

.p-btn-header--primary {
  border-color: var(--color-main);
  background: var(--color-main);
  color: var(--color-sub);
}

.p-btn-header--text {
  width: auto;
  padding: 0 10px;
  border-color: transparent;
  color: var(--color-main);
  font-weight: 400;
}
.hamburger {
  z-index: 998;
}
.p-btn-primary {
  border-radius: 5px;
  background: var(--color-main);
  color: var(--color-sub);
  font-weight: 500;
}

.p-btn-primary:disabled {
  background: #cccccc;
  pointer-events: none;
}

.p-btn-back {
  border-radius: 5px;
  border-color: #c5c5c5;
  font-weight: 500;
}

.p-btn-large,
.p-btn-medium {
  width: 100%;
}

.p-btn-large {
  max-width: 320px;
  height: 80px;
  font-size: 1.8rem;
}

.p-btn-medium {
  max-width: 240px;
  height: 60px;
  font-size: 1.7rem;
}

.p-btn-medium--wide {
  max-width: 320px;
}

.p-btn-file {
  width: 140px;
  height: 50px;
  border-radius: 5px;
  background: #666;
  color: #fff;
}

.p-btn-download {
  position: relative;
  width: 330px;
  height: 65px;
  border-radius: 5px;
  border-color: var(--color-main);
  color: var(--color-main);
  font-size: 1.7rem;
  font-weight: 500;
}

.p-btn-download svg {
  position: absolute;
  top: 50%;
  left: 25px;
  width: 20.2px;
  height: 20.06px;
  margin-top: -10px;
}

.p-btn-download svg path {
  fill: var(--color-main);
}

.p-footer {
  padding: 43px 0 42px;
  background: var(--color-main);
  color: var(--color-sub);
  text-align: center;
}

.p-footer__copyright {
  font-size: 1.3rem;
  line-height: 1.154;
}

.p-file-upload {
  display: inline-flex;
  flex: 1;
  flex-wrap: wrap;
}

.p-file-upload__name {
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: 400px;
  height: 50px;
  margin-right: 10px;
  padding: 10px 12px;
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  background: #fff;
}

.p-file-input {
  position: relative;
}

.p-file-input__hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.p-form-heading {
  margin-bottom: 10px;
  padding: 13px 21px 12px 21px;
  border-radius: 50px;
  background: #ddd;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.471;
}

.p-form-heading:not(:first-child) {
  margin-top: 30px;
}

.p-form-row {
  padding: 30px 0;
}

.p-form-row--confirm {
  padding: 24px 0;
}

.p-form-row + .p-form-row {
  border-top: 1px solid #ddd;
}

.p-form-flex {
  display: flex;
  align-items: flex-start;
}

.p-form-flex + .p-form-flex {
  margin-top: 20px;
}

.p-form-row--confirm .p-form-flex + .p-form-flex {
  margin-top: 10px;
}

.p-form-flex__head {
  position: relative;
  font-weight: 500;
}

.p-form-flex__head--input {
  width: 232px;
  padding: 15px;
  padding-bottom: 15px;
  padding-left: 55px;
}

.p-form-flex__head--confirm, .p-form-flex__head--login {
  width: 174px;
}

.p-form-flex__head .c-required {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-form-flex__body {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}

.p-form-block__head {
  margin-bottom: 20px;
}

.p-form-block__head .c-required {
  margin-right: 10px;
}

.p-form-block__body {
  display: flex;
  flex-wrap: wrap;
}

.p-form-col {
  flex: 1;
}

.p-form-col:not(:last-child) {
  margin-right: 15px;
}

.p-form-col--xs {
  max-width: 100px;
}

.p-form-col--sm {
  max-width: 160px;
}

.p-form-col--s {
  max-width: 240px;
}

.p-form-col--m {
  max-width: 400px;
}

.p-form-col--l {
  max-width: 600px;
}

.p-form-col--xl {
  max-width: 800px;
}

.p-form-col--auto {
  flex: 0 1 auto;
}

.p-form-col--full {
  flex-basis: 100%;
  margin-top: 7px;
}

.p-form-error {
  color: #cc2929;
}

.p-form {
  font-size: 1.6rem;
}

.p-form__header {
  padding-bottom: 45px;
}

.p-form__body {
  padding: 50px 0;
  background: #f7f7f7;
}

.p-form__footer {
  padding: 60px 0;
}

.p-form__privacy {
  margin: 35px 0 22px;
  text-align: center;
}

.p-form__confirm {
  margin-bottom: 50px;
}

.p-form__confirm .c-btn-group {
  margin-top: 33px;
}

.p-form__message {
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
}

.p-rating-star {
  display: inline-flex;
}

.p-rating-star__input {
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  opacity: 0;
}

.p-rating-star__input:checked + .p-rating-star__label ~ .p-rating-star__label::before {
  background-image: url(https://system.expoline.jp/new-el-demo/newel_mockup/assets/images/common/ico_star_default.svg);
}

.p-rating-star__label {
  display: inline-block;
  width: 40px;
  height: 38px;
  cursor: pointer;
}

.p-rating-star__label:not(:last-child) {
  margin-right: 13px;
}

.p-rating-star__label::before {
  display: block;
  position: absolute;
  width: 40px;
  height: 38px;
  background: url(https://system.expoline.jp/new-el-demo/newel_mockup/assets/images/common/ico_star_checked.svg) no-repeat center center/contain;
  content: '';
}

.p-rating-star.is-default .p-rating-star__label::before {
  background-image: url(https://system.expoline.jp/new-el-demo/newel_mockup/assets/images/common/ico_star_default.svg);
}

.p-rating-circle {
  display: inline-flex;
  position: relative;
}

.p-rating-circle::before {
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 1px solid #c5c5c5;
  content: '';
}

.p-rating-circle__item {
  z-index: 1;
  position: relative;
  width: 40px;
  text-align: center;
}

.p-rating-circle__item:not(:last-child) {
  margin-right: 25px;
}

.p-rating-circle__input {
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  opacity: 0;
}

.p-rating-circle__input:checked + .p-rating-circle__label {
  border-color: #faab0c;
  background: #faab0c;
  color: #fff;
}

.p-rating-circle__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #c5c5c5;
  border-radius: 100%;
  background: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.p-rating-circle__text {
  display: block;
  font-size: 1.4rem;
}

.p-form-title {
  display: flex;
  justify-content: center;
  margin-bottom: 37px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.458;
  text-align: center;
}

.p-form-title__main {
  margin-right: 15px;
  color: var(--color-main);
  white-space: nowrap;
}

.p-form-complete {
  margin: 35px 0 65px;
  text-align: center;
}

.p-form-complete__icon {
  margin-bottom: 24px;
}

.p-form-complete__icon img {
  width: 115.962px;
  height: 106.643px;
}

.p-form-complete__heading {
  margin-bottom: 22px;
  color: var(--color-main);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.429;
}

.p-form-complete .c-btn-group {
  margin-top: 33px;
}

.p-header {
  display: flex;
  z-index: 10;
  position: relative;
  align-items: center;
  height: 80px;
  padding: 15px 25px;
}

.p-header__logo {
  display: block;
  margin-right: 10px;
}

.p-header__logo img {
  max-height: 25px;
}

.p-header__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.p-header__btn-group .c-btn {
  margin-left: 10px;
}

.p-login {
  max-width: 580px;
  margin: 0 auto;
}

.p-login__check {
  margin-bottom: 22px;
  text-align: center;
}

.p-login .c-arrow-link {
  margin-top: 12px;
}

.p-login__alert {
  margin-top: 24px;
  line-height: 1.625;
}

.modaal-container {
  border-radius: 10px;
  color: inherit;
}

.modaal-content-container {
  padding: 0;
}

.p-modal__header {
  padding: 15px 62px 30px 15px;
  border-bottom: 1px solid #ddd;
  border-radius: 10px 10px 0 0;
}

.p-modal__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.333;
}

.p-modal__body {
  padding: 30px;
  border-radius: 0 0 10px 10px;
}

.modaal-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 50px!important;
}

.modaal-close::before, .modaal-close::after {
  background: #333;
}
.modaal-inner-wrapper {
  padding-right: 15px;
  padding-left: 15px;
}

.flatpickr-months .flatpickr-month {
  height: 30px;
  background: #d9d9d9;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  padding: 10px;
  line-height: 10px;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 10px;
  height: 10px;
  line-height: 10px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  fill: #aaa;
}

.flatpickr-current-month {
  font-size: 1.3rem;
}

.flatpickr-current-month span.cur-month {
  font-weight: 400;
}

.flatpickr-day {
  max-width: 30px;
  height: 30px;
  border-radius: 3px;
  line-height: 30px;
}

.flatpickr-day.today {
  border-color: var(--color-main);
  background: var(--color-main);
  color: var(--color-sub);
}

.flatpickr-calendar {
  box-sizing: border-box;
  font-size: 1.2rem;
}

.flatpickr-calendar::before, .flatpickr-calendar::after {
  display: none !important;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

span.flatpickr-weekday {
  color: #333;
  font-size: 1.1rem;
}

.flatpickr-weekdays {
  height: 30px;
  background: #e6e6e6;
}

.flatpickr-calendar,
.flatpickr-days,
.dayContainer {
  width: 210px;
  min-width: 210px;
  max-width: 210px;
}

.simplebar-scrollbar::before {
  right: 4px;
  left: 4px;
  background-color: #d5d5d5;
  opacity: 1 !important;
}

.simplebar-track {
  background: #f7f7f7;
}

.simplebar-track.simplebar-vertical {
  width: 15px;
}

.p-section--bg-gray {
  background: #f7f7f7;
}

.p-section--notice {
  padding: 30px 0 80px;
  border-top: 1px solid #ddd;
}

.p-body {
  padding-bottom: 100px;
}

.p-body--out {
  padding-top: 50px;
}

.p-body__finish {
  max-width: 880px;
  margin: 0 auto;
}

.p-body__finish .c-btn-group {
  margin-top: 60px;
}

.p-step-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.p-step-nav__item {
  display: block;
}

.p-step-nav__item:not(:first-child) {
  margin-left: 60px;
}

.p-step {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 80px;
  border: 1px solid #c5c5c5;
  border-radius: 30px;
  color: #aaa;
}

.p-step-nav__item:not(:first-child) .p-step::before {
  display: block;
  position: absolute;
  top: 50%;
  left: -50px;
  width: 39px;
  height: 0;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  border-top: 3px dotted #c5c5c5;
  content: '';
}

.p-step-nav__item:not(:first-child) .p-step.is-current::before, .p-step-nav__item:not(:first-child) .p-step.is-finish::before {
  border-top-color: var(--color-main);
}

.p-step.is-current {
  border-width: 2px;
  border-color: var(--color-main);
  background: rgba(var(--color-main-rgb), 0.15);
  color: var(--color-main);
}

.p-step.is-finish {
  border-color: #f2f2f2;
  background: #f2f2f2;
  color: var(--color-main);
}

.p-step__head {
  position: absolute;
  top: 50%;
  left: 23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 24px;
}

.p-step__head > span {
  display: inline-block;
  vertical-align: middle;
}

.p-step__num {
  margin-top: -4px;
  font-size: 2.4rem;
}

.p-step__text {
  font-size: 2rem;
  font-weight: 500;
}

.p-step__checked {
  position: absolute;
  top: 50%;
  right: 32px;
  width: 19.71px;
  height: 17.187px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-step__checked svg path {
  fill: var(--color-main);
}

.p-heading-text-lv2,
.p-heading-text-lv3 {
  font-weight: 500;
}

.p-heading-text-lv2:not(:first-child),
.p-heading-text-lv3:not(:first-child) {
  margin-top: 1em;
}

.p-heading-text-lv2 {
  margin-bottom: 1em;
  font-size: 1.7rem;
}

.p-heading-text-lv3 {
  font-size: 1.6rem;
}

.p-event-title {
  margin: 22px 0 31px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.429;
  text-align: center;
}

.p-guide-text {
  font-size: 1.6rem;
}

.u-right {
  text-align: right !important;
}

.u-left {
  text-align: left !important;
}

.u-center {
  text-align: center !important;
}

.u-border-top {
  border-top: 1px solid #ddd;
}

.u-border-bottom {
  border-bottom: 1px solid #ddd;
}

.u-hidden {
  display: none;
}

.u-inline-block {
  display: inline-block;
}

.u-flex {
  display: flex;
}

.u-justify-start {
  justify-content: flex-start;
}

.u-justify-end {
  justify-content: flex-end;
}

.u-justify-center {
  justify-content: center;
}

.u-align-start {
  align-items: start;
}

.u-align-end {
  align-items: end;
}

.u-align-center {
  align-items: center;
}

.u-fw-light {
  font-weight: lighter;
}

.u-fw-normal {
  font-weight: normal;
}

.u-fw-bold {
  font-weight: bold;
}

.u-m0 {
  margin: 0 !important;
}

.u-mt0 {
  margin-top: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt1em {
  margin-top: 1em !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb1em {
  margin-bottom: 1em !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mr1em {
  margin-right: 1em !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-ml1em {
  margin-left: 1em !important;
}

.u-p0 {
  padding: 0 !important;
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.l-webinar {
  display: flex;
  position: relative;
}

.l-webinar__main {
  flex: 1;
  padding-right: 360px;
}

.l-webinar__main--video-only {
  padding-right: 0;
}

.l-webinar__video {
  position: relative;
}

.l-webinar__video .p-video-fixed {
  background: #000;
}

.l-webinar__side {
  position: absolute;
  top: 0;
  right: 0;
  width: 360px;
  height: 100%;
  overflow-y: hidden;
}

.l-webinar-information {
  padding: 48px 0 30px;
  background: #ebebeb;
}

.p-webinar-header {
  padding: 17px 30px;
  line-height: 1.167;
}

.p-webinar-header__title {
  display: inline;
  color: var(--color-main);
  font-size: 2.4rem;
  font-weight: 700;
  vertical-align: middle;
}

.p-webinar-download {
  padding: 0 30px 30px;
}

.p-modal-btn {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  border: none;
  border-radius: 100%;
  background: var(--color-main);
  vertical-align: middle;
}

.p-modal-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--color-sub);
  font-size: 1.6rem;
  font-weight: 700;
  content: 'i';
}

.p-download-list.c-btn-group {
  justify-content: flex-start;
  margin: -7px;
}

.p-download-list.c-btn-group > .c-btn {
  margin: 7px;
}

.p-side-tab-nav {
  display: flex;
  position: relative;
  margin: 0;
  padding: 0;
}

.p-side-tab-nav__item {
  display: block;
  flex: 1;
}

.p-side-tab-nav__close {
  display: none;
}

.p-side-tab-nav__close-btn {
  display: block;
  width: 51px;
  height: 51px;
}

.p-side-tab-nav__close-btn img {
  display: block;
}

.p-side-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100% !important;
  height: 60px;
  padding: 15px;
  background: #ddd;
  color: var(--color-main);
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.2s ease-out;
}

.p-side-tab svg {
  margin-right: 9px;
}

.p-side-tab svg path {
  fill: var(--color-main);
}

.p-side-tab.is-current {
  background: var(--color-main);
  color: var(--color-sub);
}

.p-side-tab.is-current svg path {
  fill: var(--color-sub);
}

.p-side-tab.is-new::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-top: -15px;
  margin-left: 4px;
  border-radius: 100%;
  background: #e62e2e;
  vertical-align: top;
  -webkit-animation: beat 2s infinite;
          animation: beat 2s infinite;
  content: '';
}

@-webkit-keyframes beat {
  40% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
            transform: scale3d(1.3, 1.3, 1.3);
  }
  55% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  60% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
            transform: scale3d(1.3, 1.3, 1.3);
  }
  65% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes beat {
  40% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
            transform: scale3d(1.3, 1.3, 1.3);
  }
  55% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  60% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
            transform: scale3d(1.3, 1.3, 1.3);
  }
  65% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.p-side-tab-content {
  height: calc(100% - 60px);
  background: #f7f7f7;
}

.p-side-tab-content[aria-hidden="true"] {
  display: none;
}

.p-side-tab-content[aria-hidden="false"] {
  display: block;
}

.p-side-tab-content--scroll {
  overflow-y: auto;
}

.p-enquete {
  padding: 22px 40px 30px 30px;
}

.p-enquete .c-btn-group {
  margin-top: 30px;
}

.p-enquete__group {
  border-top: 1px solid #ddd;
}

.p-enquete__group .p-form-row {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-enquete-thanks {
  padding: 20px 0;
  color: var(--color-main);
  text-align: center;
}

.p-enquete-thanks__heading {
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
}

.p-enquete-thanks img {
  display: block;
  width: 226px;
  height: auto;
  margin: 25px auto 0;
}

.p-message {
  padding: 30px 40px 30px 30px;
}

.p-message-unit:not(:first-child) {
  margin-top: 11px;
}

.p-message-unit__sender {
  margin-bottom: 5px;
  color: var(--color-main);
  font-size: 1.2rem;
}

.p-message-unit__message {
  padding: 14px 20px;
  border-radius: 0 20px 20px 20px;
  background: #e5e5e5;
  font-size: 1.6rem;
}

.p-message-unit__time {
  margin-top: 5px;
  font-size: 1.1rem;
  text-align: right;
}

.p-webinar-section {
  margin-bottom: 48px;
}

.p-webinar-section__heading {
  margin-bottom: 24px;
  color: var(--color-main);
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.406;
  text-align: center;
}

.p-webinar-section .c-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.p-chat {
  min-height: 100%;
}

.p-chat iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .page-webinar .l-header__fixed {
    position: static;
  }
  .c-banner:hover {
    opacity: 0.65;
  }
  .c-btn:hover {
    opacity: 0.65;
  }
  a.c-card:hover {
    opacity: 0.65;
  }
  .c-grid__col6 {
    width: calc(50% - 20px);
  }
  .c-grid__col6:nth-child(2n) {
    margin-left: 40px;
  }
  .c-grid__col6:nth-child(n+3) {
    margin-top: 40px;
  }
  .c-grid__col4 {
    width: calc((100% - 40px) / 3);
  }
  .c-grid__col4:not(:nth-child(3n+1)) {
    margin-left: 20px;
  }
  .c-grid__col4:nth-child(n+4) {
    margin-top: 20px;
  }
  .c-grid__col3 {
    width: calc((100% - 39px) / 4);
  }
  .c-grid__col3:not(:nth-child(4n+1)) {
    margin-left: 13px;
  }
  .c-grid__col3:nth-child(n+5) {
    margin-top: 13px;
  }
  .c-arrow-link:hover {
    opacity: 0.65;
  }
  .u-pc-center {
    text-align: center !important;
  }
  .u-pc-hidden {
    display: none;
  }
  .l-webinar__video {
    padding-top: 48%;
  }
  .l-webinar__video .p-video-fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  /* .l-webinar__video .p-video-fixed > div {
    padding-top: 48% !important;
  } */
  .p-side-tab:hover {
    opacity: 0.65;
  }
  .p-enquete__group {
    padding-bottom: 500px;
  }
}

@media screen and (max-width: 768px) {
  body {
    min-width: 320px;
  }
  body.is-panel-open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .l-header {
    height: 55px;
    transition: height 300ms ease;
  }
  .is-panel-open .l-header,
  .is-scrolled .l-header {
    height: 45px;
  }
  .l-header__fixed {
    height: 55px;
    transition: height 300ms ease;
  }
  .is-panel-open .l-header__fixed,
  .is-scrolled .l-header__fixed {
    height: 45px;
  }
  .c-card__body {
    padding: 12px 15px;
  }
  .c-grid {
    margin-top: -20px;
  }
  .c-grid__col {
    width: 100%;
    margin-top: 20px;
  }
  .c-inner, .c-inner-narrow {
    padding-right: 15px;
    padding-left: 15px;
  }
  .c-title {
    font-size: 2.8rem;
  }
  .p-scroll-box {
    padding: 25px 20px;
  }
  .p-scroll-box[data-simplebar] {
    padding-right: 30px;
  }
  .p-box-gray {
    padding: 20px;
  }
  .p-box-gray--register {
    padding-top: 30px;
    padding-bottom: 35px;
  }
  .p-box-border {
    padding: 25px 20px;
  }
  .p-box-border__footer {
    margin-top: 30px;
    padding-top: 25px;
  }
  .p-btn-header {
    height: 40px;
  }
  .p-btn-header--primary-light {
    width: auto;
    padding: 0 20px;
  }
  .is-scrolled .p-btn-header--primary-light {
    height: 35px;
  }
  .p-btn-header--text {
    padding: 0;
    font-size: 1.4rem;
  }
  .p-btn-header--sp-fixed {
    position: fixed;
    right: 0;
    bottom: 6px;
    width: 94px;
    height: 45px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .p-file-upload__name {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .p-form-heading {
    padding-right: 18px;
    padding-left: 18px;
  }
  .p-form-flex {
    flex-wrap: wrap;
  }
  .p-form-flex__head, .p-form-flex__body {
    width: 100%;
  }
  .p-form-flex__head {
    margin-bottom: 10px;
  }
  .p-form-col--sp-full {
    width: 100%;
    margin-left: 0 !important;
  }
  .p-form__header {
    padding-bottom: 30px;
  }
  .p-form__body {
    padding: 30px 0;
  }
  .p-form__footer {
    padding: 30px 0 40px;
  }
  .p-form__confirm {
    margin-bottom: 40px;
  }
  .p-form__confirm .c-btn-group {
    margin-top: 20px;
  }
  .p-form-title {
    flex-direction: column;
    margin-bottom: 25px;
    font-size: 2rem;
  }
  .p-form-complete {
    margin: 20px 0 40px;
  }
  .p-form-complete__icon {
    margin-bottom: 15px;
  }
  .p-header {
    height: 55px;
    padding: 10px 15px;
    transition: all 300ms ease;
  }
  .is-panel-open .p-header,
  .is-scrolled .p-header {
    height: 45px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-header__logo img {
    max-height: 21px;
    transition: max-height 300ms ease;
  }
  .is-panel-open .p-header__logo img,
  .is-scrolled .p-header__logo img {
    max-height: 16px;
  }
  .p-modal__header {
    padding: 12px 55px 12px 15px;
  }
  .p-modal__title {
    font-size: 2rem;
  }
  .p-modal__body {
    padding: 20px 15px;
  }
  .modaal-close {
    top: 1px;
    right: 1px;
  }
  .p-body__finish .c-btn-group {
    margin-top: 40px;
  }
  .p-step-nav__item {
    width: calc((100% - 30px) / 3);
  }
  .p-step-nav__item:not(:first-child) {
    margin-left: 15px;
  }
  .p-step {
    width: 100%;
  }
  .p-step-nav__item:not(:first-child) .p-step::before {
    left: -14px;
    width: 10px;
    border-top-width: 2px;
  }
  .p-step__head {
    position: static;
    -webkit-transform: none;
            transform: none;
    font-size: 1.3rem;
  }
  .p-step__num {
    font-size: 2rem;
  }
  .p-step__checked {
    top: auto;
    right: 50%;
    bottom: 12px;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  .p-step__checked svg {
    width: 15px;
  }
  .p-event-title {
    font-size: 2rem;
  }
  .u-sp-center {
    text-align: center !important;
  }
  .u-sp-hidden {
    display: none;
  }
  .l-webinar__main {
    padding-right: 0;
  }
  .l-webinar__video {
    padding-top: 56.25%;
    transition: padding-top 300ms ease;
  }
  .l-webinar__video .p-video-fixed {
    z-index: 99;
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    transition: top 300ms ease;
  }
  .l-webinar__video .p-video-fixed > div {
    transition: padding-top 300ms ease;
  }
  .is-panel-open .l-webinar__video,
  .is-scrolled .l-webinar__video {
    padding-top: 36vw;
  }
  .is-panel-open .l-webinar__video .p-video-fixed,
  .is-scrolled .l-webinar__video .p-video-fixed {
    top: 45px;
  }
  .is-panel-open .l-webinar__video .p-video-fixed > div,
  .is-scrolled .l-webinar__video .p-video-fixed > div {
    padding-top: 36vw !important;
  }
  .l-webinar__side {
    position: static;
    width: auto;
  }
  .is-panel-open .l-webinar__side {
    z-index: 200;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 64vw;
  }
  .p-webinar-header {
    padding: 7px 15px;
    line-height: 1.556;
  }
  .is-panel-open .p-webinar-header {
    line-height: 1.5;
  }
  .p-webinar-header__title {
    font-size: 1.8rem;
  }
  .is-panel-open .p-webinar-header__title {
    font-size: 1.6rem;
  }
  .p-webinar-download {
    padding: 17px 15px;
  }
  .p-modal-btn {
    margin-left: 10px;
  }
  .is-panel-open .p-modal-btn {
    display: none;
  }
  .p-download-list.c-btn-group {
    justify-content: center;
  }
  .is-panel-open .p-side-tab-nav {
    box-shadow: 0px -3px 9px rgba(0, 0, 0, 0.15);
  }
  .is-panel-open .p-side-tab-nav__close {
    display: block;
    position: absolute;
    top: -30px;
    right: 0;
  }
  .p-enquete {
    padding: 12px 15px;
  }
  .p-enquete .c-btn-group {
    margin-top: 20px;
  }
  body:not(.is-panel-open) .p-enquete__group .p-form-row:first-child .p-form-block__body,
  body:not(.is-panel-open) .p-enquete__group .p-form-row:not(:first-child),
  body:not(.is-panel-open) .p-enquete__group .c-btn-group {
    display: none;
  }
  body:not(.is-panel-open) .p-enquete__group .p-form-row {
    padding-bottom: 0;
  }
  body:not(.is-panel-open) .p-enquete__group .p-form-block__head {
    margin-bottom: 0;
  }
  body:not(.is-panel-open) .p-enquete__group .p-form-row:first-child .p-form-block__head {
    position: relative;
    padding-right: 25px;
  }
  body:not(.is-panel-open) .p-enquete__group .p-form-row:first-child .p-form-block__head::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 9px;
    height: 17px;
    margin-top: -8px;
    background: url(https://system.expoline.jp/new-el-demo/newel_mockup/assets/images/common/ico_expand.svg) no-repeat center center/contain;
    content: '';
  }
  .p-message {
    padding: 12px 15px;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .p-step {
    flex-direction: column;
    height: 100px;
    padding: 10px 0 30px;
    border-radius: 20px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    -webkit-animation-duration: .01ms !important;
            animation-duration: .01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
