@charset "UTF-8";
/**
* Foundation
* ========================== */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;700;900&display=swap");

/*-------------------------------------
　ページ基本設定
---------------------------------------*/
#container {
    width: unset;
    margin: 0 auto;
}
#container #main {
	float: none;
	width: auto;
	color: #484848;
    font-family: "Noto Sans JP", "Roboto", YuGothic Medium, 游ゴシック Medium, Yu Gothic Medium, 游ゴシック, 游ゴシック体, YuGothic, メイリオ, Meiryo, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, Sans-Serif;
}
ul.breadCrumb.bcLast {
    margin-top: 12px !important;
    width: 970px;
    margin: 0 auto 12px;
}
.p-info__under p + p, .p-info__under p + ul {
  margin-top: 1em;
}

@media screen and (max-width: 479px) {
  .p-info__under h2,
  .p-info__under h3,
  .p-info__under h4,
  .p-info__under h5 {
    margin-right: 4vw;
    margin-left: 4vw;
  }
}

.p-info__under h2 {
  position: relative;
  font-size: 58px;
  font-weight: bold;
  letter-spacing: 1.68px;
  text-align: center;
}
.p-info__under h2 span {
    font-size: 22px;
    color: #484848;
}
@media screen and (max-width: 479px) {
  .p-info__under h2 {
    font-size: 38px;
  }
  .p-info__under h2 span {
    font-size: 16px;
  }
}

.p-info__under h3 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1.44px;
}
/*@media screen and (max-width: 479px) {
  .p-info__under h3 {
    font-size: 18px;
  }
}*/

.p-info__under__inr {
  width: 100%;
  max-width: 1140px;
}

@media screen and (min-width: 480px) {
  .p-info__under__inr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: auto;
  }
}

@media screen and (max-width: 479px) {
  .p-info__under__inr {
    padding-top: 6.66667vw;
  }
}

.p-info__under__main {
  width: 100%;
}

@media screen and (min-width: 480px) {
  .p-info__under__main {
   max-width: 1140px;
    overflow: hidden;
  }
}

@media screen and (max-width: 479px) {
  .p-info__under .sp-container {
    padding-right: 4vw;
    padding-left: 4vw;
}
}

.p-info__under__img {
  max-width: 1140px;
  margin-bottom: 50px;
}
@media screen and (max-width: 479px) {
  .p-info__under__img {
    margin-bottom: 6.66667vw;
  }
}
.p-info__under__img > img {
  width: 100%;
}

.p-info__under__body h2 {
    margin-bottom: 60px;
}

.p-info__under__body p + p {
  margin-top: 1em;
}

.p-info__under__body .p-info__under__list.notes {
  margin-bottom: 1em;
}

.p-info__under__body .p-info__under__img {
  margin-bottom: 0;
}

.p-info__under__body .p-info__under__product {
  margin-bottom: 0;
}

.p-info__under__body .p-info__table {
  margin-bottom: 0;
}

.only_pc {
  display: block;
}
@media screen and (max-width: 479px) {
  .only_pc {
    display: none;
  }
}
.only_sp {
  display: none;
}
@media screen and (max-width: 479px) {
  .only_sp {
    display: block;
  }
}

/*-------------------------------------
　ボタン
---------------------------------------*/
.c-button--secondaryA-blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 270px;
  height: 90px;
  overflow: hidden;
  border: 1px solid #a3a3a3;
  border-radius: 2px;
  background-color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 479px){
	.c-button--secondaryA-blue {
    height: 56px;
}
}

.c-button--secondaryA-blue::after {
    position: absolute;
    top: calc(50% - 4px);
    right: 25px;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-right: 3px solid;
    border-bottom: 3px solid;
    border-color: #484848;
    content: '';
}
@media screen and (max-width: 479px){
	.c-button--secondaryA-blue::after {
      right: 14px;
      width: 7px;
      height: 7px;
}
}

.c-button--secondaryA-blue::before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: -168%;
    width: 150%;
    height: 100%;
    -webkit-transform: skewX(-18deg);
            transform: skewX(-18deg);
    background-color: #a3a3a3;
    content: '';
    opacity: 0.3;
}
.c-button--over:before {
  -webkit-animation: c-button-animation-over ease-out .4s both;
          animation: c-button-animation-over ease-out .4s both;
}
.c-button--out:before {
  -webkit-animation: c-button-animation-out ease-in .4s both;
          animation: c-button-animation-out ease-in .4s both;
}
.c-button--secondaryA-blue > span {
  display: inline-block;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 480px) {
  .c-button--secondaryA-blue > span {
    font-size: 34px;
    letter-spacing: 1.96px;
    line-height: 1.63;
	color: #fff;
  }
}
@media screen and (max-width: 479px) {
  .c-button--secondaryA-blue > span {
    font-size: 16px;
    letter-spacing: 1.68px;
    line-height: 1.36;
  }
}

.c-button--secondaryA-blue {
  border: 0;
  background-color: #00a2e6;
  color: #fff;
}
.c-button--secondaryA-blue::after {
  border-color: #fff;
}

.c-button--secondaryA-blue::before {
  background-color: #fff;
  opacity: .15;
}

@-webkit-keyframes c-button-animation-over {
  0% {
    left: -168%;
  }
  100% {
    left: -18%;
  }
}

@keyframes c-button-animation-over {
  0% {
    left: -168%;
  }
  100% {
    left: -18%;
  }
}

@-webkit-keyframes c-button-animation-out {
  0% {
    left: -18%;
  }
  100% {
    left: 168%;
  }
}

@keyframes c-button-animation-out {
  0% {
    left: -18%;
  }
  100% {
    left: 168%;
  }
}


@media screen and (min-width: 480px), print {
  .p-info__under .pc-x-m-auto {
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 479px) {
  .p-info__under .sp-x-m-auto {
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 480px), print {
  .p-info__under .pc-jc-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-info__under__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 480px) {
  .p-info__under__buttons {
    margin: 20px 0;
  }
}

@media screen and (max-width: 479px) {
  .p-info__under__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-info__under__buttons a {
  width: 100%;
  max-width: 777px;
  margin-bottom: 20px;
  font-weight: bold;
  font-style: italic;
}

@media screen and (max-width: 479px) {
  .p-info__under__buttons a {
    max-width: 80vw;
    margin-bottom: 4vw;
  }
}

@media screen and (min-width: 480px) {
  .p-info__under__buttons a:nth-child(even) {
    margin-left: 20px;
  }
}

/*-------------------------------------
　リスト
---------------------------------------*/
.p-info__under__list {
  margin-bottom: 50px;
  margin-left: 1.5em;
  font-size: 14px;
}

@media screen and (max-width: 479px) {
  .p-info__under__list {
    font-size: 12px;
  }
}

@media screen and (max-width: 479px) {
  .p-info__under__list {
    margin-bottom: 25px;
  }
}

.p-info__under__list li {
  padding-left: .5em;
  line-height: 1.5;
}

.p-info__under__list li + li {
  margin-top: 5px;
}

.p-info__under__list.disc {
  list-style-type: disc;
}


/*-------------------------------------
　メインビジュアル
---------------------------------------*/
.p-info__under__mv {
    background: url(./img/seminar_streamer-support/mv_img.jpg) no-repeat center;
    height: 705px;
    background-size: cover;
	position: relative;
}
.p-info__under__mv img {
    padding-top: 50px;
    margin: 0 auto;
}
img.icon_muryo {
    position: absolute;
    bottom: 0;
    right: 0;
    left: -840px;
    padding: 0;
}
@media screen and (max-width: 479px){
.p-info__under__mv {
    background: url(./img/seminar_streamer-support/mv_img_sp.jpg) no-repeat;
    background-position: center right;
    height: 110vw;
    background-size: cover;
}
.p-info__under__mv img {
    margin: 0;
}
img.icon_muryo {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 20px;
    padding: 0;
    width: 114px;
}
}

/*-------------------------------------
　概要
---------------------------------------*/
.section_01 {
    color: #fff;
    text-align: center;
	background-color: #030539;
}
.section_01 h2 {
    font-size: 42px;
}
.section_01 h2 span {
    font-size: 30px;
}
.section_02 {
    color: #fff;
    text-align: center;
    background: url(./img/seminar_streamer-support/bg_a.jpg)no-repeat;
    background-position: center;
    background-size: cover;
    padding: 402px 0;
}
.p-info__under h4 {
    position: relative;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1.2px;
    font-style: italic;
    line-height: 2;
}
@media screen and (max-width: 479px){
	.section_01 h2 {
      font-size: 28px;
}
	.section_01 h2 span {
      font-size: 18px;
}
.section_02 {
    background: url(./img/seminar_streamer-support/bg_a_sp.jpg)no-repeat;
    background-position: top;
    background-size: cover;
    padding: 202px 0 290px;
    height: 73vw;
}
.p-info__under h4 {
    font-size: 16px;
    letter-spacing: 0.96px;
}
}

/*-------------------------------------
　こんな方におススメ！！
---------------------------------------*/
.section_03 {
    background-color: #fff;
	text-align: center;
}
.section_03 h2 {
    display: inline-block;
    background: linear-gradient(transparent 60%, #e5f6fc 0%);
	font-size: 42px;
}

.section_03 .p-info__under__img--2col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
    margin: 0 auto;
}
.section_03 h3 {
    background: #030539;
    color: #fff;
    border-radius: 25px;
    padding: 5px 0;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 24px;
    font-style: italic;
}
.section_03 div > p {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    color: #030539;
}
.p-info__under__card__number {
    position: absolute;
    left: 50px;
    top: -33px;
}

@media screen and (min-width: 480px) {
.section_03 .p-info__under__img--2col > div {
  max-width: 391px;
}
}

@media screen and (max-width: 479px) {
.section_03 h2 {
    font-size: 22px;
}
.section_03 h3 {
	font-size: 18px;
}
.section_03 .p-info__under__img--2col.column {
	-webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.section_03 .p-info__under__img--2col.column >div {
    margin-bottom: 12.333vw;
}
.section_03 .p-info__under__img--2col.column img {
    width: auto;
    max-width: 100%;
}
.section_03 .p-info__under__img--2col.column img + img {
    margin-top: 4vw;
}
}

/*-------------------------------------
　セミナー内容
---------------------------------------*/
.section_04 {
    background: url(./img/seminar_streamer-support/bg_b.jpg)no-repeat;
    background-size: cover;
    -webkit-clip-path: polygon(0 7%, 100% 1%, 100% 100%, 0% 100%);
    clip-path: polygon(0 7%, 100% 1%, 100% 100%, 0% 100%);
    padding-top: 170px;
}
.section_04 h2 {
    color: #fff;
}
@media screen and (min-width: 480px) {
.section_04 .p-info__under__product {
    display: block;
    margin-bottom: 160px;
    padding-right: 3.5px;
	position: relative;
	width: 1140px;
}
}

.section_04 .p-info__under__card {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
	max-width: 750px;
    /*margin-bottom: 27px;*/
    border: solid 1px #ececec;
    border-radius: 2px;
    -webkit-box-shadow: 3.5px 3.5px 0 0 rgba(72, 72, 72, 0.1);
    box-shadow: 3.5px 3.5px 0 0 rgba(72, 72, 72, 0.1);
    background: #fff;
	position: relative;
}
.section_04 .p-info__under__card__inr {
    display: block;
    width: 100%;
	max-width: 535px;
    height: 100%;
	min-height: 345px;
    padding: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.section_04 .p-info__under__card h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.96px;
    line-height: 1.5;
    text-align: left;
}
.section_04 .p-info__under__card p {
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 0.72px;
    line-height: 1.5;
    text-align: left;
}
.section_04 .p-info__under__card__bottom {
    padding-top: 20px;
    border-top: 5px solid;
    border-image: linear-gradient(to right, #00bffa 0%, #015fea 100%);
    border-image-slice: 1;
}
.section_04 .p-info__under__card__img {
    position: absolute;
    top: 30px;
    left: 550px;
}
.section_04 .product__reserve .p-info__under__card {
    margin-left: auto;
}
.section_04 .product__reserve .p-info__under__card__img {
    left: 80px;
}
.product__reserve .p-info__under__card__number {
    right: 420px;
    left: auto;
}
.section_04 .product__reserve .p-info__under__card__inr {
    margin-left: auto;
}

@media screen and (max-width: 479px){
.section_04 {
	background: url(./img/seminar_streamer-support/bg_b_sp.jpg)no-repeat;
	background-size: cover;
    -webkit-clip-path: polygon(0 5%, 100% 1%, 100% 100%, 0% 100%);
    clip-path: polygon(0 5%, 100% 1%, 100% 100%, 0% 100%);
	padding-bottom: 20px;
}
.p-info__under__body .p-info__under__product {
    margin-bottom: 70vw;
	position: relative;
}
.section_04 .p-info__under__card__img {
    position: absolute;
    left: auto;
    top: 76%;
    width: 100%;
    margin-top: 20px;
}
.section_04 .product__reserve .p-info__under__card__img {
    left: -4vw;
}
.p-info__under__card__img.card__img__03 {
    top: 55%;
}
.section_04 .p-info__under__card__inr {
    padding: 30px;
}
.section_04 .p-info__under__card h3 {
    font-size: 18px;
}
.section_04 .p-info__under__card p {
    font-size: 14px;
}
.p-info__under__card__number, .product__reserve .p-info__under__card__number {
	left: 12px;
    top: -25px;
    width: 55px;
}
}

/*-------------------------------------
　開催概要・講師
---------------------------------------*/
.section_05 {
    background: url(./img/seminar_streamer-support/bg_c.jpg)no-repeat;
    background-size: cover;
	padding: 60px 0 100px;
}
.section_05 h2 {
	color: #030539;
}
@media screen and (max-width: 479px){
.section_05 {
    background: url(./img/seminar_streamer-support/bg_c_sp.jpg)no-repeat;
    background-size: cover;
}
}
.section_05 .p-info__table table {
	width: 100%;
    table-layout: fixed;
	margin-bottom: 60px;
    border: 20px solid #fff;
}
@media screen and (max-width: 479px) {
  .p-info__table {
    margin-bottom: 12.26667vw;
  }
}
@media screen and (min-width: 480px) {
  .section_05 .p-info__table .col-2 th {
    width: 343px;
    text-align: center;
  }
  }
.section_05 .p-info__table th {
    padding: 15px;
    border-collapse: collapse;
    background-color: #f4f4f4;
    font-weight: normal;
    line-height: 1.5;
    vertical-align: middle;
    font-style: italic;
}
.section_05 .p-info__table td {
	padding: 20px;
	padding-left: 120px;
    border-collapse: collapse;
    line-height: 1.5;
    background-color: #fff;
}
.section_05 .p-info__table td span.note {
    font-size: 16px;
    color: #8c8c8c;
}
.section_05 .p-info__table th, .section_05 .p-info__table td {
    font-size: 24px;
	font-weight: bold;
	vertical-align: middle;
}
.section_05 .p-info__table tr + tr th,
.section_05 .p-info__table tr + tr td {
  border-top: 10px solid #fff;
}
.section_05 .p-info__under__list {
    margin-bottom: 0;
	font-size: 16px;
}
@media screen and (max-width: 479px) {
  .section_05 .p-info__table.typeA table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_05 .p-info__table.typeA table tr th {
    text-align: center;
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .section_05 .p-info__table.typeA table tr td {
    border-top: 0;
    padding: 20px;
  }
  .section_05 .p-info__table.typeA table tr + tr td {
    border-top: 0;
  }
  .section_05 .p-info__table th, .section_05 .p-info__table td {
    font-size: 18px;
  }
  .section_05 .p-info__table td span.note {
    font-size: 14px;
  }
  .section_05 .p-info__under__list {
      font-size: 14px;
  }
}
.section_05 .p-info__under__img--3col > div {
    max-width: 30.86%;
}
.p-info__under__img--3col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    justify-content: space-between;
}
.section_05 h3 {
    padding: 20px 0 20px 50px;
    font-style: italic;
}
.sec_05__h3__typeA {
    background: url(./img/seminar_streamer-support/inst_img_a.png)no-repeat;
}
.sec_05__h3__typeB {
    background: url(./img/seminar_streamer-support/inst_img_b.png)no-repeat;
}
.inst_name {
    font-size: 24px;
    font-weight: bold;
    background: url(./img/seminar_streamer-support/img_triangle.png)no-repeat;
    background-position: top right;
    background-size: contain;
    height: 160px;
    padding-top: 30px;
}
.inst_name span {
    font-size: 16px;
}
@media screen and (max-width: 479px) {
  .p-info__under__img--3col {
      display: block;
      text-align: center;
  }
  .section_05 .p-info__under__img--3col > div {
    max-width: 100%;
  }
  .section_05 h3 {
    text-align: left;
    margin-bottom: 30px;
  }
}
