@charset "utf-8";

/*---------------------------------------------------------
共通
---------------------------------------------------------*/
@media all and (max-width: 359px) {
  .br-mobile-s {
    display: block;
  }
}

@media all and (min-width: 360px) {
  .br-mobile-s {
    display: none;
  }
}

@media all and (max-width: 735px) {
  .br-tablet {
    display: none;
  }
}

@media all and (min-width: 736px) {
  .br-tablet {
    display: block;
  }

  .from-tablet {
    display: none;
  }
}

@media all and (max-width: 735px) {
  .mod-letter-spacing-05 {
    letter-spacing: -.5px;
  }

  .mod-letter-spacing-10 {
    letter-spacing: -1px;
  }

  .mod-letter-spacing-15 {
    letter-spacing: -1.5px;
  }    
}

@media all and (max-width: 359px) {
  .font-small {
    font-size: 16px;
  }

  .font-medium {
    font-size: 18px;
  }

  .font-large {
    font-size: 22.5px;
  }

  .font-exlarge {
    font-size: 24px;
  }
}

@media all and (min-width: 360px) and (max-width: 735px) {
  .font-small {
    font-size: 16px;
  }

  .font-medium {
    font-size: 21px;
  }

  .font-large {
    font-size: 25px;
  }

  .font-exlarge {
    font-size: 28px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .font-small {
    font-size: 16px;
  }

  .font-medium,
  .font-large,
  .font-exlarge {
    font-size: 26px;
  }
}

@media all and (min-width: 1280px) {
  .font-small {
    font-size: 22px;
  }

  .font-medium,
  .font-large,
  .font-exlarge {
    font-size: 36px;
  }
}

.size-enlargement-1 {
  font-size: 1.6em;
}

.size-enlargement-2 {
  font-size: 2em;
}

.size-reduced {
  font-size: .85em;
}

.bg-white {
  background-color: #fff;
}

.bg-green {
  background-color: #34a853;
}

.bg-orange {
  background-color: #ef7b2c;
}

.color-white {
  color: #fff;
}

.color-blue {
  color: blue;
}

.color-orange {
  color: #ef7b2c;
}

.color-green {
  color: #34a853;
}

.color-red {
  color: red;
}

.color-lightgray {
  color: #aaa;
}

.font-bold {
  font-weight: bold;
}

.text-justify {
  text-align: justify;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center!important;
}

.object-fit,
.fit-cover,
.fit-contain {
  height: 100%;
  width: 100%;
}

.fit-cover {
  object-fit: cover;
}

.fit-contain {
  object-fit: contain;
}

.border-bottom-green {
  border-bottom: 1px solid #34a853;
}
.border-top-green {
  border-top: 1px solid #34a853;
}

.border-bottom-black {
  border-bottom: 1px solid #666;
}

.border-top-black {
  border-top: 1px solid #666;
}

.display-order-1 {
  order: 1;
}

.display-order-2 {
  order: 2;
}

.display-order-3 {
  order: 3;
}

.inlineblock {
  display: inline-block;
}

.dotted-list,
.ordered-list {
  line-height: 1.4em;
  padding-left: 2em;
}

.dotted-list {
  list-style-type: disc;
}

.ordered-list {
  list-style-type: decimal;
}

.dotted-list li,
.ordered-list li {
  margin: .5em 0;
}

.nowrap {
  white-space: nowrap;
}

.mb-0 {
  margin-bottom: 0!important;
}

.mb-5px {
  margin-bottom: 5px;
}

.mb-10px {
  margin-bottom: 10px;
}

.mb-20px {
  margin-bottom: 20px;
}

.mb-50px {
  margin-bottom: 50px;
}

.mb-1em {
  margin-bottom: 1em;
}

.mb-2em {
  margin-bottom: 2em;
}

.mb-3em {
  margin-bottom: 3em!important;
}

.mt-3px {
  margin-top: 3px!important;
}

.mt-05em {
  margin-top: .5em!important; 
}

.mt-1em {
  margin-top: 1em!important; 
}

.mt-2em {
  margin-top: 2em!important;
}

.mt-5em {
  margin-top: 5em!important;
}

#full-wide #content {
  margin: 0;
  max-width: 100%;
  padding: 0;
}

/*---------------------------------------------------------
ヘッダー
---------------------------------------------------------*/
body.fixed {
  position: fixed;
  left: 0;
}

.excelcamp-header-wrapper {
  align-items: center;
  background-color: #fff;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2500;
}

@media all and (max-width: 735px) {
  .excelcamp-header-wrapper {
    height: 50px;
  }
}

@media all and (min-width: 736px) {
  .excelcamp-header-wrapper {
    height: 65px;
  }
}

.global-nav-icon {
  padding: 8px;
  position: absolute;
  z-index: 2200;
}

@media all and (max-width: 735px) {
  .global-nav-icon {
    bottom: calc(50% - 19px);
    height: 22px;
    right: 4px;
    width: 20px;
  }
}

@media all and (min-width: 736px) {
  .global-nav-icon {
    bottom: calc(50% - 23px);
    height: 30px;
    cursor: pointer;
    right: 10px;
    width: 28px;
  }
}

.global-nav-icon-elem {
  height: 100%;
  position: relative;
  transition: all .5s 0s ease;
  width: 100%;
}
.global-nav-border-upper,
.global-nav-border-middle,
.global-nav-border-lower {
  background-color: #666;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  height: 4px;
  left: 0;
  position: absolute;
  transition: all .5s 0s ease;
  width: 100%;
}

.global-nav-border-upper {
  top: 0;
}

.global-nav-border-middle {
  top: calc(50% - 2px);
}

.global-nav-border-lower {
  bottom: 0;
}

#js-global-nav-icon.active .global-nav-icon-elem {
  transform:  rotate(360deg);
}

@media all and (max-width: 735px) {
  #js-global-nav-icon.active .global-nav-icon-elem .global-nav-border-upper {
    transform: translateY(9px) rotate(-45deg);
  }
}

@media all and (min-width: 736px) {
  #js-global-nav-icon.active .global-nav-icon-elem .global-nav-border-upper {
    transform: translateY(13px) rotate(-45deg);
  }
}

#js-global-nav-icon.active .global-nav-icon-elem .global-nav-border-middle {
  transform: translateY(0) rotate(45deg);
}

#js-global-nav-icon.active .global-nav-icon-elem .global-nav-border-lower {
  opacity: 0;
}

.global-nav {
  background-color: #fff;
  height: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: height .5s 0s ease;
  width: 100%;
}

#js-global-nav-icon.active ~ .global-nav {
  height: 100vh;
}

.global-nav-menu {
  background-color: #f8ffe4;
  list-style: none;
  text-align: center;
}

@media all and (max-width: 735px) {
  .global-nav-menu {
    padding: 120px 0 50px;
  }
}

@media all and (min-width: 736px) {
  .global-nav-menu {
    padding: 150px 0 80px;
  }
}

.global-nav-menu li {
  opacity: 0;
}

#js-global-nav-menu.show li {
  opacity: 1;
}

#js-global-nav-menu.on li {
  opacity: 1;
  transition: opacity .1s .4s;
}

#js-global-nav-menu.off li {
  opacity: 0;
  transition: opacity .1s 0s;
}

.header-logo-link {
  height: 75%;
  position: relative;
  top: 0;
  transition: top .5s 0s ease;
  z-index: 2200;
}

#js-global-nav-icon.active ~ .header-logo-link {
  top: 30px;
}

.header-logo {
  height: 100%;
  width: auto;
}

/*---------------------------------------------------------
サイトトップページ
---------------------------------------------------------*/
.top-firstview-content-field {
  background-image: url('../images/sitetop/top_background_image.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  justify-content: center;
  width: 100%;
}

@media all and (min-width: 744px) {
  .top-firstview-content-field {
    height: 480px;
  }
}

@media all and (min-width: 1280px) {
  .top-firstview-content-field {
    height: 70vh;
  }
}

.top-headcopy-box {
  align-content: center;
  background-color: rgba(255,255,255,.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 100%;
  padding-top: 4em;
  width: 100%;
}

.top-firstview-content-field:has(+ .top-discount-info) .top-headcopy-box {
  padding-top: 0em;
}

.top-headcopy {
  color: #34a853;
  line-height: 1.2em;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 2px 2px 3px #fff, 2px -2px 3px #fff, -2px 2px 3px #fff, -2px -2px 3px #fff, 2px 2px 3px #fff, 2px -2px 3px #fff, -2px 2px 3px #fff, -2px -2px 3px #fff;
  width: 100%;
}

@media all and (max-width: 360px) {
  .top-headcopy {
    font-size: 27px;
  }
}

@media all and (min-width: 361px) and (max-width: 735px) {
  .top-headcopy {
    font-size: 30px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .top-headcopy {
    font-size: 36px;
  }
}

@media all and (min-width: 1280px) {
  .top-headcopy {
    font-size: 56px;
  }
}

.top-subhead {
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  text-shadow: 2px 2px 3px #fff, 2px -2px 3px #fff, -2px 2px 3px #fff, -2px -2px 3px #fff, 2px 2px 3px #fff, 2px -2px 3px #fff, -2px 2px 3px #fff, -2px -2px 3px #fff;
  width: 100%;
}

@media all and (max-width: 735px) {
  .top-subhead {
    font-size: 18px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .top-subhead {
    font-size: 20px;
  }
}

@media all and (min-width: 1280px) {
  .top-subhead {
    font-size: 32px;
  }
}

.day1-discount-info {
  background: #fff;
  border: 1px solid #ef7d2e;
  border-radius: clamp(0.481rem, 0.003rem + 2.39vw, 0.75rem);
  margin: 0 auto 3rem;
  padding: clamp(0.481rem, 0.003rem + 2.39vw, 0.75rem) clamp(0.144rem, -0.001rem + 0.72vw, 0.225rem) 0;
  position: relative;
  width: clamp(18.375rem, 0.042rem + 91.67vw, 28.688rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info {
    background: linear-gradient(to right, #fdff78, #ff974e);
    border: none;
    display: grid;
    margin: 0 auto clamp(1.25rem, 0.024rem + 2.64vw, 3.188rem);
    padding: clamp(0.313rem, -0.004rem + 0.68vw, 0.813rem);
    place-content: center;
    position: relative;
    width: clamp(27.125rem, 58.33vw, 70rem);
  }
}

.day1-discount-info._top-firstview {
  margin-top: -1rem;
}

@media all and (min-width: 744px) {
  .day1-discount-info._top-firstview {
    margin-top: calc(clamp(3.438rem, 0.037rem + 7.31vw, 8.813rem) * -1);
  }
}

.day1-discount-info._service-firstview {
  margin-top: 2rem;
}

.day1-discount-info._content {
  margin-top: clamp(1.7rem, -0.045rem + 8.73vw, 2.3rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info._content {
    margin-top: clamp(1.25rem, 0.024rem + 2.64vw, 3.188rem);
  }
}

.day1-discount-info__label {
  background: #ef7d2e;
  color: #fff;
  font-size: clamp(0.775rem, 0.008rem + 3.83vw, 1.206rem);
  font-weight: 700;
  line-height: clamp(1.25rem, -0.017rem + 6.33vw, 1.962rem);
  margin: 0 auto;
  text-align: center;
  width: clamp(17.313rem, -0.132rem + 87.22vw, 27.125rem);
  z-index: 10;
}

@media all and (min-width: 744px) {
  .day1-discount-info__label {
    font-size: clamp(0.625rem, -0.008rem + 1.36vw, 1.625rem);
    line-height: clamp(1.563rem, 0.02rem + 3.32vw, 4rem);
    margin: unset;
    position: absolute;
    width: clamp(6.813rem, 0.051rem + 14.54vw, 17.5rem);
  }
}

.day1-discount-info__description {
  display: grid;
  gap: clamp(0.625rem, -0.008rem + 3.17vw, 0.981rem);
  grid-template-columns: 1fr;
  padding: clamp(0.481rem, -0.008rem + 2.44vw, 0.756rem) 0 clamp(0.531rem, -0.002rem + 2.67vw, 0.831rem);
  place-items: center;
  width: 100%;
}

@media all and (min-width: 744px) {
  .day1-discount-info__description {
    background: #fff;
    gap: clamp(0.438rem, 0.003rem + 0.94vw, 1.125rem);
    padding: clamp(0.388rem, 0.83vw, 1rem);
    width: clamp(26.375rem, 0.041rem + 56.63vw, 68rem);
  }
}

.day1-discount-info__description--head {
  color: #333;
  font-size: clamp(0.675rem, -0.003rem + 3.39vw, 1.056rem);
  font-weight: 700;
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--head {
    font-size: clamp(0.625rem, -0.008rem + 1.36vw, 1.625rem);
  }
}

.day1-discount-info__description--head span {
  color: #ef7d2e;
  font-size: 1.14em;
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--head span {
    font-size: 1.25em;
  }
}

.day1-discount-info__description--body-text {
  align-items: flex-end;
  background: #d3f1db;
  color: #333;
  display: flex;
  font-size: clamp(0.969rem, 0.002rem + 4.83vw, 1.512rem);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  padding: clamp(1.206rem, -0.005rem + 6.06vw, 1.887rem) 0;
  width: 100%;
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--body-text {
    align-items: baseline;
    border-radius: clamp(0.194rem, 0.42vw, 0.5rem);
    font-size: clamp(0.625rem, -0.008rem + 1.36vw, 1.625rem);
    padding: clamp(0.625rem, -0.008rem + 1.36vw, 1.625rem) 0;
  }

  .day1-discount-info._content .day1-discount-info__description--body-text {
    display: none;
  }
}

.day1-discount-info__description--body-text ._span-1 {
  align-self: self-start;
  background: #fff;
  border: 1px solid #ef7d2e;
  border-radius: 9999px;
  color: #ef7d2e;
  display: grid;
  font-size: clamp(0.531rem, -0.002rem + 2.67vw, 0.831rem);
  height: clamp(1.931rem, -0.002rem + 9.67vw, 3.019rem);
  padding: clamp(0.194rem, 0.005rem + 0.94vw, 0.3rem);
  place-content: center;
  transform: translateY(clamp(0.388rem, 0.249rem + 0.3vw, 0.606rem));
  width: clamp(0.969rem, 0.002rem + 4.83vw, 1.512rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--body-text ._span-1 {
    font-size: inherit;
    height: clamp(1rem, 0.051rem + 2.04vw, 2.5rem);
    padding: 0;
    transform: translateY(clamp(0.269rem, 0.004rem + 0.57vw, 0.688rem));
    width: clamp(2.125rem, -0.01rem + 4.59vw, 5.5rem);
  }
}

.day1-discount-info__description--body-text ._span-2 {
  color: #ef7d2e;
  margin: 0 clamp(0.144rem, -0.001rem + 0.72vw, 0.225rem);
}

.day1-discount-info__description--body-text ._span-2 span {
  font-size: 2.4em;
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--body-text ._span-2 span {
    font-size: 3em;
    text-shadow: 0 clamp(0.075rem, -0.004rem + 0.17vw, 0.2rem) clamp(0.075rem, -0.004rem + 0.17vw, 0.2rem) rgba(138, 158, 143, .5);
  }
}

.day1-discount-info__description--body-text ._span-3 {
  color: #ef7d2e;
  font-size: 2.4em;
  margin-left: clamp(0.144rem, -0.001rem + 0.72vw, 0.225rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--body-text ._span-3 {
    font-size: 3em;
    margin-left: clamp(0.156rem, 0.002rem + 0.33vw, 0.4rem);
    text-shadow: 0 clamp(0.075rem, -0.004rem + 0.17vw, 0.2rem) clamp(0.075rem, -0.004rem + 0.17vw, 0.2rem) rgba(138, 158, 143, .5);
  }
}

.day1-discount-info__description--body-text ._span-4 {
  display: grid;
  font-size: 1.2em;
  margin-left: clamp(0.144rem, -0.001rem + 0.72vw, 0.225rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--body-text ._span-4 {
    display: block;
    font-size: 1.5em;
    margin-left: 0;
  }
}

.day1-discount-info__description--body-text ._span-4 span {
  color: #ef7d2e;
  font-size: clamp(0.969rem, 0.002rem + 4.83vw, 1.512rem);
  transform: translateY(clamp(0.144rem, -0.001rem + 0.72vw, 0.225rem));
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--body-text ._span-4 span {
    font-size: inherit;
    margin-right: clamp(0.156rem, 0.002rem + 0.33vw, 0.4rem);
    text-shadow: 0 clamp(0.075rem, -0.004rem + 0.17vw, 0.2rem) clamp(0.075rem, -0.004rem + 0.17vw, 0.2rem) rgba(138, 158, 143, .5);
    transform: unset;
  }
}

.day1-discount-info__description--schedule-list {
  display: grid;
  gap: clamp(0.287rem, -0.001rem + 1.44vw, 0.45rem);
  width: 100%;
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--schedule-list {
    gap: clamp(0.231rem, -0.002rem + 0.5vw, 0.6rem);
  }
}

.day1-discount-info__description--schedule-list ol {
  display: grid;
  gap: clamp(0.287rem, -0.001rem + 1.44vw, 0.45rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--schedule-list ol {
    gap: clamp(0.231rem, -0.002rem + 0.5vw, 0.6rem);
  }
}

._discounted-price-schedules .day1-discount-info__description--schedule-list_item {
  background: #ffffdc;
}

._list-price-schedules .day1-discount-info__description--schedule-list_item {
  background: #ededed;
}

.day1-discount-info__description--schedule-list_item {
  display: grid;
  grid-template-areas: "sche l-price btn" "sche d-price btn";
  height: clamp(2.75rem, -0.028rem + 13.89vw, 4.313rem);
  place-content: center;
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--schedule-list_item {
    grid-template-areas: "sche l-price d-price btn";
    height: clamp(2.313rem, -0.02rem + 5.02vw, 6rem);
  }
}

.day1-discount-info__description--schedule-list_item ._sche {
  font-size: clamp(0.581rem, 0.059rem + 2.61vw, 0.875rem);
  font-weight: 400;
  grid-area: sche;
  line-height: 1.4;
  margin-right: clamp(1.25rem, 0.028rem + 6.11vw, 1.938rem);
  place-self: center; 
  text-align: center;
  width: clamp(3.5rem, 0.056rem + 17.22vw, 5.438rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--schedule-list_item ._sche {
    font-size: clamp(0.463rem, 0.004rem + 0.99vw, 1.188rem);
    font-weight: 700;
    margin-right: clamp(0.813rem, -0.018rem + 1.79vw, 2.125rem);
    width: clamp(3rem, -0.045rem + 6.55vw, 7.813rem);
  }
}

.day1-discount-info__description--schedule-list_item ._list-price_pc {
  display: none;
  grid-area: l-price;
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--schedule-list_item ._list-price_pc {
    display: block;
    font-size: clamp(0.388rem, 0.83vw, 1rem);
    font-weight: 700;
    text-align: center;
    width: clamp(5.563rem, -0.013rem + 11.99vw, 14.375rem);
  }

  ol._list-price-schedules .day1-discount-info__description--schedule-list_item ._list-price_pc {
    font-size: clamp(0.463rem, 0.004rem + 0.99vw, 1.188rem);
    line-height: 1.3;
    place-self: center;
  }
}

.day1-discount-info__description--schedule-list_item ._list-price_sp {
  font-size: clamp(0.581rem, 0.059rem + 2.61vw, 0.875rem);
  font-weight: 400;
  grid-area: l-price;
  width: clamp(5.313rem, -0.021rem + 26.67vw, 8.313rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--schedule-list_item ._list-price_sp {
    display: none;
  }
}

ol._discounted-price-schedules .day1-discount-info__description--schedule-list_item ._list-price_sp {
  font-size: clamp(0.581rem, 0.059rem + 2.61vw, 0.875rem);
}

ol._list-price-schedules .day1-discount-info__description--schedule-list_item ._list-price_sp {
  font-size: clamp(0.481rem, 0.003rem + 2.39vw, 0.75rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--schedule-list_item ._list-price_pc ._condition {
    background: #fff;
    border-radius: 9999px;
    display: block;
    font-size: clamp(0.463rem, 0.004rem + 0.99vw, 1.188rem);
    line-height: clamp(0.813rem, -0.018rem + 1.79vw, 2.125rem);
    width: 100%;
  }

  .day1-discount-info__description--schedule-list_item ._list-price_pc ._condition span {
    color: #ef7d2e;
  }

  .day1-discount-info__description--schedule-list_item ._list-price_pc ._price {
    display: inline-block;
    font-size: clamp(0.688rem, -0.024rem + 1.53vw, 1.813rem);
    line-height: 1.2;
    margin-left: clamp(0.156rem, 0.002rem + 0.33vw, 0.4rem);
    padding: 0 clamp(0.156rem, 0.002rem + 0.33vw, 0.4rem);
    position: relative;
  }

  .day1-discount-info__description--schedule-list_item ._list-price_pc ._price::after {
    background: #ef7d2e;
    content: "";
    height: clamp(0.119rem, 0.004rem + 0.25vw, 0.3rem);
    left: 0;
    opacity: .6;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }
}

.day1-discount-info__description--schedule-list_item ._offered-price {
  font-size: clamp(0.688rem, 0.021rem + 3.33vw, 1.063rem);
  font-weight: 700;
  grid-area: d-price;
  width: clamp(5.313rem, -0.021rem + 26.67vw, 8.313rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--schedule-list_item ._offered-price {
    align-items: baseline;
    display: flex;
    font-size: clamp(0.688rem, -0.024rem + 1.53vw, 1.813rem);
    margin-left: clamp(0.231rem, -0.002rem + 0.5vw, 0.6rem);
    place-self: center;
    width: auto;
  }
}

ol._discounted-price-schedules .day1-discount-info__description--schedule-list_item ._offered-price {
  color: #ef7d2e;
}

@media all and (min-width: 744px) {
  ol._discounted-price-schedules .day1-discount-info__description--schedule-list_item ._offered-price {
    color: #515151;
  }
}

.day1-discount-info__description--schedule-list_item ._offered-price i {
  display: none;
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--schedule-list_item ._offered-price i {
    align-self: center;
    background: url(../images/frontpage/firstview/arrow-right.svg) no-repeat center/contain;
    display: block;
    height: clamp(1.063rem, -0.045rem + 2.38vw, 2.813rem);
    margin-right: clamp(0.688rem, -0.024rem + 1.53vw, 1.813rem);
    width: clamp(0.875rem, -0.034rem + 1.96vw, 2.313rem);
  }
}

.day1-discount-info__description--schedule-list_item ._offered-price span {
  font-size: clamp(1.188rem, 0.076rem + 5.56vw, 1.813rem);
  line-height: 1;
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--schedule-list_item ._offered-price span {
    font-size: clamp(1.25rem, 0.024rem + 2.64vw, 3.188rem);
    margin-right: clamp(0.156rem, 0.002rem + 0.33vw, 0.4rem);
  }

  ol._discounted-price-schedules .day1-discount-info__description--schedule-list_item ._offered-price span {
    color: #ef7d2e;
  }
}

.day1-discount-info__description--schedule-list_item ._entry-btn {
  background: #ef7d2e;
  border: 1px solid #fff;
  border-radius: clamp(0.581rem, 0.059rem + 2.61vw, 0.875rem);
  box-shadow: 0 clamp(0.194rem, 0.005rem + 0.94vw, 0.3rem) clamp(0.194rem, 0.005rem + 0.94vw, 0.3rem) rgba(0,0,0,.25);
  color: #fff;
  font-size: clamp(0.581rem, 0.059rem + 2.61vw, 0.875rem);
  font-weight: 700;
  grid-area: btn;
  height: clamp(2rem, -0.111rem + 10.56vw, 3.188rem);
  margin-left: clamp(0.938rem, -0.063rem + 5vw, 1.5rem);
  place-self: center;
  transition: transform 0.2s ease;
  width: clamp(6.188rem, -0.035rem + 31.11vw, 9.688rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--schedule-list_item ._entry-btn {
    border-width: clamp(0.075rem, -0.004rem + 0.17vw, 0.2rem);
    border-radius: clamp(0.231rem, -0.002rem + 0.5vw, 0.6rem);
    box-shadow: 0 var(--clamp-4) var(--clamp-4) rgba(0,0,0,.25);
    font-size: clamp(0.463rem, 0.004rem + 0.99vw, 1.188rem);
    height: clamp(1.625rem, 0.004rem + 3.49vw, 4.188rem);
    margin-left: clamp(1.5rem, -0.003rem + 3.23vw, 3.875rem);
    width: clamp(5.813rem, 12.5vw, 15rem);
  }
}

.day1-discount-info__description--schedule-list_item ._entry-btn._e-page {
  border-color: #ef7d2e;
  border-radius: 9999px;
}

.day1-discount-info__description--schedule-list_item .day1-discount-info__description--entry-btn {
  align-items: center;
  display: flex;
  gap: clamp(0.388rem, -0.001rem + 1.94vw, 0.606rem);
  padding-left: clamp(0.287rem, -0.001rem + 1.44vw, 0.45rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--schedule-list_item .day1-discount-info__description--entry-btn {
    gap: clamp(0.388rem, 0.83vw, 1rem);
    padding-left: clamp(0.313rem, -0.004rem + 0.68vw, 0.813rem);
  }
}

.day1-discount-info__description--schedule-list_item .day1-discount-info__description--entry-btn::after {
  background: url(../images/frontpage/icon/caret_right_white.svg) no-repeat center/contain;
  content: "";
  height: clamp(0.531rem, 0.031rem + 2.5vw, 0.813rem);
  width: clamp(0.338rem, -0.007rem + 1.72vw, 0.531rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--schedule-list_item .day1-discount-info__description--entry-btn::after {
    height: clamp(0.506rem, -0.004rem + 1.1vw, 1.313rem);
    width: clamp(0.269rem, 0.004rem + 0.57vw, 0.688rem);
  }
}

.day1-discount-info__description--cta-btns {
  align-items: center;
  display: flex;
  gap: clamp(0.819rem, -0.003rem + 4.11vw, 1.281rem);
  justify-content: center;
  margin: clamp(0.819rem, -0.003rem + 4.11vw, 1.281rem) 0 clamp(0.938rem, -0.063rem + 5vw, 1.5rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--cta-btns {
    gap: clamp(2.5rem, 0.048rem + 5.27vw, 6.375rem);
    margin: clamp(0.506rem, -0.004rem + 1.1vw, 1.313rem) 0 clamp(0.531rem, -0.003rem + 1.15vw, 1.375rem);
  }
}

.day1-discount-info__description--cta-btns div {
  border: 1px solid;
  border-radius: clamp(0.581rem, 0.003rem + 2.89vw, 0.906rem);
  box-shadow: 0 clamp(0.194rem, 0.005rem + 0.94vw, 0.3rem) clamp(0.194rem, 0.005rem + 0.94vw, 0.3rem) rgba(0,0,0,.25);
  font-size: clamp(0.581rem, 0.003rem + 2.89vw, 0.906rem);
  font-weight: 700;
  height: clamp(2.225rem, 0.003rem + 11.11vw, 3.475rem);
  position: relative;
  transition: transform 0.2s ease;
  width: clamp(8rem, 40vw, 12.5rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--cta-btns div {
    border-width: clamp(0.075rem, -0.004rem + 0.17vw, 0.2rem); 
    border-radius: clamp(0.231rem, -0.002rem + 0.5vw, 0.6rem);
    box-shadow: 0 var(--clamp-4) var(--clamp-4) rgba(0,0,0,.25);
    font-size: clamp(0.463rem, 0.004rem + 0.99vw, 1.188rem);
    height: clamp(1.625rem, 0.004rem + 3.49vw, 4.188rem);
    width: clamp(7.375rem, 0.02rem + 15.82vw, 19rem);
  }
}

.day1-discount-info__description--cta-btns div._schedule {
  background: #fff;
  border-color: #ef7d2e;
  color: #ef7d2e;
}

.day1-discount-info__description--cta-btns div._schedule._e-page {
  border-radius: 9999px;
}

.day1-discount-info__description--cta-btns div._entry {
  background: #ef7d2e;
  border-color: #fff;
  color: #fff;
}

.day1-discount-info__description--cta-btns div._entry._e-page {
  border-radius: 9999px;
  border-color: #ef7d2e;
}

.day1-discount-info__description--cta-btns div::after {
  content: "";
  position: absolute;
  right: clamp(0.625rem, -0.008rem + 3.17vw, 0.981rem);
  top: 50%;
  transform: translateY(-50%);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--cta-btns div::after {
    right: clamp(0.487rem, 0.005rem + 1.04vw, 1.25rem);
  }
}

.day1-discount-info__description--cta-btns div._schedule::after {
  background: url(../images/frontpage/icon/caret_down_orange.svg) no-repeat center/contain;
  height: clamp(0.338rem, -0.007rem + 1.72vw, 0.531rem);
  width: clamp(0.531rem, -0.002rem + 2.67vw, 0.831rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--cta-btns div._schedule::after {
    height: clamp(0.269rem, 0.004rem + 0.57vw, 0.688rem);
    width: clamp(0.506rem, -0.004rem + 1.1vw, 1.313rem);
  }
}

.day1-discount-info__description--cta-btns div._entry::after {
  background: url(../images/frontpage/icon/caret_right_white.svg) no-repeat center/contain;
  height: clamp(0.531rem, -0.002rem + 2.67vw, 0.831rem);
  width: clamp(0.338rem, -0.007rem + 1.72vw, 0.531rem);
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--cta-btns div._entry::after {
    height: clamp(0.506rem, -0.004rem + 1.1vw, 1.313rem);
    width: clamp(0.269rem, 0.004rem + 0.57vw, 0.688rem);
  }
}

div:has(> .day1-discount-info__description--entry-btn:hover) {
  transform: translateY(0.125rem);
}

.day1-discount-info__description--entry-btn {
  align-items: center;
  color: inherit;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
  z-index: 5;
}

.day1-discount-info__description--entry-btn::before {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 12.5rem;
  left: -65%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
  width: 50%;
  z-index: -1;
}

.day1-discount-info__description--entry-btn:hover::before {
  animation: btn-animation 0.2s linear 0s forwards;
}

@keyframes btn-animation {
  0% {
    left: -65%;
  }
  100% {
    left: 115%;
  }
}

.day1-discount-info__description--notes {
  margin-top: clamp(0.388rem, -0.001rem + 1.94vw, 0.606rem);
  padding: 0 clamp(0.287rem, -0.001rem + 1.44vw, 0.45rem);
  width: 100%;
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--notes {
    margin-top: clamp(0.212rem, -0.001rem + 0.46vw, 0.55rem);
    padding: 0;
  }
}

.day1-discount-info__description--notes li {
  display: flex;
  font-size: clamp(0.481rem, 0.003rem + 2.39vw, 0.75rem);
  font-weight: 400;
}

@media all and (min-width: 744px) {
  .day1-discount-info__description--notes li {
    font-size: clamp(0.269rem, 0.004rem + 0.57vw, 0.688rem);
  }
}

.day1-discount-info__description--notes li::before {
  content: "※";
}

.day1-discount-info__description--notes li a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.day1-discount-info__description--notes li a:hover {
  color: #4e91e8;
}

.top-cta-field {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

@media all and (max-width: 1279px) {
  .top-cta-field {
    max-width: 500px;
    padding: 20px 0 30px;
    width: calc(100% - 20px);
  }
}

@media all and (min-width: 1280px) {
  .top-cta-field {
    padding: 30px 0 40px;
    width: 760px;
  }
}

.top-cta {
  border-radius: 8px;
  box-shadow: 0 3px 5px rgba(0,0,0,.5);
  font-size: 3.6vw;
  font-weight: bold;
  line-height: 1.4em;
  padding: 12px 0;
  text-align: center;
  width: 47.5%;
}

@media all and (min-width: 520px) {
  .top-cta {
    font-size: 20px;
  }
}

@media all and (min-width: 1280px) {
  .top-cta {
    transition: box-shadow .3s 0s ease;
  }

  .top-cta:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,.8);
  }
}

.white-box {
  background-color: #fff;
  border: 2px solid #34a853;;
  color: #34a853;
}

.green-box {
  background-color: #34a853;
  border: 2px solid #34a853;
  color: #fff;
}

@media all and (max-width: 735px) {
  .content-wrapper-2nd {
    background-color: #f8ffe4;
    padding: 40px 10px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .content-wrapper-2nd {
    background-color: #f8ffe4;
    padding: 60px 0;
  }
}

@media all and (min-width: 1280px) {
  .content-wrapper-2nd {
    background-color: #f8ffe4;
    padding: 80px 0;
  }
}

.content-headcopy {
  color: #34a853;
  line-height: 1.3em;
  text-align: center;
}

.sitetop-kuchikomi-title {
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 1.5em;
  text-align: center;
}

.sitetop-kuchikomi-summary {
  font-size: 1.25em;
  line-height: 1.4;
  text-align: center;
}

.sitetop-kuchikomi-summary-rating {
  color: #e67a00;
  font-size: 2em;
  font-weight: bold;
}

.sitetop-kuchikomi-interview {
  margin: 3em 0 4em;
}

.sitetop-kuchikomi-box {
  border-top: 1px dashed #999;
  margin: 1em auto 0;
  max-width: 650px;
}

.sitetop-kuchikomi-details-date {
    color: #aaa;
    font-size: .8em;
}

.sitetop-kuchikomi-details-applicant {
    font-size: .8em;
}

.kuchikomi-row-color:nth-child(even) {
  background: #f3f3f3;
}

.kuchikomi-row-color:nth-child(odd) {
  background: #fff;
}

.sitetop-kuchikomi-link {
  background: #fff;
  border: 1px solid #999;
  box-shadow: 1px 3px 5px rgba(0,0,0,.0);
  color: #666!important;
  display: block;
  font-size: 1.1em;
  font-weight: bold;
  line-height: 2.6em;
  margin: 0 auto;
  max-width: 320px;
  text-align: center;
  transition: box-shadow .3s 0s ease;
  width: 90%;
}

.sitetop-kuchikomi-link:hover {
  box-shadow: 1px 3px 10px rgba(0,0,0,.4);
}

@media all and (max-width: 735px) {
  .content-wrapper-3rd {
    padding: 40px 10px 60px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .content-wrapper-3rd {
    margin: 0 auto;
    padding: 60px 0 80px;
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .content-wrapper-3rd {
    margin: 0 auto;
    padding: 80px 0 100px;
    width: 650px;
  }
}

.excelcamp-features {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: auto;
  margin-top: 30px;
  overflow: hidden;
  transition: height .2s 0s ease;
}

.excelcamp-feature-index {
  background: #fff;
  border: 2px solid #34a853;
  color: #34a853;
  font-size: 18px;
  text-align: center;
}

@media all and (max-width: 359px) {
  .excelcamp-feature-index {
    height: 50px;
    line-height: 50px;
    width: 25px;
  }
}

@media all and (min-width: 360px) and (max-width: 735px) {
  .excelcamp-feature-index {
    height: 52px;
    line-height: 52px;
    width: 35px;
  }

  .excelcamp-feature-index:last-of-type {
    height: 56px;
    line-height: 56px;
  }
}

@media all and (min-width: 736px) {
  .excelcamp-feature-index {
    height: 60px;
    line-height: 60px;
    width: 35px;
  }
}

.excelcamp-feature-title {
  border-bottom: 1px solid #666;
  cursor: pointer;
  font-weight: normal;
  line-height: 1.4em;
  padding-bottom: 3px;
  position: relative;
}

@media all and (max-width: 359px) {
  .excelcamp-feature-title {
    letter-spacing: -1px;
    width: calc(100% - 40px);
  }
}

@media all and (min-width: 360px) and (max-width: 735px) {
  .excelcamp-feature-title {
    font-size: 15px;
    letter-spacing: -1px;
    width: calc(100% - 50px);
  }
}

@media all and (min-width: 736px) {
  .excelcamp-feature-title {
    width: calc(100% - 50px);
  }
}

.excelcamp-feature-title::after {
  border-top: 16px solid #ccc;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  bottom: 15px;
  content: '';
  position: absolute;
  transform: rotate(0);
  transition: all .2s 0s ease;
  right: 10px;
}

@media all and (min-width: 1280px) {
  .excelcamp-feature-title:hover::after {
    border-top-color: #34a853;
  }
}

.excelcamp-feature-title[data-arrow="upward"]::after {
  transform: rotate(180deg);
}

.excelcamp-feature-body {
  background-color: #f3f3f3;
  margin-left: auto;
  padding: 20px 15px 5px;
}

@media all and (max-width: 359px) {
  .excelcamp-feature-body {
    width: calc(100% - 40px);
  }
}

@media all and (min-width: 360px) {
  .excelcamp-feature-body {
    width: calc(100% - 50px);
  }
}

.excelcamp-feature-body-txt {
  line-height: 1.3em;
  margin-bottom: 1em;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media all and (max-width: 735px) {
  .content-wrapper-4th {
    background-color: #f3f3f3;
    padding: 40px 10px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .content-wrapper-4th {
    background-color: #f3f3f3;
    padding: 60px 0;
  }
}

@media all and (min-width: 1280px) {
  .content-wrapper-4th {
    background-color: #f3f3f3;
    padding: 80px 0;
  }
}

.things-can-be-mastered {
  margin-top: 30px;
  overflow: hidden;
  padding: 0 15px;
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .things-can-be-mastered {
    margin: 30px auto 0;
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .things-can-be-mastered {
    margin: 30px auto 0;
    width: 650px;
  }
}

.list-of-things {
  margin-bottom: 20px;
  margin-left: auto;
  width: calc(100% - 30px);
}

.list-of-things li {
  align-items: center;
  border-bottom: 1px solid #666;
  display: flex;
  margin-bottom: 10px;
  min-height: 50px;
  position: relative;
  text-align: justify;
  text-justify: inter-ideograph;
}

.list-of-things li::before {
  background-image: url('../images/icon/checkmark.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 16px;
  left: -30px;
  position: absolute;
  top: calc(50% - 8px);
  width: 16px;
}

.list-of-things li span {
  font-weight: bold;
  line-height: 1.3em;
}

.view-more-things {
  background-color: #fff;
  border: 1px solid #666;
  border-radius: 8px;
  box-shadow: 0 3px 5px rgba(0,0,0,.5);
  cursor: pointer;
  font-size: 16px;
  margin: 20px auto 0;
  padding: 15px;
  text-align: center;
  width: 80%;
}

@media all and (max-width: 735px) {
  .view-more-things {
    width: 80%;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .view-more-things {
    box-sizing: border-box;
    width: 440px;
  }
}

@media all and (min-width: 1280px) {
  .view-more-things {
    box-sizing: border-box;
    transition: box-shadow .3s 0s ease;
    width: 555px;
  }

  .view-more-things:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,.8);;
  }
}

.view-more-things._e-page {
  border-color: #ef7d2e;
  border-radius: 9999px;
  box-shadow: 0 clamp(0.194rem, 0.005rem + 0.94vw, 0.3rem) clamp(0.194rem, 0.005rem + 0.94vw, 0.3rem) rgba(0,0,0,.25);
  color: #ef7d2e;
  transition: transform .2s ease;
  width: var(--clamp-320sp);
}

@media all and (min-width: 744px) {
  .view-more-things._e-page {
    box-shadow: 0 var(--clamp-4) var(--clamp-4) rgba(0,0,0,.25);
    width: var(--clamp-320);
  }
}

.view-more-things._e-page:hover {
  transform: translateY(var(--clamp-2sp));
}

@media all and (min-width: 744px) {
  .view-more-things._e-page:hover {
    transform: translateY(var(--clamp-2));
  }
}

@media all and (max-width: 735px) {
  .content-wrapper-5th {
    padding: 20px 10px 35px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .content-wrapper-5th {
    padding: 40px 0 55px;
  }
}

@media all and (min-width: 1280px) {
  .content-wrapper-5th {
    padding: 60px 0 75px;
  }
}

.content-wrapper-5th .content-headcopy {
  background-color: #f8ffe4;
  padding: 20px 0;
}

@media all and (max-width: 735px) {
  .content-wrapper-5th .content-headcopy {
    margin-left: -10px;
    width: calc(100% + 20px);
  }
}

@media all and (min-width: 736px) {
  .content-wrapper-5th .content-headcopy {
    width: 100%;
  }
}

.content-wrapper-5th .content-headcopy span {
  line-height: 1.3em;
}

.excelcamp-video {
  margin: 10px auto;
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .excelcamp-video {
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-video {
    width: 650px;
  }
}

.sitetop-movie-wrapper {
  height: 0;
  margin-top: 15px;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

@media all and (min-width: 520px) and (max-width: 959px) {
  .sitetop-movie-wrapper {
    margin-top: 20px;
  }
}

@media all and (min-width: 960px) {
  .sitetop-movie-wrapper {
    margin-top: 70px;
  }
}

.sitetop-movie-wrapper video {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.excelcamp-video iframe {
  width: 100%;
}

@media all and (min-width: 1280px) {
  .excelcamp-video iframe {
    height: 420px;
  }
}

.excelcamp-video-notes {
  box-sizing: border-box;
  padding-left: 1.5em;
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .excelcamp-video-notes {
    margin: 0 auto;
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-video-notes {
    margin: 0 auto;
    width: 650px;
  }
}

.excelcamp-video-notes li {
  line-height: 1.4em;
  margin-bottom: 5px;
  position: relative;
  text-align: justify;
  text-justify: inter-ideograph;
}

.excelcamp-video-notes li::before {
  content: '※';
  left: -1.5em;
  position: absolute;
  top: 0;
}

@media all and (max-width: 735px) {
  .content-wrapper-6th {
    background-color: #f8ffe4;
    padding: 40px 0;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .content-wrapper-6th {
    background-color: #f8ffe4;
    padding: 60px 0;
  }
}

@media all and (min-width: 1280px) {
  .content-wrapper-6th {
    background-color: #f8ffe4;
    padding: 80px 0;
  }
}

/********** ExcelCampのサービス内容 **********/
.excelcamp-services__tab,
.excelcamp-services__desc {
  width: 50%;
  margin: 0 auto;
}

@media all and (max-width: 735px) {
  .excelcamp-services__tab,
  .excelcamp-services__desc {
    width: 100%;
  }
}

.excelcamp-services__tab {
  margin-top: 40px;
  padding-left: 16px;
}

.excelcamp-services__tab-button {
  padding: 4px 24px;
  font-size: 20px;
  font-weight: bold;
  color: #35A854;
  background-color: #FFFFFF;
  border-left: 3px solid #269343;
  border-top: 3px solid #269343;
  border-right: 3px solid #269343;
  border-bottom: 1px solid #269343;
}

.excelcamp-services__tab button img {
  margin-top: 4px;
}

.tab-active {
  color: #FFFFFF;
  background-color: #269343;
  padding-top: 16px;
}

.excelcamp-services__desc {
  display: none;
  padding: 16px 8px;
  border-radius: 10px;
  background-color: #269343;
}

.desc-active {
  display: block;
}

.excelcamp-services__desc-tab {
  display: flex;
  margin: -16px -8px 16px -8px;
}

.excelcamp-services__desc-tab-button {
  width: 50%;
  font-size: 16px;
  font-weight: bold;
  color: #269343;
  background-color: #FFFFFF;
  border: 0;
}

.excelcamp-services__desc-tab button:first-child {
  border-radius: 10px 0 0 0;
  border-top: 1px solid #269343;
  border-left: 1px solid #269343;
}

.excelcamp-services__desc-tab button:last-child {
  border-radius: 0 10px 0 0;
  border-top: 1px solid #269343;
  border-right: 1px solid #269343;
}

.day3-tab-active {
  color: #FFFFFF;
  background-color: #269343;
}

.excelcamp-services__desc-item {
  margin-bottom: 16px;
}

.excelcamp-services__desc-inner {
  display: none;
}

.day3-desc-active {
  display: block;
}

.excelcamp-services__desc-item-title {
  padding: 8px 24px;
  background-color: #C7E9D0;
  border-radius: 10px 10px 0 0;
}

.excelcamp-services__desc-item-title p {
  font-size: 16px;
  font-weight: bold;
  color: #707070;
}

.excelcamp-services__desc-item-detail {
  padding: 8px 24px;
  background-color: #FFFFFF;
  border-radius: 0 0 10px 10px;
}

.excelcamp-services__desc-item-detail p {
  font-size: 16px;
  font-weight: bold;
  color: #707070;
}

.excelcamp-services__desc-item-detail-contents {
  padding-left: 40px;
}

.list-item {
  margin-bottom: 10px;
  position: relative;
  text-align: justify;
  text-justify: inter-ideograph;
}

.item-1::before,
.item-2::before,
.item-3::before,
.item-4::before,
.item-5::before {
  background-color: #34a853;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  height: 30px;
  left: -2.6em;
  line-height: 30px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 30px;
}

.item-1::before {
  content: '01';
}

.item-2::before {
  content: '02';
}

.item-3::before {
  content: '03';
}

.item-4::before {
  content: '04';
}

.item-5::before {
  content: '05';
}

.list-item-description {
  letter-spacing: -.5px;
  padding-top: 6px;
}

.list-item-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 5px;
}

.excelcamp-in-page-cta-btn {
  background-color: #e67a00;
  border-radius: 8px;
  box-shadow: 0 3px 5px rgba(0,0,0,.5);
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1em;
  padding: 15px;
  position: relative;
  text-align: center;
}

@media all and (max-width: 735px) {
  #excelcamp-content-phase .excelcamp-in-page-cta-btn {
    margin: 55px auto 0;
    width: 90%;
  }

  #excelcamp-closing-phase .excelcamp-in-page-cta-btn {
    margin: 30px auto 0;
    width: 90%;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  #excelcamp-content-phase .excelcamp-in-page-cta-btn {
    margin: 65px auto 0;
    width: 440px;
  }

  #excelcamp-closing-phase .excelcamp-in-page-cta-btn {
    margin: 40px auto 0;
    width: 440px;
  }
}

@media all and (min-width: 1280px) {
  #excelcamp-content-phase .excelcamp-in-page-cta-btn,
  #excelcamp-closing-phase .excelcamp-in-page-cta-btn {
    margin: 65px auto 0;
    transition: box-shadow .3s 0s ease;
    width: 555px;
  }

  .excelcamp-in-page-cta-btn:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,.8);
  }
}

.excelcamp-in-page-cta-btn::before {
  color: #f00;
  content: '＼オンライン参加も可能です／';
  display: block;
  font-size: .8em;
  left: 0;
  position: absolute;
  text-align: center;
  top: -20px;
  width: 100%;
}

@media all and (max-width: 735px) {
  .content-wrapper-7th {
    background-color: #f3f3f3;
    padding: 40px 10px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .content-wrapper-7th {
    background-color: #f3f3f3;
    padding: 60px 0;
  }
}

@media all and (min-width: 1280px) {
  .content-wrapper-7th {
    background-color: #f3f3f3;
    padding: 80px 0;
  }
}

.excelcamp-achievements {
  padding-bottom: 20px;
}

@media all and (max-width: 735px) {
  .excelcamp-achievements {
    margin-top: 10px;
  }  
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .excelcamp-achievements {
    margin: 15px auto 0;
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-achievements {
    margin: 20px auto 0;
    width: 650px;
  }
}

.bottom-border {
  border-bottom: 1px dotted #666;
}

.excelcamp-achievements-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1em;
}

@media all and (max-width: 1279px) {
  .excelcamp-achievements-title {
    font-size: 20px;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-achievements-title {
    font-size: 24px;
  }
}

.excelcamp-achievements-box {
  background-color: #fff;
  margin-top: 10px;
}

.mod-padding {
  padding: 10px 0 20px;
}

.excelcamp-achievements-link {
  display: block;
  height: 100%;
  padding-bottom: 20px;
  width: 100%;
}

.excelcamp-achievements-pic {
  background-color: #fff;
  height: 186px;
  margin-bottom: 10px;
  overflow: hidden;
  width: 100%;
}

@media all and (max-width: 735px) {
  .excelcamp-achievements-pic {
    height: 186px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .excelcamp-achievements-pic {
    height: 250px;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-achievements-pic {
    height: 300px;
  }
}

.excelcamp-achievements-article-title {
  color: #e67a00;
  line-height: 1.3em;
  padding: 0 10px;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media all and (max-width: 735px) {
  .excelcamp-achievements-article-title {
    padding: 0 10px;
  }
}

@media all and (min-width: 735px) {
  .excelcamp-achievements-article-title {
    padding: 0 20px;
  }
}

@media all and (max-width: 359px) {
  .article-title-size-1 {
    font-size: 18px;
  }

  .article-title-size-2 {
    font-size: 22.5px;
  }
}

@media all and (min-width: 360px) and (max-width: 735px) {
  .article-title-size-1 {
    font-size: 21px;
  }

  .article-title-size-2 {
    font-size: 25px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .article-title-size-1,
  .article-title-size-2 {
    font-size: 22px;
  }
}

@media all and (min-width: 1280px) {
  .article-title-size-1,
  .article-title-size-2 {
    font-size: 28px;
  }
}
.excelcamp-achievements-article-excerpt {
  color: #666;
  line-height: 1.4em;
  margin-top: 10px;
  padding: 0 10px;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media all and (max-width: 735px) {
  .excelcamp-achievements-article-excerpt {
    padding: 0 10px;
  }
}

@media all and (min-width: 735px) {
  .excelcamp-achievements-article-excerpt {
    padding: 0 20px;
  }
}

.excelcamp-achievements-other-links {
  line-height: 1.4em;
  margin-top: 20px;
  text-align: center;
}

.excelcamp-achievements-other-links a {
  border-bottom: 1px solid blue;
  color: blue;
  line-height: 2em;
  transition: all .2s 0s ease;
}

.excelcamp-achievements-other-links a:hover {
  border-color: #e67a00;
  color: #e67a00;
}

.excelcamp-achievements-cta-btn {
  background-color: #e67a00;
  border: 2px solid #e67a00;
  border-radius: 8px;
  box-shadow: 0 3px 5px rgba(0,0,0,.5);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1em;
  display: block;
  margin: 30px auto 0;
  padding: 15px;
  text-align: center;
  width: 80%;
}

@media all and (min-width: 1280px) {
  .excelcamp-achievements-cta-btn {
    transition: box-shadow .3s 0s ease;
  }

  .excelcamp-achievements-cta-btn:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,.8);
  }
}

.excelcamp-achievements-cta-btn._e-page {
  background: #fff;
  border-radius: 9999px;
  border-color: #ef7b2c;
  box-shadow: 0 clamp(0.194rem, 0.005rem + 0.94vw, 0.3rem) clamp(0.194rem, 0.005rem + 0.94vw, 0.3rem) rgba(0, 0, 0, .25);
  color: #ef7b2c;
  transition: transform .2s ease;
  width: var(--clamp-320sp);
}

@media all and (min-width: 744px) {
  .excelcamp-achievements-cta-btn._e-page {
    box-shadow: 0 var(--clamp-4) var(--clamp-4) rgba(0, 0, 0, .25);
    width: var(--clamp-320);
  }
}

.excelcamp-achievements-cta-btn._e-page:hover {
  transform: translateY(var(--clamp-2sp));
}

@media all and (min-width: 744px) {
  .excelcamp-achievements-cta-btn._e-page:hover {
    transform: translateY(var(--clamp-2));
  }
}

@media all and (max-width: 735px) {
  .content-wrapper-8th {
    padding: 40px 10px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .content-wrapper-8th {
    margin: 0 auto;
    padding: 60px 0;
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .content-wrapper-8th {
    margin: 0 auto;
    padding: 80px 0;
    width: 650px;
  }
}

.excelcamp-story-subhead {
  font-size: 18px;
  line-height: 1.4em;
  text-align: center;
}

.excelcamp-story-wrapper {
  margin-top: 20px;
  padding: 0 30px;
}

@media all and (max-width: 735px) {
  .excelcamp-story-pic {
    height: 200px;
    width: 100%;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .excelcamp-story-pic {
    height: 250px;
    width: 100%;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-story-pic {
    height: 350px;
    width: 100%;
  }
}

.excelcamp-story-career-box {
  background-color: #f3f3f3;
  margin-top: 10px;
}

@media all and (max-width: 735px) {
  .excelcamp-story-career-box {
    padding: 15px 10px;
  }
}

@media all and (min-width: 736px) {
  .excelcamp-story-career-box {
    padding: 20px;
  }
}

.excelcamp-story-career {
  font-size: 18px;
  line-height: 1em;
  margin-bottom: 5px;
}

.excelcamp-story-career-title {
  line-height: 1.2em;
  margin-bottom: 4px;
  text-align: justify;
  text-justify: inter-ideograph;
}

.excelcamp-story-career-details {
  line-height: 1.4em;
  margin-top: 20px;
  text-align: justify;
  text-justify: inter-ideograph;
}

.excelcamp-story-message-box {
  margin-top: 2em;
}

.excelcamp-story-message {
  line-height: 1.4em;
  margin-bottom: 1em;
  text-align: justify;
  text-justify: inter-ideograph;
}

.content-wrapper-9th {
  background-color: #f3f3f3;
  position: relative;
}

@media all and (max-width: 735px) {
  .content-wrapper-9th {
    padding: 40px 10px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .content-wrapper-9th {
    padding: 60px 0;
  }
}

@media all and (min-width: 1280px) {
  .content-wrapper-9th {
    padding: 80px 0;
  }
}

.content-wrapper-9th::before {
  border-top: 2px dotted #aaa;
  content: '';
  height: 1px;
  position: absolute;
  top: 0;
}

@media all and (max-width: 735px) {
  .content-wrapper-9th::before {
    left: 10px;
    width: calc(100% - 20px);
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .content-wrapper-9th::before {
    left: calc(50% - 250px);
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .content-wrapper-9th::before {
    left: calc(50% - 325px);
    width: 650px;
  }
}

.excelcamp-instructor-subhead {
  font-size: 18px;
  line-height: 1.4em;
  text-align: center;
}

.excelcamp-instructor-wrapper {
  padding-top: 20px;
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .excelcamp-instructor-wrapper {
    margin: 20px auto 0;
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-instructor-wrapper {
    margin: 20px auto 0;
    width: 650px;
  }
}

.excelcamp-instructor-wrapper:nth-of-type(1) {
  padding-bottom: 30px;
}

.excelcamp-instructor-wrapper:nth-of-type(2) {
  border-top: 2px dotted #aaa;
}

.excelcamp-instructor-pic {
  margin: 0 auto;
  max-height: 528px;
  max-width: 472px;
  width: 100%;
}

@media all and (max-width: 735px) {
  .excelcamp-instructor-pic {
    width: calc(100% - 60px);
  }
}

.excelcamp-instructor-name-box {
  margin: 2em 0;
  text-align: center;
}

.excelcamp-instructor-name {
  color: #34a853;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 5px;
}

@media all and (max-width: 735px) {
  .excelcamp-instructor-name {
    font-size: 20px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .excelcamp-instructor-name {
    font-size: 24px;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-instructor-name {
    font-size: 26px;
  }
}

.excelcamp-instructor-career-box {
  background-color: #fff;
}

@media all and (max-width: 735px) {
  .excelcamp-instructor-career-box {
    padding: 15px 10px;
  }
}

@media all and (min-width: 736px) {
  .excelcamp-instructor-career-box {
    padding: 20px;
  }
}

.excelcamp-instructor-career {
  font-size: 18px;
  line-height: 1em;
  margin-bottom: 5px;
}

.excelcamp-instructor-career-title {
  line-height: 1.3em;
  text-align: justify;
  text-justify: inter-ideograph;
}

.excelcamp-instructor-career-details {
  line-height: 1.4em;
  margin-top: 20px;
  text-align: justify;
  text-justify: inter-ideograph;
}

.excelcamp-instructor-message-box {
  margin-top: 2em;
}

.excelcamp-instructor-message-title {
  color: #34a853;
  line-height: 1.3em;
  margin-bottom: 1em;
  text-align: center;
}

@media all and (max-width: 735px) {
  .excelcamp-instructor-message-title {
    font-size: 20px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .excelcamp-instructor-message-title {
    font-size: 24px;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-instructor-message-title {
    font-size: 26px;
  }
}

.excelcamp-instructor-message {
  line-height: 1.4em;
  margin-bottom: 1em;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media all and (max-width: 735px) {
  .content-wrapper-10th {
    background-color: #f8ffe4;
    padding: 40px 10px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .content-wrapper-10th {
    background-color: #f8ffe4;
    padding: 60px 0;
  }
}

@media all and (min-width: 1280px) {
  .content-wrapper-10th {
    background-color: #f8ffe4;
    padding: 80px 0;
  }
}

.excelcamp-day1-program-subhead {
  letter-spacing: -.5px;
  line-height: 1.3em;
  margin-top: 5px;
  text-align: center;
}

@media all and (max-width: 374px) {
  .excelcamp-day1-program-subhead {
    font-size: 12px;
  }
}

@media all and (max-width: 735px) {
  .excelcamp-day1-program-pic {
    height: 200px;
    margin-top: 20px;
    overflow: hidden;
    width: 100%;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .excelcamp-day1-program-pic {
    height: 250px;
    margin: 20px auto 0;
    overflow: hidden;
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-day1-program-pic {
    height: 350px;
    margin: 20px auto 0;
    overflow: hidden;
    width: 650px;
  }
}

.excelcamp-day1-program-table {
  background-color: #fff;
  border: 1px solid #34a853;
  border-collapse: separate;
  border-radius: 8px;
}

@media all and (max-width: 735px) {
  .excelcamp-day1-program-table {
    margin-top: 20px;
    width: 100%;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .excelcamp-day1-program-table {
    margin: 20px auto 0;
    width: 500px;
  }

  #excelcamp-day1 .excelcamp-day1-program-table {
    width: 100%;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-day1-program-table {
    margin: 20px auto 0;
    width: 650px;
  }

  #excelcamp-day1 .excelcamp-day1-program-table {
    width: 100%;
  }
}

.excelcamp-day1-program-table th,
.excelcamp-day1-program-table td {
  line-height: 1.4em;
}

.excelcamp-day1-program-table th {
  border-right: 1px solid #34a853;
}

@media all and (min-width: 736px) {
  .excelcamp-day1-program-table td {
    padding-left: 1em;
  }
}

.excelcamp-day1-program-table tr:not(:last-child) th,
.excelcamp-day1-program-table tr:not(:last-child) td {
  border-bottom: 1px solid #34a853;
}

.excelcamp-day1-program-table-title {
  color: #34a853;
  font-size: 16px;
  letter-spacing: -.5px;
  padding: 10px 5px;
  vertical-align: middle;
  white-space: nowrap;
}

@media all and (max-width: 374px) {
  .excelcamp-day1-program-table-title {
    font-size: 14px;
  }
}

.excelcamp-day1-program-table-descr-1 {
  font-size: 14px;
  padding: 10px 2px;
}

.excelcamp-day1-program-table-descr-2 {
  font-size: 14px;
  padding: 10px 7px;
}

.excelcamp-day1-program-table-descr-3 {
  font-size: 14px;
  padding: 10px 5px;
}

.excelcamp-day1-program-table-descr-3 .more-info {
  background: #34a853;
  border-radius: 9999px;
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  height: 2.6em;
  margin: 1em 0;
  position: relative;
  transition: transform 0.2s ease;
  width: 14em;
}

.excelcamp-day1-program-table-descr-3 .more-info:has(> a:hover) {
  transform: translateY(2px);
}

.excelcamp-day1-program-table-descr-3 .more-info a {
  align-items: center;
  color: inherit;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  gap: 1em;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  padding-left: .5em;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
  z-index: 5;
}

.excelcamp-day1-program-table-descr-3 .more-info a::before {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 12.5rem;
  left: -65%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
  width: 50%;
  z-index: -1;
}

.excelcamp-day1-program-table-descr-3 .more-info a:hover::before {
  animation: btn-animation 0.2s linear 0s forwards;
}

.excelcamp-day1-program-table-descr-3 .more-info a::after {
  content: "▼";
}

.excelcamp-day1-program-table-descr-4 {
  font-size: 16px;
  font-weight: bold;
}

@media all and (max-width: 359px) {
  .excelcamp-day1-program-table-descr-4 {
    font-size: 14px;
    letter-spacing: -1px;
  }
}

.excelcamp-day1-program-table-notes {
  font-size: 12px;
  line-height: 1.3em;
  text-indent: 1em;
}

.excelcamp-day1-program-table-ol {
  list-style-type: decimal;
  margin-left: 1.2em;
  margin-top: 5px;
}

.excelcamp-day1-program-table-list {
  padding-left: 1em;
  position: relative;
}

.excelcamp-day1-program-table-list::before {
  content: '・';
  left: 0;
  position: absolute;
  top: 0;
}

@media all and (max-width: 735px) {
  .content-wrapper-11th {
    background-color: #f8ffe4;
    padding: 0 10px 40px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .content-wrapper-11th {
    background-color: #f8ffe4;
    padding: 0 0 60px;
  }
}

@media all and (min-width: 1280px) {
  .content-wrapper-11th {
    background-color: #f8ffe4;
    padding: 0 0 80px;
  }
}

.extracted-things-can-be-mastered {
  overflow: hidden;
  padding: 0 15px;
}

@media all and (max-width: 735px) {
  .extracted-things-can-be-mastered {
    margin-top: 1em;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .extracted-things-can-be-mastered {
    margin: 1em auto 0;
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .extracted-things-can-be-mastered {
    margin: 1em auto 0;
    width: 650px;
  }
}

@media all and (max-width: 735px) {
  .content-wrapper-12th {
    padding: 40px 10px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .content-wrapper-12th {
    padding: 60px 0;
  }
}

@media all and (min-width: 1280px) {
  .content-wrapper-12th {
    padding: 80px 0;
  }
}

@media all and (max-width: 374px) {
  .excelcamp-access-map {
    height: 300px;
    margin-top: 30px;
    width: 100%;
  }
}

@media all and (min-width: 375px) and (max-width: 735px) {
  .excelcamp-access-map {
    height: 400px;
    margin-top: 30px;
    width: 100%;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .excelcamp-access-map {
    height: 400px;
    margin: 30px auto 0;
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-access-map {
    height: 400px;
    margin: 30px auto 0;
    width: 650px;
  }
}

.excelcamp-access-map iframe {
  height: 100%;
  width: 100%;
}

@media all and (max-width: 735px) {
  .excelcamp-access-info {
    margin-top: 15px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .excelcamp-access-info {
    margin: 15px auto 0;
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-access-info {
    margin: 15px auto 0;
    width: 650px;
  }
}

.excelcamp-access-info-table-item {
  line-height: 1.4em;
  padding: 5px 0;
  vertical-align: top;
}

.excelcamp-access-info-table-colon {
  line-height: 1.4em;
  padding: 5px 8px;
  vertical-align: top;
}

@media all and (max-width: 359px) {
  .day1-program-mod-letter-spacing {
    letter-spacing: -2.5px;
  }
}

.sitetop-faq-item-box {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  box-sizing: border-box;
  cursor: pointer;
  margin: 0 auto;
  max-width: 650px;
  overflow: hidden;
  padding: 15px 65px 15px 5px;
  position: relative;
}

@media all and (min-width: 520px) {
  .sitetop-faq-item-box {
    padding: 15px 80px 15px 5px;
  }
}

.sitetop-faq-item-box:last-child {
  border-bottom: 1px solid #ccc;
  margin-bottom: 6em;
}

@media all and (max-width: 735px) {
  .content-wrapper-13th {
    background-color: #f3f3f3;
    padding: 40px 10px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .content-wrapper-13th {
    background-color: #f3f3f3;
    padding: 60px 0;
  }
}

@media all and (min-width: 1280px) {
  .content-wrapper-13th {
    background-color: #f3f3f3;
    padding: 80px 0;
  }
}

.excelcamp-entry-subhead {
  letter-spacing: -.5px;
  line-height: 1.3em;
  margin-top: 5px;
  text-align: center;
}

@media all and (max-width: 374px) {
  .excelcamp-entry-subhead {
    font-size: 12px;
  }
}

@media all and (max-width: 735px) {
  .excelcamp-entry-form {
    margin-top: 30px;
  }

  #excelcamp-day1 .excelcamp-entry-form {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 20px);
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .excelcamp-entry-form {
    margin: 30px auto 0;
    width: 500px;
  }

  #excelcamp-day1 .excelcamp-entry-form {
    width: 590px;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-entry-form {
    margin: 30px auto 0;
    width: 650px;
  }

  #excelcamp-day1 .excelcamp-entry-form {
    width: 590px;
  }
}

.cf7-hidden-form {
  display: none;
}

.excelcamp-contact-form .form-item {
  color: #666;
  font-size: 14px;
  display: inline-block;
  line-height: 1.6;
  margin-bottom: 5px;
}

@media all and (min-width: 1280px) {
  .excelcamp-contact-form .form-item {
    font-size: 18px;
  }
}

.excelcamp-contact-form-input,
.excelcamp-contact-form-textarea {
  background-color: #fff;
  border: 1px solid #34a853;
  margin-bottom: 10px;
  transition: border-color .3s 0s ease;
  width: 100%;
}

.excelcamp-contact-form-input {
  height: 36px;
  line-height: 36px;
}

.excelcamp-contact-form-textarea {
  line-height: 1.5;
  resize: none;
}

.excelcamp-contact-form-input:focus,
.excelcamp-contact-form-textarea:focus {
  border-color: #96dfaa;
  outline: none;
}

.excelcamp-contact-form-input::placeholder,
.excelcamp-contact-form-textarea::placeholder {
  color: #aaa;
}

.excelcamp-form-notes {
  display: block;
  text-align: center;
}

.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

::-ms-expand {
  display: none;
}

.entry-btn {
  background-color: #34a853;
  border-radius: 8px;
  box-shadow: 0px 3px 5px rgba(0,0,0,.5);
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: bold;
  height: 45px;
  line-height: 45px;
  margin: 30px auto 0;
  order: 1;
  padding: 0;
  text-align: center;
  transition: all .2s 0s ease;
  width: 90%;
}

@media all and (min-width: 1280px) {
  .entry-btn:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,.8);
  }
}

.privacy-policy-notice {
  line-height: 1.4em;
  margin-top: 15px;
  text-align: center;
}

@media all and (max-width: 735px) {
  .privacy-policy-notice {
    font-size: 12px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .privacy-policy-notice {
    font-size: 14px;
  }
}

@media all and (min-width: 1280px) {
  .privacy-policy-notice {
    font-size: 16px;
  }
}

.entry-btn.btn-disabled {
  background-color: #ccc;
  border-color: #ccc;
  box-shadow: 0px 3px 5px rgba(0,0,0,0);
  color: #999;
  cursor: auto;
}

@media all and (max-width: 359px) {
  .entry-btn.btn-disabled {
    font-size: 14px;
  }
}

.form-submit-result-field {
  background-color: rgba(0,0,0,.8);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  top: 0;
  transition: background-color .3s 0s ease;
  right: 0;
  z-index: 10000;
}

.form-submit-result-field.show {
  background-color: rgba(0,0,0,.95);
}

.form-submit-result-inner {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.in-progress-animation-logo {
  animation: rotatingLogo 1.5s linear infinite 0s;
  background: url(../images/logo/excelcamp_logo-white.png) no-repeat center/contain;
  display: block;
  height: 80px;
  left: calc(50% - 40px);
  position: absolute;
  top: calc(50% - 40px);
  width: 80px;
  z-index: 100;
}

@keyframes rotatingLogo {
  0% {
    transform: rotateY(180deg);
  }
  50% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}

.error-summary-field {
  background-color: #fff;
  border: 2px solid #f00;
  margin-top: -30px;
  max-width: 420px;
  opacity: 0;
  padding: 20px;
  position: relative;
  transition: all .3s 0s ease;
  width: 80%;
  z-index: 150;
}

.error-summary-field.show {
  margin-top: 0;
  opacity: 1;
}

.error-summary-text {
  line-height: 1.4em;
  margin-bottom: 1em;
  text-align: justify;
}

.error-summary-list {
  list-style: disc;
}

.error-summary-list li {
  line-height: 1.4em;
  margin-bottom: 10px;
  margin-left: 20px;
  text-align: justify;
}

.close-error-summary {
  background-color: #34a853;
  border-radius: 8px;
  box-shadow: 0 3px 5px rgba(0,0,0,.5);
  color: #fff;
  cursor: pointer;
  padding: 10px 20px;
  text-align: center;
}

@media all and (min-width: 1280px) {
  .close-error-summary {
    transition: box-shadow .3s 0s ease;
  }

  .close-error-summary:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,.8);
  }
}

.form-item {
  margin-bottom: 20px;
}

.form-item label {
  display: inline-block;
  margin-bottom: 5px;
}

@media all and (max-width: 735px) {
  .form-item label {
    font-size: 14px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .form-item label {
    font-size: 16px;
  }
}

@media all and (min-width: 1280px) {
  .form-item label {
    font-size: 18px;
  }
}

.form-input,
.form-select {
  background-color: #fff;
  border: 1px solid #34a853;
  box-sizing: border-box;
  color: #666;
  font-size: 14px;
  height: 36px;
  padding: 8px;
  transition: border-color .3s 0s ease;
  width: 100%;
}

.form-input::placeholder {
  color: #aaa;
}

.form-select {
  background-image: url('../images/icon/arrow-form.png')!important;
  background-position: right 10px center!important;
  background-repeat: no-repeat!important;
  background-size: 12px 10px!important;
  padding-right: 30px!important;
}

.form-input:focus,
.form-select:focus {
  border-color: #96dfaa;
  outline: none;
}

.item-required {
  position: relative;
}

.item-required::before {
  color: #34a853;
  content: '必須';
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
  margin: 0 .5em;
}

.form-error-msg {
  background-color: #f0d8d8;
  border: 1px solid #f00;
  border-radius: 10px;
  display: block;
  line-height: 1.4em;
  margin: 12px auto 0;
  padding: 8px 10px;
  position: relative;
  text-align: justify;
}

.form-error-msg::before, 
.form-error-msg::after {
  content: '';
  left: calc(50% - 8px);
  position: absolute;
}

.form-error-msg::before {
  border-bottom: 16px solid #f00;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  top: -16px;
}

.form-error-msg::after {
  border-bottom: 16px solid #f0d8d8;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  top: -14px;
}

.payjs-input {
  height: 0;
  overflow: hidden;
  transition: height .3s 0s ease;
}

.payjs-input .form-item {
  display: none;
}

.application-completed {
  color: #fff;
  display: none;
  font-weight: bold;
  text-align: center;
}

.excelcamp-content-cta {
  display: flex;
  flex-direction: column;
  margin-top: 2em;
}

@media all and (min-width: 736px) {
  .excelcamp-content-cta {
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
  }
}

/*---------------------------------------------------------
法人向け研修ページ
---------------------------------------------------------*/
.business__wrapper--full {
  width: 100%;
}

.business__bg--hero {
  align-items: center;
  background: url('../images/sitetop/top_background_image.jpg') no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 300px;
  position: relative;
  width: 100%;
  z-index: 1;
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .business__bg--hero {
    height: 340px;
  }
}

@media all and (min-width: 1280px) {
  .business__bg--hero {
    height: 60vh;
    max-height: 648px;
  }
}

.business__bg--hero::before {
  background: rgba(60,174,56,.12);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.business__bg--img_gray {
  background: url('../images/business/bg_img_gray.jpg') no-repeat center/cover;
  width: 100%;
}

.business__bg--img_green {
  background: url('../images/business/bg_img_green.jpg') no-repeat right/cover;
  width: 100%;
}

.business__bg--color_gray {
  background: #ececec;
  width: 100%;
}

.business__bg--color_yellow-green {
  background: #f8ffe4;
  width: 100%;
}

.business__lead {
  background: #10522c;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 6px 10px 4px;
  position: relative;
  z-index: 5;
}

.business__headcopy {
  align-content: center;
  background: rgba(134,195,74,.56);
  color: #fff;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  justify-content: center;
  margin: 16px 0;
  padding: 14px 0;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 5;
}

@media all and (min-width: 1280px) {
  .business__headcopy {
    margin: 20px 0;
    padding: 24px 0;
  }
}

.business__headcopy--h1 {
  font-size: 24px;
  line-height: 1.2em;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .business__headcopy--h1 {
    font-size: 32px;
  }
}

@media all and (min-width: 1280px) {
  .business__headcopy--h1 {
    font-size: 48px;
  }
}

.business__headcopy--subhead {
  font-size: 16px;
  line-height: 1em;
  text-align: center;
  width: 100%;
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .business__headcopy--subhead {
    font-size: 18px;
  }
}

@media all and (min-width: 1280px) {
  .business__headcopy--subhead {
    font-size: 26px;
  }
}

.business__top-cta {
  font-weight: bold;
  position: relative;
  text-align: center;
  z-index: 5;
}

.business__top-cta--text {
  background: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  color: #ef7d2e;
  font-size: 14px;
  display: inline;
  line-height: 18px;
  padding: 0 4px;
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .business__top-cta--text {
    font-size: 16px;
    line-height: 20px;
    padding: 0 6px;
  }
}

@media all and (min-width: 1280px) {
  .business__top-cta--text {
    font-size: 18px;
    line-height: 22px;
    padding: 0 8px;
  }
}

.business__top-cta--btn {
  background: #ef7d2e;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  color: #fff;
  display: block;
  font-size: 17px;
  line-height: 40px;
  margin-top: 6px;
  padding: 0 30px;
  transition: box-shadow .3s 0s ease;
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .business__top-cta--btn {
    font-size: 20px;
    line-height: 44px;
  }
}

@media all and (min-width: 1280px) {
  .business__top-cta--btn {
    font-size: 24px;
    line-height: 56px;
    margin-top: 8px;
  }
}

.business__top-cta--btn:hover {
  box-shadow: 0 6px 10px rgba(0,0,0,.5);
}

.business__wrapper {
  margin: 0 auto;
  max-width: 670px;
  min-width: 300px;
  width: calc(100% - 20px);
}

@media all and (max-width: 1279px) {
  .business__wrapper {
    padding: 40px 0;
  }
}

@media all and (min-width: 1280px) {
  .business__wrapper {
    padding: 80px 0;
  }
}

.business__wrapper--60 {
  width: calc(100% - 60px);
}

.business__wrapper--margin {
  margin-bottom: 40px;
  margin-top: 40px;
}

@media all and (min-width: 1280px) {
  .business__wrapper--margin {
    margin-bottom: 80px;
    margin-top: 80px;
  }
}

.business__h2 {
  font-size: 24px;
  letter-spacing: -2px;
  text-align: center;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

@media all and (min-width: 1280px) {
  .business__h2 {
    font-size: 30px;
  }
}

@media all and (min-width: 375px) {
  .business__h2--break {
    display: none;
  }
}

.business__movie-wrapper {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.business__movie-wrapper video {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.business__features {
  margin-top: 3em;
}

.business__features--list {
  margin-top: 2.5em;
}

.business__features--index {
  color: #34a853;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.business__features--index::before {
  background: #34a853;
  bottom: 0;
  content: '';
  left: 0;
  height: 3px;
  position: absolute;
  width: 100%;
}

.business__features--index_num {
  bottom: -2px;
  font-size: 40px;
  margin-left: 4px;
  position: relative;
}

.business__features--title {
  font-size: 28px;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.business_features--description {
  font-size: 16px;
  margin-top: .5em;
  text-align: justify;
}

.business__outline--table {
  margin-top: 1em;
  width: 100%;
}

.business__outline--table_row {
  border-top: 1px solid #c6c6c6;
}

.business__outline--table_row:last-child {
  border-bottom: 1px solid #c6c6c6;
}

.business__outline--table_head {
  background: #f8f8f8;
  font-size: 16px;
  padding: 10px;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
  width: 120px;
}

@media all and (min-width: 736px) {
  .business__outline--table_head {
    padding: 10px 20px;
    width: 150px;
  }
}

.business__outline--table_data {
  font-size: 16px;
  padding: 10px;
}

@media all and (min-width: 736px) {
  .business__outline--table_data {
    padding: 10px 20px;
  }

  .business__outline--table_data_break {
    display: none;
  }
}

.business__courseform--title {
  background: #34a853;
  color: #fff;
  font-size: 16px;
  line-height: 42px;
  margin-bottom: 10px;
  margin-top: 1.5em;
  padding: 0 10px;
}

.business__courseform--content {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.business__courseform--img {
  height: 105px;
  width: 130px;
}

@media all and (min-width: 736px) {
  .business__courseform--img {
    height: 160px;
    width: 240px;
  }
}

.business__img-style {
  object-fit: cover;
  object-position: left;
  height: 100%;
  width: 100%;
}

.business__courseform--description_2cols,
.business__courseform--description_full {
  font-size: 16px;
  text-align: justify;
}

.business__courseform--description_2cols {
  width: calc(100% - 130px - 10px);
}

@media all and (min-width: 736px) {
  .business__courseform--description_2cols {
    width: calc(100% - 240px - 20px);
  }
}

.business__courseform--description_full {
  width: 100%;
}

.business__program {
  border: 1px solid #707070;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  margin-top: 1.5em;
  padding: 10px 30px 20px;
  text-align: justify;
}

.business__program--bg_excel {
  background: #f8ffe4;
  border-radius: 10px;
}

.business__program--bg_powerpoint {
  background: #ffeedB;
  border-radius: 10px / 50px;
}

.business__program--title {
  font-size: 22px;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

@media all and (max-width: 360px) {
  .business__program--title {
    font-size: 21px;
  }
}

@media all and (max-width: 413px) {
  .less-lspacing {
    letter-spacing: -3px;
  }
}

.business__program--about {
  color: #c4c4c4;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -2.1px;
  margin: .5em 0 1em;
}

@media all and (max-width: 360px) {
  .business__program--about {
    font-size: 15px;
  }
}

@media all and (min-width: 736px) {
  .business__program--about {
    letter-spacing: 0;
  }
}

.business__program--description {
  background: #ececec;
  font-size: 16px;
  margin-bottom: 1.5em;
  padding: 5px 10px;
}

.business__program--comment-box {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.business__program--comment-box_img_wrapper {
  border-radius: 50%;
  height: 85px;
  overflow: hidden;
  width: 85px;
}

@media all and (min-width: 736px) {
  .business__program--comment-box_img_wrapper {
    height: 100px;
    width: 100px;
  }
}

.business__program--comment-box_instructor {
  font-size: 12px;
  margin-top: .5em;
  text-align: center;
}

.business__program--comment-box_text {
  background: #fff;
  border: 1px solid #c2c2c2;
  border-radius: 8px;
  font-size: 14px;
  min-height: 116px;
  padding: 12px 15px;
  position: relative;
  width: calc(100% - 85px - 30px);
}

@media all and (min-width: 736px) {
  .business__program--comment-box_text {
    min-height: 120px;
    width: calc(100% - 100px - 30px);
  }
}

.business__program--comment-box_text::before,
.business__program--comment-box_text::after {
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  content: '';
  position: absolute;
  top: 24px;
}

.business__program--comment-box_text::before {
  border-right: 18px solid #c2c2c2;
  left: -18px;
}

.business__program--comment-box_text::after {
  border-right: 18px solid #fff;
  left: -16px;
}

.business__cta-insert {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  justify-content: space-between;
  padding: 10px 0 20px;
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .business__cta-insert {
    padding: 15px 0 25px;
  }
}

@media all and (min-width: 1280px) {
  .business__cta-insert {
    padding: 20px 0 30px;
  }
}

.business__cta-insert--company {
  font-size: 16px;
  margin-bottom: .5em;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .business__cta-insert--company {
    font-size: 20px;
  }
}

@media all and (min-width: 1280px) {
  .business__cta-insert--company {
    font-size: 22px;
  }
}

.business__cta-insert--to {
  font-size: 24px;
  text-align: center;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .business__cta-insert--to {
    font-size: 28px;
  }
}

@media all and (min-width: 1280px) {
  .business__cta-insert--to {
    font-size: 32px;
  }
}

.business__cta-insert--to_highlight {
  background: rgba(16,85,44,.66);
  margin-right: 2px;
  padding: 2px 5px;
}

.business__cta-insert--about {
  font-size: 14px;
  margin: 1em 0 5px;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .business__cta-insert--about {
    font-size: 16px;
  }
}

@media all and (min-width: 1280px) {
  .business__cta-insert--about {
    font-size: 18px;
  }
}

.business__cta-insert--btn {
  background: #ef7d2e;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  color: #fff;
  font-size: 17px;
  line-height: 40px;
  padding: 0 25px;
  transition: box-shadow .3s 0s ease;
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .business__cta-insert--btn {
    font-size: 20px;
    line-height: 44px;
    padding: 0 30px;
  }
}

@media all and (min-width: 1280px) {
  .business__cta-insert--btn {
    font-size: 24px;
    line-height: 56px;
    padding: 0 30px;
  }
}

.business__cta-insert--btn:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,.5);
}

.business__curriculum {
  margin-top: 50px;
}

.business__curriculum--point {
  color: #34a853;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  margin-bottom: 8px;
  padding-bottom: 5px;
  position: relative;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.business__curriculum--point::before {
  background: #34a853;
  bottom: 0;
  content: '';
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.business__curriculum--h3 {
  font-size: 16px;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.business__curriculum--h3_highlight {
  color: #34a853;
  display: inline-block;
  font-size: 28px;
  margin-right: 8px;
}

.business_curriculum--outline {
  color: #b5b3b3;
  font-size: 16px;
  font-weight: bold;
}

.business__curriculum--pt1 {
  font-size: 16px;
  margin-top: 20px;
}

@media all and (max-width: 360px) {
  .business__curriculum--pt1 {
    font-size: 15px;
  }
}

.business__curriculum--pt1_course-example {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  line-height: 30px;
  margin-top: 10px;
  max-width: 360px;
}

@media all and (min-width: 414px) {
  .business__curriculum--pt1_course-example {
    margin-left: 15px;
  }
}

@media all and (min-width: 736px) {
  .business__curriculum--pt1_course-example {
    max-width: 100%;
  }
}

.business__curriculum--pt1_item {
  margin-left: 20px;
}

@media all and (max-width: 360px) {
  .business__curriculum--pt1_item {
    margin-left: 10px;
  }
}

@media all and (min-width: 736px) {
  .business__curriculum--pt1_item {
    margin-left: 10px;
  }
}

.business__curriculum--pt1_item_plus {
  padding-left: 25px;
  position: relative;
}

@media all and (max-width: 735px) {
  .business__curriculum--pt1_item_plus {
    margin-left: auto;
    width :205px;
  }
}

@media all and (min-width: 736px) {
  .business__curriculum--pt1_item_plus {
    padding-left: 30px;
  }
}

@media all and (max-width: 735px) {
  .business__curriculum--pt1_course-example .business__curriculum--pt1_item_plus:nth-of-type(n + 3) {
    margin-top: 15px;
  }
}

.business__curriculum--pt1_item_plus::before {
  content: '+';
  left: 0;
  position: absolute;
  top: 0;
}

@media all and (min-width: 736px) {
  .business__curriculum--pt1_item_plus::before {
    left: 10px;
  }
}

.business__curriculum--pt1_item_excel,
.business__curriculum--pt1_item_ppt {
  padding-left: 30px;
  position: relative;
}

@media all and (min-width: 736px) {
  .business__curriculum--pt1_item_excel,
  .business__curriculum--pt1_item_ppt {
    padding-left: 22px;
  }
}

.business__curriculum--pt1_item_excel::before,
.business__curriculum--pt1_item_ppt::before {
  content: '';
  left: 0;
  height: 30px;
  position: absolute;
  top: -3px;
  width: 25px;
}

@media all and (min-width: 736px) {
  .business__curriculum--pt1_item_excel::before,
  .business__curriculum--pt1_item_ppt::before {
    height: 25px;
    top: 1px;
    width: 20px;
  }
}

.business__curriculum--pt1_item_excel::before {
  background: url('../images/business/icon_excel.png') no-repeat center/contain;
}

.business__curriculum--pt1_item_ppt::before {
  background: url('../images/business/icon_ppt.png') no-repeat center/contain;
}

.business__curriculum--pt1_comment {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.business__curriculum--pt1_comment_instructor {
  width: 106px;
}


.business__curriculum--pt1_img {
  border-radius: 50%;
  height: 106px;
  overflow: hidden;
  width: 100%;
}

.business__curriculum--pt1_name {
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}

.business__curriculum--pt1_comment_text {
  background: #fff;
  border: 1px solid #c2c2c2;
  border-radius: 8px;
  font-size: 14px;
  min-height: 106px;
  padding: 1em;
  position: relative;
  text-align: justify;
  width: calc(100% - 106px - 20px - 10px);
}

.business__curriculum--pt1_comment_text::before,
.business__curriculum--pt1_comment_text::after {
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  content: '';
  position: absolute;
  top: 30px;
}

.business__curriculum--pt1_comment_text::before {
  border-right: 18px solid #c2c2c2;
  left: -18px;
}

.business__curriculum--pt1_comment_text::after {
  border-right: 18px solid #fff;
  left: -16px;
}

.business__curriculum--pt2_wrapper {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.business__curriculum--pt2_img {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  display: flex;
  height: 120px;
  justify-content: center;
  width: 120px;
}

.business__curriculum--pt2_img_gray {
  border: 3px solid #8f8f8f;
}

.business__curriculum--pt2_img_purple {
  border: 3px solid #877dc8;
}

.business__curriculum--pt2_img_blue {
  border: 3px solid #4e91e8;
}

.business__curriculum--pt2_img_yellow {
  border: 3px solid #ebab3d
}

.business__curriculum--pt2_img_size {
  height: 94px;
  width: 94px;
}

.business__curriculum--pt2_description {
  width: calc(100% - 120px - 20px);
}

.business__curriculum--pt2_h4 {
  font-size: 24px;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

@media all and (max-width: 360px) {
  .business__curriculum--pt2_h4 {
    font-size: 22px;
  }
}

.business__curriculum--pt2_h4_gray {
  color: #8f8f8f;
}

.business__curriculum--pt2_h4_purple {
  color: #877dc8;
}

.business__curriculum--pt2_h4_blue {
  color: #4e91e8;
}

.business__curriculum--pt2_h4_yellow {
  color: #ebab3d;
}

.business__curriculum--text {
  font-size: 16px;
  letter-spacing: -1px;
  line-height: 1.4;
  margin-top: .6em;
  text-align: justify;
}

.business__faq {
  margin-top: 30px;
}

.business__faq--h3 {
  color: #34a853;
  font-size: 20px;
  margin-bottom: 8px;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.business__faq--item {
  border-top: 1px solid #c6c6c6;
  overflow: hidden;
  padding: 0 60px 0 45px;
  position: relative;
}

.business__faq .business__faq--item:last-child {
  border-bottom: 1px solid #c6c6c6;
}

.business__faq--item_question {
  background: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -1px;
  padding: 16px 0;
  position: relative;
  text-align: justify;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
  z-index: 10;
}

.business__faq--item_question::before {
  color: #34a853;
  content: 'Q';
  font-size: 1.5em;
  left: -1.5em;
  position: absolute;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
  top: 10px;
}

.business__faq--item_answer {
  clear: both;
  float: left;
  font-size: 16px;
  margin-top: calc(-145% - 16px);
  padding-bottom: 16px;
  position: relative;
  text-align: justify;
  transition: all .3s 0s ease;
  visibility: hidden;
}

@media all and (max-width: 359px) {
  .business__faq--item_answer {
    margin-top: calc(-237% - 16px);
  }
}

@media all and (min-width: 360px) and (max-width: 374px) {
  .business__faq--item_answer {
    margin-top: calc(-164% - 16px);
  }
}

@media all and (min-width: 414px) and (max-width: 735px) {
  .business__faq--item_answer {
    margin-top: calc(-116% - 16px);
  }
}

@media all and (min-width: 736px) {
  .business__faq--item_answer {
    margin-top: calc(-32% - 16px);
  }
}

.business__faq--accordion_check:checked ~ .business__faq--item_answer {
  margin-top: 0;
  visibility: visible;
}

.business__faq--accordion_check {
  display: none;
}

.business__faq--accordion_label {
  background: url('../images/business/arrow-faq-accordion.png') no-repeat center/contain;
  cursor: pointer;
  height: 24px;
  position: absolute;
  right: 15px;
  top: 18px;
  transform: rotateX(0deg);
  transition: transform .3s 0s ease;
  width: 24px;
}

.business__faq--accordion_check:checked ~ .business__faq--accordion_label {
  transform: rotateX(180deg);
}

.business__instructor {
  margin-top: 40px;
  padding: 0 20px;
}

.business__instructor--img {
  margin: 0 auto;
  max-width: 400px;
}

.business__instructor--h3 {
  font-size: 14px;
  margin-top: 5px;
}

@media all and (min-width: 736px) {
  .business__instructor--h3 {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    width: 400px
  }
}

.business__instructor--career,
.business__instructor--profile {
  font-size: 14px;
  margin-top: 25px;
}

@media all and (min-width: 736px) {
  .business__instructor--career,
  .business__instructor--profile {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    width: 400px;
  }
}

.business__instructor--career_item,
.business__instructor--profile_item {
  letter-spacing: -1px;
  line-height: 1.5;
  text-align: justify;
}

.business__instructor--profile_item {
  margin-top: 15px;
}

.business__publication {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px auto;
  max-width: 575px;
}

.business__publication--img {
  max-width: 200px;
  width: 38%;
}

.business__publication--info {
  font-size: 14px;
  letter-spacing: -1px;
  text-align: justify;
  width: calc(62% - 10px);
}

@media all and (min-width: 736px) {
  .business__publication--info {
    font-size: 16px;
    letter-spacing: 0;
    width: 60%;
  }
}

.business__publication--h3 {
  line-height: 1.2;
  margin-bottom: 1em;
}

.business__publication--info_text {
  line-height: 1.4;
  margin-top: .5em;
}

.business__publication--link {
  display: flex;
  justify-content: center;
  width: 100%;
}

.business__publication--link_btn {
  background: #ef7d2e;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  line-height: 40px;
  margin: 0 auto;
  text-align: center;
  transition: box-shadow .3s 0s ease;
  width: 220px;
}

.business__publication--link_btn:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,.5);
}

.business__contactform {
  font-size: 16px;
  margin-top: 30px;
}

.business__contactform .item-required {
  font-weight: bold;
}

.business__contactform .item-required::before {
  color: #eF7d2e;
  font-size: inherit;
  margin: 0 1em 0 0;
}

.business__contactform .item-any {
  font-weight: bold;
  position: relative;
}

.business__contactform .item-any::before {
  color: #979797;
  content: '任意';
  font-weight: bold;
  line-height: 1em;
  margin: 0 1em 0 0;
}

.business__contactform form p {
  margin-top: 10px;
}

.business__contactform .your-course .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  margin-left: 13%;
}

@media all and (min-width: 736px) {
  .business__contactform .your-course .wpcf7-checkbox {
    margin-left: 6%;
  }
}

.business__contactform .your-course .wpcf7-checkbox .wpcf7-list-item {
  line-height: 2;
}

.business__contactform .your-course .wpcf7-checkbox .wpcf7-list-item label {
  cursor: pointer;
}

.business__contactform .excelcamp-contact-form-input,
.excelcamp-contact-form-textarea {
  border-color: #707070;
  border-radius: 7px;
  transition: border-color .1s 0s ease;
}

.business__contactform .excelcamp-contact-form-input:focus,
.excelcamp-contact-form-textarea:focus {
  border-color: #eF7d2e;
}

.business__contactform .your-acceptance .wpcf7-acceptance .wpcf7-list-item {
  display: block;
  text-align: center;
}

.business__contactform .your-acceptance .wpcf7-acceptance .wpcf7-list-item label {
  cursor: pointer;
}

.business__contactform--privacypolicy {
  font-size: 12px;
  margin-bottom: 5px;
  text-align: center;
}

@media all and (min-width: 736px) {
  .business__contactform--privacypolicy {
    font-size: 14px;
  }
}

.business__contactform--privacypolicy_wrapper {
  background: #fff;
  border: 1px solid #707070;
  border-radius: 7px;
  height: 140px;
  overflow-y: scroll;
  padding: 10px 15px;
  width: 100%;
}

.business__contactform--privacypolicy_section:not(:first-child) {
  margin-top: 2em;
}

.business__contactform--privacypolicy_section p,
.business__contactform--privacypolicy_section li {
  font-size: 12px;
  line-height: 1.4;
  text-align: justify;
}

.business__contactform--privacypolicy_section a {
  color: #0066c0;
  text-decoration: underline;
  transition: all .3s 0s ease;
}

.business__contactform--privacypolicy_section a:hover {
  color: #dc143c;
}

.business__contactform--privacypolicy_head {
  font-size: 16px;
  margin-bottom: 0;
}

.business__contactform .entry-btn {
  background: #eF7d2e;
}

/*---------------------------------------------------------
Day1ページ
---------------------------------------------------------*/
@media all and (min-width: 361px) {
  .service__break--360 {
    display: none;    
  }
}

.service__wrapper {
  margin: 0 auto;
  max-width: 590px;
  min-width: 300px;
  padding: 20px 0;
  width: calc(100% - 20px);
}

@media all and (min-width: 736px) {
  .service__wrapper {
    padding: 30px 0;
  }
}

.service__wrapper-full {
  padding: 2em 0;
  width: 100%;
}

.service__wrapper--margin_10 {
  margin-top: 10px;
}

.service__bg--hero {
  background: url('../images/service/top_hero.jpg') no-repeat center/cover;
}

.service__bg--color_gray {
  background: #ececec;
}

.service__bg--color_yellow-green {
  background: #f8ffe4;
}

.service__bg--color_orange {
  background: #ffe3c4;
}

.service__headcopy--h1 {
  color: #34a853;
  font-size: 24px;
  line-height: 1.2em;
  margin-left: 10px;
  margin-top: var(--clamp-20sp);
}

@media all and (min-width: 736px) {
  .service__headcopy--h1 {
    font-size: 32px;
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(1.25rem, -2.67rem + 8.52vw, 5rem);
    width: 670px;
  }
}

.service__top-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 10px;
  padding: 2em 0;
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .service__top-content {
    height: 340px;
  }

  .service__top-content:has(.day1-discount-info) {
    height: auto;
  }
}

@media all and (min-width: 1280px) {
  .service__top-content {
    height: 42vh;
    max-height: 378px;
  }

  .service__top-content:has(.day1-discount-info) {
    height: auto;
    max-height: none;
  }
}

.service__top-content--headcopy {
  background: rgba(255,255,255,.8);
  border: 6px solid #34a853;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -1px;
  margin: 0 auto;
  padding: 1.2em .4em;
  text-align: center;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

@media all and (max-width: 359px) {
  .service__top-content--headcopy {
    font-size: 20px;
  }
}

@media all and (min-width: 360px) and (max-width: 374px) {
  .service__top-content--headcopy {
    font-size: 22px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .service__top-content--headcopy {
    font-size: 26px;
    padding: 1.2em 1em;
  }
}

@media all and (min-width: 1280px) {
  .service__top-content--headcopy {
    font-size: 30px;
    padding: 1.2em 1em;
  }
}

.service__top-content--cta {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 20px auto 0;
  max-width: 410px;
  width: calc(100% - 40px);
}

@media all and (min-width: 736px) {
  .service__top-content--cta {
    margin-top: 30px;
  }
}

.service__event-history--cta,
.service__kuchikomi--cta,
.service__features--cta,
.service__skill--cta {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 40px auto 20px;
  max-width: 410px;
  width: calc(100% - 40px);
}

@media all and (min-width: 736px) {
  .service__event-history--cta,
  .service__kuchikomi--cta,
  .service__features--cta,
  .service__skill--cta {
    margin: 60px auto 40px;
  }
}

.service__cta--btn {
  border: 3px solid #e67a00;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  font-size: 17px;
  font-weight: bold;
  line-height: 34px;
  text-align: center;
  width: calc(50% - 5px);
}

@media all and (max-width: 359px) {
  .service__cta--btn {
    font-size: 16px;
  }
}

@media all and (min-width: 736px) {
  .service__cta--btn {
    font-size: 18px;
    line-height: 38px;
    transition: box-shadow .3s 0s ease;
  }

  .service__cta--btn:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,.5);
  }
}

.service__cta--btn_white {
  background: #fff;
  color: #e67a00;
}

.service__cta--btn_orange {
  background: #e67a00;
  color: #fff;
}

.service__headcopy--h2 {
  font-size: 24px;
  text-align: center;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

@media all and (max-width: 359px) {
  .service__headcopy--h2 {
    font-size: 20px;
  }
}

#excelcamp-day1 #excelcamp-application .service__headcopy--h2 {
  letter-spacing: -1px;
}

.service__movie {
  margin: 1em auto 0;
  max-width: 590px;
  width: 80%;
}

.service__movie-wrapper {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.service__movie-wrapper video {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.service__movie--text {
  font-size: 16px;
  letter-spacing: -.5px;
  line-height: 1.4;
  margin: 1.5em auto 0;
  max-width: 590px;
  text-align: justify;
  width: calc(100% - 40px);
}

.service__event-history {
  margin: 0 auto;
  max-width: 330px;
  width: calc(100% - 40px);
}

.service__event-history--item {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.service__event-history--item_img {
  width: 85px;
}

.service__img-style {
  object-fit: cover;
  object-position: left;
  height: 100%;
  width: 100%;
}

.service__event-history--item_text {
  font-size: 16px;
  letter-spacing: -1px;
  line-height: 1.4;
  text-align: center;
  width: 230px;
}

.service__topics--list {
  margin: 30px auto;
  max-width: 340px;
}

.service__topics--list_pd-0-30 {
  padding: 0 30px;
}

.service__topics--list_item {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}

.service__topics--list_item::before {
  background: #34a853;
  border-radius: 50%;
  content: '';
  height: 20px;
  left: 0;
  position: absolute;
  top: calc(50% - 10px);
  width: 20px;
}

.service__topics--text {
  font-size: 16px;
  margin: 1em auto 0;
  max-width: 360px;
  text-align: justify;
}

@media all and (min-width: 736px) {
  .service__topics--text {
    max-width: 100%;
  }
}

.service__topics--rating {
  background: #ececec;
  margin: 30px auto 0;
  max-width: 360px;
  padding: 10px 5px;
}

@media all and (min-width: 736px) {
  .service__topics--rating {
    max-width: 100%;
    padding: 10px 140px;
  }
}

.service__topics--rating_head {
  font-size: 20px;
  font-weight: bold;
}

@media all and (max-width: 359px) {
  .service__topics--rating_head {
    font-size: 18px;
  }
}

.service__topics--rating_contents {
  align-items: center;
  display: flex;
  margin-top: 15px;
}

.service__topics--rating_img {
  width: 80px;
}

@media all and (max-width: 359px) {
  .service__topics--rating_img {
    width: 70px;
  }
}

.service__topics--rating_item {
  color: #777;
  font-size: 18px;
  margin-left: 5px;
}

@media all and (max-width: 359px) {
  .service__topics--rating_item {
    font-size: 16px;
  }
}

.service__topics--rating_item_note {
  font-size: .8em;
}

.service__topics--rating_answer-num {
  color: #777;
  font-size: 13px;
  margin-top: 15px;
}

.service__kuchikomi {
  margin: 0 auto;
  max-width: 360px;
}

@media all and (min-width: 736px) {
  .service__kuchikomi {
    max-width: 100%;
  }
}

.service__kuchikomi--mg-t30 {
  margin-top: 30px;
}

.service__kuchikomi--list {
  border-top: 1px solid #e1e1e1;
  margin-top: 20px;
}

.service__kuchikomi--list_item {
  border-bottom: 1px solid #e1e1e1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0 8px;
}

.service__kuchikomi--list_item_description {
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 5px;
  text-align: justify;
  width: 100%;
}

.service__kuchikomi--list_item_date,
.service__kuchikomi--list_item_person {
  color: #c4c4c4;
  font-size: 12px;
}

.service__kuchikomi--link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.service__kuchikomi--link_btn {
  border: 3px solid #34a853;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  color: #34a853;
  display: inline-block;
  font-size: 17px;
  font-weight: bold;
  line-height: 34px;
  text-align: center;
  width: 200px;
}

@media all and (min-width: 736px) {
  .service__kuchikomi--link_btn {
    transition: box-shadow .3s 0s ease;
    width: 300px;
  }

  .service__kuchikomi--link_btn:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,.5);
  }
}

.service__message {
  margin: 20px auto 0;
  max-width: 590px;
  padding: 0 20px;
}

.service__message:not(:last-child) {
  margin-bottom: 40px;  
}

@media all and (min-width: 736px) {
  .service__message {
    padding: 0;
  }

  .service__message:not(:last-child) {
    margin-bottom: 60px;  
  }  
}

.service__message--img {
  margin: 0 auto;
  max-width: 360px;
}

.service__message--name {
  font-size: 14px;
  font-weight: normal;
}

@media all and (min-width: 736px) {
  .service__message--name {
    font-size: 16px;
    margin: 0 auto;
    max-width: 360px;
  }
}

.service__message--body {
  font-size: 14px;
  letter-spacing: -0.1px;
  line-height: 1.4;
  margin-top: 20px;
  text-align: justify;
}

.service__message--body_text {
  margin-bottom: 1em;
}

.service__before {
  background: #eef5ff;
}

.service__after {
  background: #ffe3c4;
  padding-top: 85px;
  position: relative;
}

.service__after::before {
  border-left: 400px solid transparent;
  border-right: 400px solid transparent;
  border-top: 60px solid #eef5ff;
  content: '';
  height: 60px;
  left: calc(50% - 400px);
  position: absolute;
  top:0;
  width: 800px;
  z-index: 10;
}

@media all and (min-width: 801px) {
  .service__before,
  .service__after {
    margin: 0 auto;
    overflow: hidden;
  }

  .service__after {
    margin-top: -2em;
    padding-top: 100px;
  }

  .service__after::before {
    border-left-width: 960px;
    border-right-width: 960px;
    border-top-width: 80px;
    height: 80px;
    left: calc(50% - 960px);
    width: 1920px;
  }
}

.service__headcopy--h2_before-after {
  font-size: 48px;
  line-height: 1.2;
  margin: 0 auto;
  max-width: 590px;
  position: relative;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
  width: calc(100% - 20px);
}

@media all and (min-width: 801px) {
  .service__headcopy--h2_before-after {
    width: calc(100% - 80px);
  }
}

.service__headcopy--h2_before-after::after {
  background: #fff;
  bottom: 0;
  content: '';
  height: 3px;
  left: -10px;
  position: absolute;
  width: calc(100% + 20px);
}

.service__before-after {
  margin: 0 auto;
  max-width: 590px;
  width: calc(100% - 20px);
}

@media all and (min-width: 801px) {
  .service__before-after {
    width: calc(100% - 80px);
  }
}

.service__before-after--subhead {
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.service__before-after--list_item {
  background: #ececec;
  font-size: 15px;
  letter-spacing: -1px;
  line-height: 1.25;
  margin-top: 15px;
  padding: 15px 0 12px 50px;
  position: relative;
}

@media all and (min-width: 736px) {
  .service__before-after--list_item {
    padding-left: 65px;
  }
}

.service__before .service__before-after--list_item::before,
.service__after .service__before-after--list_item::before {
  content: '';
  height: 30px;
  left: 10px;
  position: absolute;
  top: calc(50% - 15px);
  width: 30px;  
}

.service__before .service__before-after--list_item::before {
  background: url('../images/service/icon_cross.png') no-repeat center/contain;
}

.service__after .service__before-after--list_item::before {
  background: url('../images/service/icon_good.png') no-repeat center/contain;
}

@media all and (min-width: 736px) {
  .service__before .service__before-after--list_item::before,
  .service__after .service__before-after--list_item::before {
    left: 20px;
  }
}

.service__before-after--cta {
  background: #ffe3c4;
  padding: 20px 0 40px;
  width: 100%;
}

@media all and (min-width: 801px) {
  .service__before-after--cta {
    margin: 0 auto;
  }
}

.day1-discount-info + .service__before-after--cta {
  background: none;
}

.service__before-after--cta_wrapper {
  margin: 0 auto;
  width: calc(100% - 20px);
}

.service__before-after--cta_btns {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 364px;
}

.service__features {
  margin-bottom: 20px;
}

.service__features--content {
  margin-top: 50px;
}

.service__features--index {
  color: #34a853;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  padding-right: 35px;
  position: relative;
}

.service__features--index::before,
.service__features--index::after {
  background: #34a853;
  content: '';
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.service__features--index::before {
  top: -1px;
  z-index: 1;
}

.service__features--index::after {
  bottom: 0;
  z-index: 5;
}

.service__features--index_num {
  background: #fff;
  bottom: 0;
  font-size: 52px;
  line-height: 1;
  position: absolute;
  right: 0;
  z-index: 2;
}

.service__features--head {
  font-size: 26px;
  letter-spacing: -1px;
  line-height: 1.25;
  margin-bottom: 20px;
  margin-top: 15px;
}

@media all and (max-width: 374px) {
  .service__features--head {
    font-size: 24px;
  }
}

.service__features--description {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 1.25em;
  text-align: justify;
}

.service__headcopy--h2_num {
  font-size: 40px;
  line-height: 1;
}

.service__skill {
  margin: 0 auto;
  max-width: 590px;
}

.service__skill--content {
  margin-top: 30px;
}

.service__skill--content:not(:last-child) {
  margin-bottom: 40px;
}

.service__skill--head {
  font-size: 26px;
  line-height: 1;
  padding-left: 20px;
}

@media all and (max-width: 374px) {
  .service__skill--head {
    font-size: 24px;
  }
}

@media all and (min-width: 736px) {
  .service__skill--head {
    padding-left: 10px;
  }
}

.service__skill--head_index {
  color: #fff;
  margin-right: 5px;
  position: relative;
  z-index: 2;
}

.service__skill--head_index::before {
  background: #34a853;
  border-radius: 50%;
  bottom: calc(50% - .65em);
  content: '';
  height: 1.3em;
  left: calc(50% - .65em);
  position: absolute;
  width: 1.3em;
  z-index: -1;
}

.service__skill--description {
  margin: 0 auto;
  min-width: 260px;
  width: calc(100% - 90px);
}

@media all and (min-width: 736px) {
  .service__skill--description {
    width: calc(100% - 80px);
  }
}

.service__skill--description_text {
  font-size: 16px;
  letter-spacing: -.1px;
  line-height: 1.4;
  margin-top: 20px;
  text-align: justify;
}

.service__sample {
  margin: 0 auto;
  max-width: 590px;
  min-width: 260px;
  width: calc(100% - 60px);
}

.service__sample--content {
  margin-top: 40px;
}

.service__sample--head {
  font-size: 24px;
  text-align: center;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.service__sample--movie-wrapper {
  height: 200px;
  margin: 5px auto 0;
  max-width: 520px;
  width: 100%;
}

@media all and (min-width: 736px) {
  .service__sample--movie-wrapper {
    height: 300px;
  }
}

.service__sample--description_text {
  font-size: 16px;
  letter-spacing: -.1px;
  line-height: 1.4;
  margin-top: 20px;
  text-align: justify;
}

.service__sample--cta {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 364px;
}

.service__faq {
  border-left: 1px solid #c6c6c6;
  border-right: 1px solid #c6c6c6;
  border-top: 1px solid #c6c6c6;
  margin-top: 15px;
}

.service__faq--list {
  border-bottom: 1px solid #c6c6c6;
  font-size: 14px;
  overflow: hidden;
  padding: 0 15px;
  position: relative;
}

.service__faq--list_checkbox {
  display: none;
}

.service__faq--list_item {
  cursor: pointer;
  display: block;
  position: relative;
}

.service__faq--list_item::after {
  content: '+';
  font-size: 1.2em;
  position: absolute;
  right: 0;
  top: calc(14px - .1em);
  transform: rotate(0);
  transition: transform .3s 0s ease;
  z-index: 11;
}

.service__faq--list_checkbox:checked ~ .service__faq--list_item::after {
  transform: rotate(45deg);
}

.service__faq--list_item_question {
  background: #fff;
  padding: 14px 0;
  position: relative;
  z-index: 10;
}

.service__faq--list_item_answer {
  clear: both;
  float: left;
  margin-top: -67%;
  padding: 0 6px 14px;
  position: relative;
  text-align: justify;
  transition: all .3s 0s ease;
  visibility: hidden;
}

@media all and (max-width: 359px) {
  .service__faq--list_item_answer {
    margin-top: -98%;
  }
}

@media all and (min-width: 360px) and (max-width: 374px) {
  .service__faq--list_item_answer {
    margin-top: -70%;
  }
}

@media all and (min-width: 414px) and (max-width: 735px) {
  .service__faq--list_item_answer {
    margin-top: -60%;
  }
}

@media all and (min-width: 736px) {
  .service__faq--list_item_answer {
    margin-top: -31%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.service__faq--list_checkbox:checked ~ label .service__faq--list_item_answer {
  margin-top: 0;
  visibility: visible;
}

.service__company-info {
  font-size: 16px;
  margin-bottom: -16px;
  margin-top: 10px;
  width: 100%;
}

.service__company-info--row {
  border-top: 1px solid #34a853;
}

@media all and (max-width: 359px) {
  .service__company-info--row {
    letter-spacing: -.2px;
  }
}

.service__company-info--row_head {
  color: #34a853;
  padding: 16px 0;
  width: 90px;
}

@media all and (max-width: 359px) {
  .service__company-info--row_head {
    width: 75px;
  }
}

.service__company-info--row_data {
  padding: 16px 0 16px 10px;
}

@media all and (max-width: 374px) {
  .service__company-info--row_data {
    padding-left: 0;
  }
}

.service__company-info--row_data a {
  color: #0066c0;
  text-decoration: underline;
  transition: color .3s 0s ease;
}

.service__company-info--row_data a:hover {
  color: #dc143c;
}

.service__contents {
  background: #f8ffe4;
  border: 1px solid #777;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  margin-top: 15px;
  overflow: hidden;
}

.service__contents--checkbox {
  display: none;
}

.service__contents--head {
  background: #f8ffe4;
  cursor: pointer;
  padding: 12px 15px 15px;
  position: relative;
  z-index: 10;
}

@media all and (max-width: 374px) {
  .service__contents--head {
    padding: 10px 15px 12px;
  }
}

.service__contents--head::after {
  background: url('../images/service/arrow-faq-accordion.png') no-repeat center/contain;
  content: '';
  height: 25px;
  position: absolute;
  right: 10px;
  top: 30px;
  transform: rotateX(0);
  transition: transform .3s 0s ease;
  width: 25px;
  z-index: -1;
}

.service__contents--checkbox:checked ~ .service__contents--head::after {
  transform: rotateX(180deg);
}

.service__contents--head label {
  cursor: pointer;
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}

.service__contents--head label::after {
  bottom: 0;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}

.service__contents--head_course {
  cursor: pointer;
  font-size: 24px;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

@media all and (max-width: 374px) {
  .service__contents--head_course {
    font-size: 22px;
    letter-spacing: -.5px;
  }
}

.service__contents--head_theme {
  color: #c4c4c4;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: -1px;
  line-height: 1.25;
  padding-top: 5px;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
  width: calc(100% - 25px);
}

@media all and (min-width: 360px) {
  .service__contents--break {
    display: none;
  }
}

.service__contents--description {
  padding: 0 20px;
  width: 100%;
}

.service__contents--description_list {
  background: #ececec;
  clear: both;
  float: left;
  font-size: 15px;
  line-height: 1.25;
  list-style-type: disc;
  margin-bottom: 15px;
  padding: 10px 10px 10px 30px;
  position: relative;
  text-align: justify;
  transition: all .3s 0s ease;
  visibility: hidden;
  width: 100%;
}

.service__contents--description_list_1 {
  margin-top: -51%;
}

.service__contents--description_list_2 {
  margin-top: -89%;
}

.service__contents--description_list_3 {
  margin-top: -127%;
}

.service__contents--description_list_4 {
  margin-top: -165%;
}

@media all and (max-width: 359px) {
  .service__contents--description_list_1 {
    margin-top: -62%;
  }
  
  .service__contents--description_list_2 {
    margin-top: -108%;
  }
  
  .service__contents--description_list_3 {
    margin-top: -154%;
  }
  
  .service__contents--description_list_4 {
    margin-top: -200%;
  }
}

@media all and (min-width: 360px) and (max-width: 374px) {
  .service__contents--description_list_1 {
    margin-top: -54%;
  }
  
  .service__contents--description_list_2 {
    margin-top: -93%;
  }
  
  .service__contents--description_list_3 {
    margin-top: -133%;
  }
  
  .service__contents--description_list_4 {
    margin-top: -173%;
  }
}

@media all and (min-width: 414px) and (max-width: 735px) {
  .service__contents--description_list_1 {
    margin-top: -45%;
  }
  
  .service__contents--description_list_2 {
    margin-top: -79%;
  }
  
  .service__contents--description_list_3 {
    margin-top: -113%;
  }
  
  .service__contents--description_list_4 {
    margin-top: -147%;
  }
}

@media all and (min-width: 736px) {
  .service__contents--description_list_1 {
    margin-top: -26%;
  }
  
  .service__contents--description_list_2 {
    margin-top: -45%;
  }
  
  .service__contents--description_list_3 {
    margin-top: -63%;
  }
  
  .service__contents--description_list_4 {
    margin-top: -82%;
  }
}

.service__contents--description_list_5 {
  margin-top: -300%;
}

.service__contents--checkbox:checked ~ .service__contents--description .service__contents--description_list_handler {
  margin-top: 0!important;
  visibility: visible!important;
}

.service__contents--description_list_item {
  margin: 5px 0;
}

/*---------------------------------------------------------
Day2ページ
---------------------------------------------------------*/
@media all and (max-width: 359px) {
  .service__cta--btn_ls {
    letter-spacing: -1.2px;
  }
}

.service__notes {
  color: #c4c4c4;
  font-size: .9em;
  font-weight: bold;
  margin: .5em auto 1em;
  max-width: 590px;
  min-width: 300px;
  width: calc(100% - 20px);
}

.service__caution--h2 {
  align-items: center;
  color: #fe7b2c;
  display: flex;
  justify-content: center;
  font-size: 24px;
  line-height: 1.2;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.service__caution--h2::before {
  background: url('../images/icon/icon_caution_triangle.png') no-repeat center/contain;
  content: '';
  height: 40px;
  margin-right: 15px;
  width: 40px;
}

@media all and (max-width: 359px) {
  .service__caution--h2 {
    font-size: 20px;
  }

  .service__caution--h2::before {
    height: 35px;
    margin-right: 10px;
    width: 35px;
  }
}

.service__caution--content {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 260px;
}

.service__caution--content_text {
  font-size: 16px;
  margin-top: 20px;
}

.service__caution--content_list {
  margin-top: 20px;
}

.service__caution--content_list_item {
  font-size: 16px;
  line-height: 1.2;
  padding-left: 30px;
  position: relative;
}

.service__caution--content_list_item:not(:last-of-type) {
  margin-bottom: 1em;
}

.service__caution--content_list_item::before {
  background: #34a853;
  border-radius: 50%;
  content: '';
  height: 20px;
  left: 0;
  position: absolute;
  top: calc(50% - 10px);
  width: 20px;
}

.service__caution--btn {
  margin-top: 1.5em;
}

.service__content--link_micro-copy {
  color: #fe7b2c;
  font-size: 11.5px;
  margin-bottom: -16px;
  text-align: center;
}

.service__kuchikomi--link_btn_white {
  background: #fff;
}

.service__content--link {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.service__content--link_btn {
  background: #fe7b2c;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  color: #fff;
  display: inline-block;
  font-size: 17px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  width: 220px;
}

@media all and (min-width: 736px) {
  .service__content--link_btn {
    transition: box-shadow .3s 0s ease;
    width: 300px;
  }

  .service__content--link_btn:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,.5);
  }
}

/*---------------------------------------------------------
代表メッセージページ
---------------------------------------------------------*/
.message__content-wrapper {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 480px;
  padding: 6em calc(4vw + 10px) 0;
  width: 100%;
}

@media all and (min-width: 736px) {
  .message__content-wrapper {
    max-width: none;
    padding: 10em 10px 0;
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .message__content-wrapper {
    padding: 12em 10px 0;
    width: 700px;
  }
}

.message__representative-prof {
  font-size: 14px;
  margin: 0 auto;
  width: calc(100% - 30px);
}

@media all and (max-width: 374px) {
  .message__representative-prof {
    width: calc(100% - 20px);
  }
}

@media all and (min-width: 736px) {
  .message__representative-prof {
    font-size: 16px;
  }
}

.message__representative-prof--img {
  font-size: 0;
  margin: 0 auto;
  width: 100%;
}

.message__representative-prof--name {
  font-weight: bold;
  margin-top: 1em;
}

.message__representative-prof--list {
  margin-top: 1em;
}

.message__representative-prof--list_item {
  letter-spacing: -1px;
  line-height: 1.4;
}

.message__textarea {
  background: #ececec;
  font-size: 16px;
  letter-spacing: -.8px;
  line-height: 1.4;
  margin-top: 1em;
  padding: .8em 1em;
  text-align: justify;
}

@media all and (max-width: 374px) {
  .message__textarea {
    font-size: 15px;
  }
}

@media all and (min-width: 736px) {
  .message__textarea {
    letter-spacing: 0;
  }
}

.message__textarea--margin_single {
  margin-top: 1em;
}

.message__textarea--margin_double {
  margin-top: 2em;
}

.message__cta {
  background: url(../images/business/bg_img_green.jpg) no-repeat right/cover;
  margin: 2em 0;
  padding: 1.5em 0;
  width: 100%;
}

/*---------------------------------------------------------
口コミページ
---------------------------------------------------------*/
.kuchikomi-content-wrapper {
  box-sizing: border-box;
  padding: 2em 10px 0;
}

@media all and (max-width: 735px) {
  .kuchikomi-content-wrapper {
    width: 100%;
  }
}

@media all and (min-width: 600px) {
  .kuchikomi-content-wrapper {
    padding-top: 3em;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .kuchikomi-content-wrapper {
    margin: 0 auto;
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .kuchikomi-content-wrapper {
    margin: 0 auto;
    padding-top: 4em;
    width: 700px;
  }
}

.kuchikomi-summary {
    padding: 2em 0 3em;
    position: relative;
}

.kuchikomi-summary::before {
    background: #f8ffe4;
    content: '';
    height: 100%;
    left: -50vw;
    position: absolute;
    top: 0;
    width: 150vw;
    z-index: -1;
}

.kuchikomi-h2-summary {
    font-size: 1.4em;
    line-height: 1.4;
    margin-bottom: 1em;
    text-align: center;
}

.kuchikomi-h2-common {
  color: #45a853;
  font-size: 2em;
  line-height: 1.3em;
  margin-bottom: 1.5em;
  text-align: center;
}

.kuchikomi-letterspacing {
  letter-spacing: -2px;
}

.kuchikomi-summary-day1,
.kuchikomi-summary-day2,
.kuchikomi-summary-day3 {
    background: #f3f3f3;
    margin: 0 auto 1.5em;
  max-width: 400px;
    padding: 10px 5px;
  width: 100%;
}

.kuchikomi-h3 {
    font-size: 1.3em;
    line-height: 1.4;
}

.kuchikomi-summary-text {
    font-size: 1.1em;
    line-height: 1.4;
  margin: 1em 0 .6em;
}

@media all and (min-width: 375px) {
  .kuchikomi-summary-text {
    font-size: 1.2em;
  }
}

.kuchikomi-summary-stars {
  padding-left: 80px;
  position: relative;
}

@media all and (min-width: 375px) and (max-width: 413px) {
  .kuchikomi-summary-stars {
    padding-left: 85px;
  }
}

@media all and (min-width: 414px) {
  .kuchikomi-summary-stars {
    padding-left: 100px;
  }
}

.stars-5::before {
  background: url(../images/kuchikomi/stars_5.png) no-repeat center/contain;
  content: '';
  left: 0;
  height: 15px;
  position: absolute;
  top: 1px;
  width: 75px;
}

@media all and (min-width: 321px) and (max-width: 374px) {
  .stars-5::before {
    top: 2px;
  }
}

@media all and (min-width: 375px) and (max-width: 413px) {
  .stars-5::before {
    top: 2px;
    width: 80px;
  }
}

@media all and (min-width: 414px) {
  .stars-5::before {
    top: 4px;
    width: 95px;
  }
}

@media all and (max-width: 413px) {
  .kuchikomi-rating {
    font-size: .9em;
  }
}

.kuchikomi-interview {
  margin-bottom: 4em;
}

.kuchikomi-list-section {
  padding-top: 2.5em;
}

.kuchikomi-list-section:not(:last-child) {
  border-bottom: 2px dotted #aaa;
  padding-bottom: 5em;
}

.kuchikomi-sort-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.kuchikomi-sort-menu-item,
.kuchikomi-sort-menu-inactive {
    background: #fff;
    font-weight: bold;
    line-height: 3!important;
    margin: 0 8px 16px;
    text-align: center!important;
    text-decoration: none!important;
    width: calc(50% - 16px);
}

.kuchikomi-sort-menu-item {
  border: 1px solid #34a853;
  color: #34a853!important;
  cursor: pointer;
  transition: all .3s 0s ease;
}

.kuchikomi-sort-menu-inactive {
  border: 1px solid #ddd;
  color: #ddd!important;
}

@media all and (min-width: 768px) and (max-width: 1279px) {
    .kuchikomi-sort-menu-item,
  .kuchikomi-sort-menu-inactive {
        width: calc(33% - 16px);
    }
}

@media all and (min-width: 1280px) {
    .kuchikomi-sort-menu-item,
  .kuchikomi-sort-menu-inactive {
        width: calc(100% / 6 - 16px);
    }
}

.kuchikomi-sort-menu-item.is-selected {
    background: #34a853;
    color: #fff!important;
  cursor: default;
}

@media all and (min-width: 1280px) {
    .kuchikomi-sort-menu-item:hover {
        background: #34a853;
        color: #fff!important;
    }
}

.kuchikomi-list-title {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.kuchikomi-box {
    border-top: 1px dashed #999;
}

.zero-height {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity .3s 0s ease;
}

.zero-height.show {
    height: auto;
    opacity: 1;
}

.kuchikomi-details {
    border-bottom: 1px dashed #999;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px 5px 1em;
}

.kuchikomi-box-group:nth-child(odd) .kuchikomi-details:nth-child(even),
.kuchikomi-box-group:nth-child(even) .kuchikomi-details:nth-child(odd) {
    background: #f3f3f3;
}

.kuchikomi-details-impression {
    margin-bottom: .5em;
    text-align: justify;
    width: 100%;
}

.kuchikomi-details-date {
    color: #aaa;
    font-size: .9em;
}

.kuchikomi-details-applicant {
    font-size: .9em;
}

.kuchikomi-see-more-btn {
    border: 1px solid #333;
  box-shadow: 1px 3px 10px rgba(0,0,0,0);
    cursor: pointer;
    display: block;
    line-height: 3em;
    margin: 1.5em auto 0;
    text-align: center;
  transition: box-shadow .3s 0s ease;
    width: 250px;
}

.kuchikomi-see-more-btn:hover {
  box-shadow: 1px 3px 10px rgba(0,0,0,.4);
}

.kuchikomi-btn {
  margin-top: 1em;
  text-align: center;
}

.excelcamp-media {
  margin: 2em auto 4em;
  width: 270px;
}

.excelcamp-media__list {
  margin: 10px 0;
  padding-left: 36px;
  position: relative;
}

.excelcamp-media__list::before {
  background: #34a853;
  border-radius: 50%;
  content: '';
  height: 29px;
  left: 0;
  position: absolute;
  top: 3px;
  width: 29px;
}

.excelcamp-media__list--item {
  border-bottom: 1px solid blue;
  color: blue;
  font-size: 18px;
  font-weight: bold;
  line-height: 36px;
  transition: all .3s 0s ease;
}

.excelcamp-media__list--item:hover {
  border-bottom-color: #e67a00;
  color: #e67a00;
}

.excelcamp-media__text {
  font-size: 16px;
  letter-spacing: -1px;
  line-height: 1.4;
  text-align: center;
}

.hidden-form-field,
.js-hidden {
    display: none;
}

/*---------------------------------------------------------
FAQページ
---------------------------------------------------------*/
.faq-section {
    margin-top: 4em;
    padding: 0 1em;
}

@media all and (max-width: 359px) {
    .faq-section {
        padding: 0;
    }
}

@media all and (min-width: 520px) {
    .faq-section {
        padding: 0 1.5em;
    }
}

.faq-wrapper {
    margin-top: 25px;
    padding: 0 .75em;
}

@media all and (min-width: 520px) {
    .faq-wrapper {
        padding: 0 1em;
    }
}

.faq-item-box {
    border: 1px solid #ccc;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  margin-top: 20px;
  padding: 10px 65px 10px 5px;
  position: relative;
}

@media all and (min-width: 520px) {
  .faq-item-box {
    padding: 10px 80px 10px 5px;
  }
}

.faq-item-question {
  text-align: justify;
}

@media all and (max-width: 519px) {
    .faq-item-question {
        font-size: 13.5px;
    }
}

.faq-item-answer {
    left: 0;
    padding-left: 10px;
    padding-right: 65px;
  position: absolute;
  text-align: justify;
  top: 100%;
}

@media all and (max-width: 519px) {
    .faq-item-answer {
        font-size: 13.5px;
    }

  .sitetop-faq-item-answer {
    padding-top: 10px;
  }
}

@media all and (min-width: 520px) {
  .faq-item-answer {
        padding-right: 80px;
  }
}

.faq-item-btn {
  height: 10px;
  position: absolute;
  right: 20px;
  transform: rotate(0);
  transition: transform .2s 0s ease;
  top: calc(50% - 5px);
  width: 10px;
}

@media all and (min-width: 520px) and (max-width: 959px) {
  .faq-item-btn {
        right: 30px;
  }
}

@media all and (min-width: 960px) {
  .faq-item-btn {
        right: 30px;
  }
}

.js-faq-item-box.expand .faq-item-btn {
  transform: rotate(45deg);
}

.faq-item-btn::before,
.faq-item-btn::after {
  background: #999;
  content: '';
  position: absolute;
}

.faq-item-btn::before {
  height: 100%;
  left: 4px;
  top: 0;
  width: 2px;
}

.faq-item-btn::after {
  height: 2px;
  left: 0;
  top: 4px;
  width: 100%;
}

/*---------------------------------------------------------
サイトマップ
---------------------------------------------------------*/
.sitemap__content-wrapper {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 480px;
  padding: 8.4em 10px 60px;
  width: 100%;
}

@media all and (min-width: 736px) {
  .sitemap__content-wrapper {
    max-width: none;
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .sitemap__content-wrapper {
    padding-top: 10em;
    width: 700px;
  }
}

.sitemap__section {
  margin-top: 30px;
}

.sitemap__list {
  list-style-type: disc;
  padding-left: 2em;
}

.sitemap__list--child {
  margin-left: 2em;
}

.sitemap__list--grandchild {
  margin-left: 4em;
}

.sitemap__list--greatgrandson {
  margin-left: 6em;
}

.sitemap__list--item {
  margin-bottom: 15px;
}

.sitemap__list--item_text {
  color: #555;
  font-size: 16px;
  line-height: 1.4;
  transition: color .3s 0s ease;
}

.sitemap__list--item_text:hover {
  color: #dc143c;
}

/*---------------------------------------------------------
サンクスページ
---------------------------------------------------------*/
.notes-for-banktransfer {
  border-bottom: 4px double #999;
  border-top: 4px double #999;
  margin: 2.5em 0;
}

.notes-for-pc {
  background: #eee;
  border-radius: 5px;
  padding: 3em 1em 1em;
}

.notes-for-pc__title {
  color: rgba(223,86,86,1);
  font-weight: bold;
  position: relative;
  text-align: center!important;
}

.notes-for-pc__title::before {
  background: url(../images/icon/caution.png) no-repeat center/contain;
  content: '';
  height: 30px;
  left: calc(50% - 15px);
  position: absolute;
  top: -40px;
  width: 30px;
}

.notes-for-pc__text {
  padding-left: 1.2em;
  position: relative;
}

.notes-for-pc__text::before {
  content: '・';
  left: 0;
  position: absolute;
  top: -1px;
}

/*---------------------------------------------------------
テンプレートファイル：information-box
---------------------------------------------------------*/
@media all and (max-width: 735px) {
  .info-field {
    margin-bottom: 20px;
    padding: 8px 10px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .info-field {
    margin: 0 auto 20px;
    padding: 15px 20px;
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .info-field {
    box-sizing: border-box;
    margin: 0 auto 20px;
    padding: 15px 25px;
    width: 760px;
  }
}

.border-red {
  border: 1px solid red;
}

.border-orange {
  border: 3px solid #e67a00;
}

.info-covid19-countermeasure {
  color: red;
  line-height: 1.2em;
  margin-bottom: 15px;
  text-align: center;
}

@media all and (max-width: 359px) {
  .info-covid19-countermeasure {
    letter-spacing: -.5px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .info-covid19-countermeasure {
    font-size: 20px;
  }
}

@media all and (min-width: 1280px) {
  .info-covid19-countermeasure {
    font-size: 24px;
  }
}

.info-box-txt-style {
  line-height: 1.4em;
  margin-top: 12px;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media all and (min-width: 360px) and (max-width: 374px) {
  .info-box-txt-style {
    letter-spacing: -.6px;
  }
}

.info-holding-policy {
  color: #e67a00;
  text-align: center;
}

@media all and (max-width: 359px) {
  .info-holding-policy {
    font-size: 14px;
    letter-spacing: -1.3px;
  }
}

@media all and (min-width: 360px) and (max-width: 413px) {
  .info-holding-policy {
    font-size: 15px;
    letter-spacing: -.8px;
  }
}

@media all and (min-width: 414px) and (max-width: 735px) {
  .info-holding-policy {
    font-size: 15px;
  }
}

@media all and (max-width: 735px) {
  .info-box-holding-policy {
    font-size: 11px;
    text-align: center;
  }
}

@media all and (min-width: 736px) {
  .info-box-holding-policy {
    font-size: 12.5px;
    text-align: center;
  }
}

/*---------------------------------------------------------
固定ページ（page.php）
---------------------------------------------------------*/
#page .page-content-wrapper {
  box-sizing: border-box;
  padding: 30px 10px 60px;
}

#full-wide .page-content-wrapper {
  box-sizing: border-box;
  padding: 30px 0 60px;
}

#full-wide .page-content {
  margin-left: auto;
  margin-right: auto;
}

@media all and (max-width: 735px) {
  #page .page-content-wrapper {
    width: 100%;
  }

  #full-wide .page-content {
    width: calc(100% - 8vw - 20px);
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  #page .page-content-wrapper {
    margin: 0 auto;
    width: 500px;
  }

  #full-wide .page-content {
    margin: 0 auto;
    width: 480px;
  }
}

@media all and (min-width: 1280px) {
  #page .page-content-wrapper {
    margin: 0 auto;
    width: 700px;
  }

  #full-wide .page-content {
    margin: 0 auto;
    width: 680px;
  }
}

#excelcamp-contact .page-content-wrapper,
#excelcamp-thanks .page-content-wrapper,
#excelcamp-privacy-policy .page-content-wrapper,
#excelcamp-faq .page-content-wrapper,
#excelcamp-company-profile .page-content-wrapper,
#excelcamp-disclaimer .page-content-wrapper,
#excelcamp-term .page-content-wrapper,
#excelcamp-law-info .page-content-wrapper,
#excelcamp-instructor .page-content-wrapper {
  margin: 0 auto;
  max-width: 480px;
  padding-top: 6em;
}

@media all and (min-width: 744px) {
  #excelcamp-contact .page-content-wrapper,
  #excelcamp-thanks .page-content-wrapper,
  #excelcamp-privacy-policy .page-content-wrapper,
  #excelcamp-faq .page-content-wrapper,
  #excelcamp-company-profile .page-content-wrapper,
  #excelcamp-disclaimer .page-content-wrapper,
  #excelcamp-term .page-content-wrapper,
  #excelcamp-law-info .page-content-wrapper,
  #excelcamp-instructor .page-content-wrapper {
    max-width: none;
    padding-top: 10em;
  }
}

@media all and (min-width: 1280px) {
  #excelcamp-contact .page-content-wrapper,
  #excelcamp-thanks .page-content-wrapper,
  #excelcamp-privacy-policy .page-content-wrapper,
  #excelcamp-faq .page-content-wrapper,
  #excelcamp-company-profile .page-content-wrapper,
  #excelcamp-disclaimer .page-content-wrapper,
  #excelcamp-term .page-content-wrapper,
  #excelcamp-law-info .page-content-wrapper,
  #excelcamp-instructor .page-content-wrapper {
    padding-top: 12em;
  }
}

.page-content-wrapper a {
  color: #0066c0;
  line-height: 1.4em;
  text-align: justify;
  text-decoration: underline;
  transition: all .3s 0s ease;
}

.page-content-wrapper a:hover {
  color: #dc143c;
}

.page-content-wrapper p {
  line-height: 1.4em;
  margin: 1em 0;
  text-align: justify;
}

.page-content-section {
  margin-top: 3em;
}

.page-h1 {
  color: #45a853;
  font-size: 2em;
  line-height: 1.3em;
  margin-bottom: 1em;
  text-align: justify;
}

.page-h2-simple-type {
  font-size: 1.4em;
  line-height: 1.3em;
  margin-bottom: .5em;
  text-align: justify;
}

.page-h2-deco-type {
  font-size: 1.4em;
  line-height: 1.3em;
  margin-bottom: .5em;
  padding: .5em 0 .5em 2.5em;
  position: relative;
  text-align: justify;
}

.page-h2-deco-type::before {
  background-color: #45a853;
  content: '';
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 1.2em;
}

.page-h2-post_content_fukidashi {
  background: #45a853;
  color: #fff;
  font-size: 1.4em;
  line-height: 1.3em;
  margin-bottom: 30px;
  padding: .5em 1em;
  position: relative;
  text-align: justify;
}

.page-h2-post_content_fukidashi::before {
  border: .75em solid transparent;
  border-top-color: #45a853;
  bottom: calc(2px - 1.5em);
  content: '';
  display: block;
  height: 0;
  left: 1.5em;
  position: absolute;
  width: 0;
}

.page-h2-post_content_underline {
  font-size: 1.4em;
  line-height: 1.3em;
  margin-bottom: 30px;
  padding: .5em 0;
  position: relative;
  text-align: justify;
}

.page-h2-post_content_underline::before {
  background: repeating-linear-gradient(90deg, #45a853 0%, #45a853 29.3%, rgba(150,150,150,.2) 29.3%, rgba(150,150,150,.2) 100%);
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.page-text {
  font-size: 16px;
  margin-top: 0!important;
}

.page-table {
  margin: 20px auto 0;
  width: 100%;
}

@media all and (max-width: 735px) {
  .page-table {
    margin: 20px auto 0;
    width: 100%;
  }
}

@media all and (min-width: 736px) {
  .page-table {
    margin: 30px auto 0;
    width: 100%;
  }
}

.page-table-title {
  font-size: 16px;
  line-height: 1.4em;
  vertical-align: top;
  white-space: nowrap;
}

@media all and (max-width: 374px) {
  .page-table-title {
    padding: 20px 5px 20px 0;
  }
}

@media all and (min-width: 375px) {
  .page-table-title {
    padding:  20px 5px;
  }
}

.page-table-date,
.page-table-item {
  font-size: 16px;
  line-height: 1.4em;
  vertical-align: middle;
}

.page-table-date {
  text-align: center;
}

.page-table-item {
  text-align: justify;
}

@media all and (max-width: 359px) {
  .page-table-date,
  .page-table-item {
    letter-spacing: -.5px;
    padding: 20px 0 20px 5px;
  }

  .page-table-date {
    width: 54px;
  }
}

@media all and (min-width: 360px) and (max-width: 374px) {
  .page-table-date,
  .page-table-item {
    padding: 20px 0 20px 15px;
  }

  .page-table-date {
    width: 66px;
  }
}

@media all and (min-width: 375px) and (max-width: 735px) {
  .page-table-date,
  .page-table-item {
    padding: 20px 5px 20px 18px;
  }

  .page-table-date {
    width: 75px;
  }
}

@media all and (min-width: 736px) {
  .page-table-date {
    width: 130px;
  }

  .page-table-date,
  .page-table-item {
    padding: 20px 5px 20px 30px;
  }
}

.page-table-notes {
  font-size: 12px;
  line-height: 1.4em;
}

.page-table-list {
  padding-left: .8em;
  position: relative;
}

.page-table-list:not(:last-child) {
  margin-bottom: .5em;
}

.page-table-list::before {
  content: '・';
  left: -.3em;
  position: absolute;
  top: 0;
}

.page-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}

.page-link-btn {
  background: linear-gradient(100deg, #ef7b2c 0%, #fdd3b7 100%);
  border-radius: 80px;
  box-shadow: 0 2px 2px rgba(0,0,0,.1), 0 4px 8px -4px rgba(0,0,0,.2);
  display: inline-block;
  color: #fff!important;
  font-weight: 700;
  letter-spacing: 1px;
  min-width: 64%;
  padding: .75em 1.5em;
  position: relative;
  text-align: center!important;
  text-decoration: none!important;
}

@media all and (min-width: 600px) {
  .page-link-btn {
    min-width: 40%;
  }
}

.page-link-btn:hover {
  box-shadow: 0 4px 4px rgba(0,0,0,.1), 0 8px 16px -8px rgba(0,0,0,.2);;
}

@media all and (max-width: 374px) {
  .page-access-map {
    height: 300px;
    padding: 0 15px;
  }
}

@media all and (min-width: 375px) and (max-width: 735px) {
  .page-access-map {
    height: 350px;
    padding: 0 15px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .page-access-map {
    height: 400px;
    padding: 0 25px;
  }
}

@media all and (min-width: 1280px) {
  .page-access-map {
    height: 400px;
    padding: 0 45px;
  }
}

.page-access-map iframe {
  height: 100%;
  width: 100%;
}

.page__cta {
  margin: 2em 0;
  width: 100%;
}

.over {
  margin-top: 3em!important;
}

.company-image {
  box-shadow: 2px 2px 4px rgba(0,0,0,.3);
  font-size: 0;
  height: auto;
  width: 100%; 
}

.instructor-info {
  padding: 0 20px;
}

.instructor-pic {
  margin: 0 auto;
  max-height: 528px;
  max-width: 472px;
  width: 100%;
}

.instructor-profile {
  padding: 2em 0;
}

.instructor-profile li{
  line-height: 1.2;
  margin-bottom: 4px;
  text-align: justify;
}

.company__media {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.company__media--img {
  width: 100%;
}

@media all and (min-width: 360px) {
  .company__media--img {
    width: 30%;
  }
}

.company__media--name {
  font-size: 10px;
  text-align: center!important;
}

@media all and (max-width: 359px) {
  .company__media--name {
    font-size: 13px;
  }
}

@media all and (min-width: 736px) {
  .company__media--name {
    font-size: 15px;
    margin-top: 10px!important;
  }
}

.company__media--profile {
  margin-top: 10px;
  width: 100%;
}

@media all and (min-width: 360px) {
  .company__media--profile {
    margin-top: 0;
    width: calc(70% - 30px);
  }
}

.company__media--profile_text {
  font-size: 15px;
  margin-top: 0!important;
}

@media all and (min-width: 736px) {
  .company__media--profile_text {
    font-size: 16px;
  }
}

.page-searchbox {
  margin: 1.5em auto 0;
  max-width: 300px;
  width: 80%;
}

/*---------------------------------------------------------
テンプレートファイル：cta-btns
---------------------------------------------------------*/
.cta-btns {
  background: url(../images/business/bg_img_green.jpg) no-repeat right/cover;
  padding: 1.5em 0 2em;
}

.cta-btns__wrapper {
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
  width: 100%;
}

.cta-btns__wrapper:not(:first-child) {
  margin-top: 2em!important;
}

.cta-btns__head {
  color: #fff!important;
  line-height: 1.6!important;
  margin: 0!important;
  text-align: center!important;
  text-shadow: 0 3px 6px rgba(0,0,0,.16)!important;
  font-weight: bold!important;
}

.cta-btns__head-for {
  font-size: 14px!important;
}

.cta-btns__head-title {
  font-size: 18px!important;
}

@media all and (min-width: 736px) {
  .cta-btns__head-for {
    font-size: 16px!important;
  }

  .cta-btns__head-title {
    font-size: 20px!important;
  }
}

.cta-btns__btn {
  border-radius: 12px!important;
  box-shadow: 0 3px 6px rgba(0,0,0,.16)!important;
  display: inline-block!important;
  font-size: 17px!important;
  font-weight: bold!important;
  line-height: 40px!important;
  margin: .5em auto 0!important;
  text-align: center!important;
  text-decoration: none!important;
  transition: box-shadow .3s 0s ease!important;
  width: 250px!important;
}

.cta-btns__wrapper .cta-btns__btn:nth-of-type(n + 2) {
  margin-top: 1em!important;
}

.cta-btns__btn:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,.5)!important;
}

.cta-btns__btn--orange {
  background: #ef7d2e!important;
  border: 2px solid #ef7d2e!important;
  color: #fff!important;
}

.cta-btns__btn--white {
  background: #fff!important;
  border: 2px solid #ef7d2e!important;
  color: #ef7d2e!important;
}

.wrapper__link-btns {
  margin-top: clamp(30px, 26.8px + 1vw, 46px);
}

.btn__link {
  align-items: center;
  border: 2px solid #ef7b2c;
  border-radius: clamp(8px, 6.6px + 0.44vw, 15px);
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  display: flex;
  font-size: clamp(16px, 14.4px + 0.5vw, 24px);
  font-weight: bold;
  height: clamp(42px, 39.2px + 0.88vw, 56px);
  justify-content: center;
  margin: 0 auto;
  transition: box-shadow .2s 0s ease;
  width: clamp(300px, 283px + 5.36vw, 360px);
}

.btn__link:hover {
  box-shadow: 0 0 10px rgba(0,0,0,.5);
}

.btn__link--orange {
  background: #ef7b2c;
  color: #fff;
}

.btn__link--white {
  background: #fff;
  color: #ef7b2c;
}

/*---------------------------------------------------------
テンプレートファイル：interview-link
---------------------------------------------------------*/
.parts-interview-link {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 400px;
}

.parts-interview-link__img {
  overflow: hidden;
  width: 175px;
}

.parts-interview-link__img-wrapper {
  display: flex;
  height: 175px;
  transition: transform .3s 0s ease;
}

.parts-interview-link__img-item {
  height: 100%;
  overflow: hidden;
  width: 175px;
}

.parts-interview-link_btn {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 25px auto 0;
  max-width: 370px;
  width: 100%;
}

.parts-interview-link_btn__controller {
  background: #fff;
  border: 2px solid #ef7d2e;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  cursor: pointer;
  height: 40px;
  position: relative;
  transition: box-shadow .3s 0s ease;
  width: 40px;
}

.parts-interview-link_btn__controller--backward::before,
.parts-interview-link_btn__controller--forward::before {
  background: url('../images/interview/arrow-form.png') no-repeat center/contain;
  bottom: calc(50% - 10px);
  content: '';
  height: 20px;
  left: calc(50% - 10px);
  position: absolute;
  width: 20px;
}

.parts-interview-link_btn__controller--backward::before {
  transform: rotate(90deg) translateY(1px);
}

.parts-interview-link_btn__controller--forward::before {
  transform: rotate(-90deg) translateY(1px);
}

.parts-interview-link_btn__link-btn {
  background: #ef7d2e;
  border: 2px solid #ef7d2e;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: -1.5px;
  line-height: 40px;
  text-align: center;
  transition: box-shadow .3s 0s ease;
  width: calc(100% - 40px - 40px - 20px - 20px);
}

.parts-interview-link_btn__controller:hover,
.parts-interview-link_btn__link-btn:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,.5);
}

.parts-interview-link__info {
  height: 175px;
  position: relative;
  width: calc(100% - 175px);
}

.parts-interview-link__profile {
  height: 100%;
  position: relative;
  width: 100%;
}

.parts-interview-link__profile--wrapper {
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 5em 1em 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .3s 0s ease;
  visibility: hidden;
}

@media all and (min-width: 414px) {
  .parts-interview-link__profile--wrapper {
    padding-top: 4.5em;
  }
}

.parts-interview-link__profile--wrapper.js-profile__current {
  opacity: 1;
  visibility: visible;
}

.parts-interview-link__profile--text {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -1px;
  line-height: 1.4;
  margin-bottom: 8px;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}

@media all and (max-width: 374px) {
  .parts-interview-link__profile--text {
    font-size: 15px;
  }
}

.parts-interview-link__marker {
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 100;
}

.parts-interview-link__marker--status {
  background: #e2e2e2;
  margin-left: 3.5%;
  margin-top: 6px;
  padding-top: 6.5%;
  transition: background-color .3s 0s ease;
  width: 6.5%;
}

@media all and (min-width: 420px) {
  .parts-interview-link__marker--status {
    height: 12px;
    margin-left: 10.5px;
    padding-top: 0;
    width: 12px;
  }
}

.js-marker__current {
  background: #34a853;
}

/*---------------------------------------------------------
テンプレートファイル：privacy_policy
---------------------------------------------------------*/
.ol-parent {
  list-style-type: decimal;
  padding-left: 1.25em;
}

.ol-parent li {
  line-height: 1.4;
  margin-bottom: 10px;
}

.ol-child {
  list-style-type: cjk-ideographic;
  padding-left: 2em;
}

.ol-grandchild {
  list-style-type: katakana-iroha;
  padding-left: 2.5em;
}

.ol-greatgrandson {
  list-style-type: lower-roman;
  padding-left: 2.5em;
}

.ol-child li,
.ol-grandchild li,
.ol-greatgrandson li {
  line-height: 1.4;
  margin: 5px 0;
}

/*---------------------------------------------------------
固定フッターメニュー
---------------------------------------------------------*/
#excelcamp-fixed-footer {
  background: #fff;
  border: 3px solid #34a853;
  bottom: 0;
  display: none;
  left: 0;
  padding: 8px 0 5px;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

@media all and (min-width: 736px) {
  #excelcamp-fixed-footer {
    padding: 10px 0;
  }
}

@media all and (min-width: 1280px) {
  #excelcamp-fixed-footer {
    display: none!important;
  }
}

.fixed-footer-menu-wrapper {
  align-items: center;
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
}

@media all and (max-width: 735px) {
  .fixed-footer-menu-wrapper {
    padding: 0 5px;
    width: 100%;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .fixed-footer-menu-wrapper {
    width: 500px;
  }
}

@media all and (min-width: 1280px) {
  .fixed-footer-menu-wrapper {
    width: 650px;
  }
}

.fixed-footer-menu {
  border: 2px solid #ef7b2c;
  border-radius: 8px;
  box-shadow: 0px 3px 5px rgba(0,0,0,.5);
  display: flex;
  justify-content: center;
  text-align: center;
  transform: scale(1);
  transition: all .3s 0s ease;
  width: 48%;
}

@media all and (max-width: 1279px) {
  .fixed-footer-menu {
    height: 40px;
  }
}

@media all and (min-width: 1280px) {
  .fixed-footer-menu {
    height: 50px;
  }

  .fixed-footer-menu:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,.8);
  }
}

.fixed-footer-menu.in-page-scroll-animation {
  transform: scale(1.05);
}

.fixed-footer-menu-txt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1em;
  height: 100%;
  width: 100%;
}

@media all and (max-width: 1279px) {
  .fixed-footer-menu-txt {
    font-size: 16px;
    line-height: 40px;
  }
}

@media all and (min-width: 1280px) {
  .fixed-footer-menu-txt {
    font-size: 18px;
    line-height: 50px;    
  }
}

.icon-arrow {
  background-image: url('../images/icon/icon-arrow.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 20px;
  width: 20px;
}

.fixed-footer-menu-lead {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 6px;
}

@media all and (max-width: 359px) {
  .fixed-footer-menu-lead {
    font-size: 14px;
  }
}

.fixed-footer__excelcamp-for-business {
  bottom: 20px;
  display: flex;
  font-size: 17px;
  font-weight: bold;
  justify-content: center;
  line-height: 40px;
  position: fixed;
  width: 100%;
}

.fixed-footer__excelcamp-for-business--btn {
  background: #eF7d2e;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  color: #fff;
  cursor: pointer;
  max-width: 603px;
  width: calc(100% - 20px);
}

@media all and (max-width: 735px) {
  .fixed-footer__excelcamp-for-business--btn {
    background: rgba(239,125,46,.9);
  }
}

@media all and (min-width: 1280px) {
  .fixed-footer__excelcamp-for-business--btn {
    transition: box-shadow .3s 0s ease;
  }

  .fixed-footer__excelcamp-for-business--btn:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,.5);
  }
}

/*---------------------------------------------------------
フッター
---------------------------------------------------------*/
.excelcamp-footer-wrapper {
  background-color: #b7b7b7;
}

@media all and (max-width: 735px) {
  .excelcamp-footer-wrapper {
    padding: 40px 0 70px;
  }
}

@media all and (min-width: 736px) and (max-width: 1279px) {
  .excelcamp-footer-wrapper {
    padding: 40px 0 80px;
  }
}

@media all and (min-width: 1280px) {
  .excelcamp-footer-wrapper {
    padding: 50px 0 100px;
  }
}

.excelcamp-footer-link-field {
  display: flex;
  flex-direction: column;
  margin: 0 auto 30px;
  position: relative;
  text-align: center;
}

.excelcamp-footer-link-field::after {
  background-color: #999;
  bottom: -10px;
  content: '';
  height: 1px;
  left: 10%;
  position: absolute;
  width: 80%;
}

.excelcamp-company-name {
  margin-bottom: 2em;
  text-align: center;
}

.excelcamp-company-copyright{
  text-align: center;
}

.footer__common-menu a {
  font-weight: normal!important;
}

.grecaptcha-badge {
  visibility: hidden;
}

.footer__recaptcha--notes {
  font-size:  .9em;
  margin: 2em 0 6em;
  padding: 0 2em;
}

@media all and (min-width: 361px) and (max-width: 959px) {
  .footer__recaptcha--notes {
    margin-bottom:  4em;
  }
}

@media all and (min-width: 960px) {
  .footer__recaptcha--notes {
    margin-bottom: 0;
  }
}

/*---------------------------------------------------------
ウェビナーフォーム
---------------------------------------------------------*/
.webinar-form .webinar-form__item:not(:first-child) {
  margin-top: 1em;
}

.webinar-form .wpcf7-list-item {
  line-height: 1.4;
  margin-left: 0;
  text-align: justify;
  width: 100%;
}

@media all and (min-width: 960px) {
  .webinar-form .wpcf7-list-item {
    margin-left: 1em;
  }
}

.webinar-form .excelcamp-entry-btn-box {
  margin-top: 2em;
}

.webinar-form .entry-btn {
  width: 100%;
}

.webinar-form__item,
.webinar-form__privacy-policy p,
.webinar-form__privacy-policy a {
  font-size: clamp(14px, 13px + 0.31vw, 16px)!important;
}

.webinar-form__item .item-required::before {
  margin-left: 0;
}

.webinar-form__item .wpcf7-list-item label,
.webinar-form__item .wpcf7-list-item input {
  cursor: pointer;
}

.webinar-form__item--text {
  background-color: white;
  border-color: #34a853;
  resize: none;
  transition: border-color .3s 0s ease;
  width: 100%;
}

.webinar-form__item--text:focus {
  border-color: #96dfaa;
  outline: none;
}

.webinar-form__checkboxes .wpcf7-list-item {
  width: 100%;
}

.webinar-form__checkboxes .wpcf7-list-item label {
  align-items: flex-start;
  display: flex;
}

.webinar-form__checkboxes input {
  margin-right: 5px;
  position: relative;
  top: clamp(3px, 2px + 0.31vw, 5px);
}

.webinar-form__privacy-policy {
  line-height: 1.4;
  margin-top: 1.5em;
}

.webinar-form__privacy-policy .wpcf7-list-item {
  margin-left: 0;
}

.webinar-form__privacy-policy .wpcf7-list-item label,
.webinar-form__privacy-policy .wpcf7-list-item input {
  cursor: pointer;
}

.webinar-form__item--notes {
  font-size: .8em;
  margin-left: 1em;
}

.webinar-form .form-error-msg {
  margin-bottom: 25px;
  margin-top: 20px;
}

.webinar-form .form-error-msg::before, 
.webinar-form .form-error-msg::after {
  left: 20px;
}

/* #webinar-form input,
#webinar-form textarea {
  background-color: white;
  border-color: #34a853;
  transition: border-color .3s 0s ease;
  width: 100%;
}

#webinar-form textarea {
  resize: none;
}

#webinar-form input:focus,
#webinar-form textarea:focus {
  border-color: #96dfaa;
  outline: none;
} */

