@charset "UTF-8";
/*
* top.css
*
*/
/* --------------------------------
  top
-------------------------------- */
.xxxx {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 10px;
  left: 30px; 
  background: tomato;
  font-size: calc(15px + 2 * ((100vw - 320px) / 55));
}
@media screen and (min-width: 375px){
  .xxxx{
    font-size: 17px;
  }
}
@media screen and (max-width: 320px){
  .xxxx{
    font-size: 15px;
  }
}

/* --------------------------------
  header
-------------------------------- */
.ly_header {
  display: flex;
  visibility: hidden;
  opacity: 0; 
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 18.66667vw;
  background: #000;
}
.ly_header.is-fixed {
  visibility: visible;
  opacity: 1; 
  position: fixed;
  background: none;
}
@media (min-width: 1024px) {
  .ly_header.is-fixed {
    height: 90px;
    background: #000;
  }
}
.ly_header.is-fixed > .ly_header_inner {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 1024px) {
  .ly_header.is-fixed .bl_anchor {
    visibility: visible;
    opacity: 1;
  }
}
.ly_header.is-fixed .bl_hamburger {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  height: 100%;
}
.ly_header.is-fixed .bl_headerSns {
  visibility: hidden;
  opacity: 0;
}
.ly_header.is-fixed.is-hide {
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 1024px) {
  .ly_header {
    visibility: visible;
    opacity: 1; 
    height: 90px;
  }
}

.ly_header_inner {
  visibility: hidden;
  opacity: 0;
  position: relative;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease;
}
@media (min-width: 1024px) {
  .ly_header_inner {
    visibility: visible;
    opacity: 1; 
    margin: 0 auto;
    max-width: 1440px;
  }
}
.ly_header_inner.is-active .el_headerLogo {
  visibility: hidden;
  opacity: 0;
}
.ly_header_inner.is-active .bl_anchor {
  visibility: visible;
  opacity: 1;
  background: #000;
}
.ly_header_inner.is-active .bl_headerSns {
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 1024px) {
  .ly_header_inner.is-active .bl_headerSns {
    visibility: visible;
    opacity: 1;
  }
}

.bl_anchor {
  visibility: hidden;
  opacity: 0; 
  transition: 0.2s all;
}
@media (min-width: 1024px) {
  .bl_anchor {
    position: static; 
    padding: 0;
    height: 100%;
  }
}

.bl_anchor_list {
  padding: 9.33333vw 0 0;
  height: 100%;
}
@media (min-width: 1024px) {
  .bl_anchor_list {
    display: flex;
    align-items: center;
    flex: auto; 
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    max-width: 984px;
    height: 100%;
  }
}

.bl_anchor_listItem {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif; 
  font-size: 3.73333vw;
  font-weight: bold;
}
.bl_anchor_listItem::before {
  content: "";
  position: absolute;
  top: -4vw;
  right: 0;
  left: 0;
  margin: auto;
  width: 2.66667vw;
  height: 0.53333vw;
  background: #7c7c7c;
}
@media (min-width: 1024px) {
  .bl_anchor_listItem::before {
    content: "";
    top: 0;
    right: auto;
    bottom: 0;
    width: 2px;
    height: 23px;
    -webkit-transform: none;
            transform: none; 
    background: #666;
  }
}
.bl_anchor_listItem:first-child::before {
  content: none;
}
@media (min-width: 1024px) {
  .bl_anchor_listItem:first-child::before {
    content: "";
  }
}
.bl_anchor_listItem:not(:first-child) {
  margin-top: 8.26667vw;
}
@media (min-width: 1024px) {
  .bl_anchor_listItem:not(:first-child) {
    margin-top: 0;
    border-top: none;
  }
}
.bl_anchor_listItem:last-of-type {
  padding-bottom: 9.33333vw;
}
@media (min-width: 1024px) {
  .bl_anchor_listItem:last-of-type {
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .bl_anchor_listItem {
    display: flex;
    align-items: center;
    flex: auto;
    justify-content: center;
    padding-right: 0;
    width: auto;
    cursor: pointer; 
    font-size: 16px;
  }
  .bl_anchor_listItem:nth-child(even) {
    padding-right: 0;
    width: auto;
  }
  .bl_anchor_listItem:nth-child(even)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 2px;
    height: 23px;
    background: #666;
  }
  .bl_anchor_listItem:last-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 2px;
    height: 23px;
    background: #666;
  }
}
.bl_anchor_listItem > a {
  display: block;
  position: relative;
  width: 100%;
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1); 
  text-decoration: none;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}
.bl_anchor_listItem > a:hover {
  opacity: 0.7;
  color: inherit;
}

.bl_headerSns {
  position: absolute;
  top: 0;
  right: 20.69333vw;
  bottom: 0;
  height: 6.22133vw;
}
@media (min-width: 1024px) {
  .bl_headerSns {
    right: 52px;
    margin: 20px 0;
    height: 36px;
  }
}

.bl_headerSns_list {
  display: none;
}
@media (min-width: 1024px) {
  .bl_headerSns_list {
    display: block;
  }
}

.bl_headerSns_listItem {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .bl_headerSns_listItem {
    padding: 2px 0;
    font-size: 12px;
  }
}
.bl_headerSns_listItem > a {
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1); 
  color: #9db863;
}
@media (min-width: 1024px) {
  .bl_headerSns_listItem > a:hover {
    opacity: 0.7;
  }
}

.bl_hamburger {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: -1; 
  top: 0;
  right: 6.66667vw;
  bottom: 0;
  margin: auto;
  width: 7.73333vw;
  height: 4.8vw;
  background: url("/webinar/mat-cha-doh/img/ham_on.svg") no-repeat center center/contain;
}
.bl_hamburger.is-open {
  background: url("/webinar/mat-cha-doh/img/ham_off.svg") no-repeat center center/4vw 4vw;
}
@media (min-width: 1024px) {
  .bl_hamburger {
    display: none;
  }
}

.el_headerLogo {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6.13333vw; 
  margin: auto;
  width: 14.66667vw;
  height: 11.2vw;
}
@media (min-width: 1024px) {
  .el_headerLogo {
    visibility: visible;
    opacity: 1;
    left: 50px; 
    padding: 0;
    width: 68px;
    height: 53px;
  }
}
.el_headerLogo a {
  display: block;
  height: inherit;
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.el_headerLogo a:hover {
  opacity: 0.7;
}

/* --------------------------------
  main
-------------------------------- */
@media (min-width: 1024px) {
  .ly_main {
    margin-top: 90px;
  }
}

@media (max-width: 1023.98px) {
  .ly_main_dummyHeader {
    position: absolute;
    z-index: 2; 
    top: 0;
    left: 0;
    width: 100%;
    height: 2.13333vw;
    background: #000;
  }
}

/* 
  main visual
-------------------------------- */
.bl_mv {
  padding-bottom: 14.66667vw;
  background-image: url("/webinar/mat-cha-doh/img/mv_bk.jpg"); 
  text-align: center;
}
@media (min-width: 1024px) {
  .bl_mv {
    padding-bottom: 0;
  }
}

.bl_mv_date {
  position: relative;
  margin: 0 auto 2.66667vw;
  width: 86.13333vw;
  height: 34.13333vw;
  background-image: url("/webinar/mat-cha-doh/img/time_bk_sm.png");
  background-size: cover;
  color: #567c03;
}
@media (min-width: 1024px) {
  .bl_mv_date {
    margin: -96px auto 34px;
    width: 578px;
    height: 170px;
    background-image: url("/webinar/mat-cha-doh/img/time_bk_lg.png");
  }
}
.bl_mv_date::after {
  content: "";
  display: block;
  overflow: hidden;
  position: absolute;
  top: 26.13333vw;
  right: -5.86667vw;
  width: 20vw;
  height: 9.06667vw; 
  background: url("/webinar/mat-cha-doh/img/ichimatsu.png") no-repeat center top/contain;
}
@media (min-width: 1024px) {
  .bl_mv_date::after {
    top: 140px;
    right: -30px;
    width: 101.5px;
    height: 45px;
  }
}

.bl_mv_date_timeWrapper {
  display: flex;
  justify-content: center; 
  padding-top: 4.53333vw;
}
@media (min-width: 1024px) {
  .bl_mv_date_timeWrapper {
    padding-top: 19px;
  }
}

.bl_mv_date_time {
  font-family: "Crimson Text", serif;
  font-size: 9.6vw;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 1024px) {
  .bl_mv_date_time {
    font-size: 48px;
    line-height: 1.2;
  }
}

.bl_mv_date_sub {
  margin: 0 auto 1.33333vw;
  width: 73.33333vw;
  height: 6.93333vw;
  background-color: #d9d9d9;
  font-family: "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.2vw;
  line-height: 6.93333vw;
}
@media (min-width: 1024px) {
  .bl_mv_date_sub {
    margin: 0 auto;
    width: 423px;
    height: 34px;
    vertical-align: middle;
    font-size: 15px;
    line-height: 34px;
  }
}

.bl_mv_date_period {
  font-family: "Crimson Text", serif;
  font-size: 7.2vw;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .bl_mv_date_period {
    font-size: 36px;
    line-height: inherit;
  }
}

.bl_mv_date_period__md {
  padding: 0;
  font-family: "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.2vw;
}
@media (min-width: 1024px) {
  .bl_mv_date_period__md {
    padding: 0 3px;
    font-size: 15px;
  }
}

.bl_mv_date_period__slash {
  font-size: 5.86667vw;
  font-style: italic;
}
@media (min-width: 1024px) {
  .bl_mv_date_period__slash {
    font-size: 32px;
  }
}

.bl_mv_lead {
  padding: 6.66667vw;
  letter-spacing: 0.05em; 
  font-family: "游明朝体", YuMincho, "游明朝体 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", "Noto Serif JP", sans-serif;
  font-size: 4.5vw;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .bl_mv_lead {
    padding: 0 0 1px 0;
    font-size: 22px;
    line-height: 1.63636;
  }
}
.bl_mv_lead:nth-of-type(2) {
  padding: 0 6.66667vw;
}
@media (min-width: 1024px) {
  .bl_mv_lead:nth-of-type(2) {
    padding: 0 0 57px 0;
  }
}

.ul_eventdate {
  padding: 1.33333vw 2.66667vw 0 0;
  font-family: "游明朝体", YuMincho, "游明朝体 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", "Noto Serif JP", sans-serif;
  font-size: 5.06667vw;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 1024px) {
  .ul_eventdate {
    padding: 10px 16.4px 0 0;
    font-size: 26px;
  }
}

/* 
  about
-------------------------------- */
.bl_about {
  padding: 14.66667vw 0;
  background-color: #92a87c;
  text-align: center;
}
@media (min-width: 1024px) {
  .bl_about {
    padding: 60px 0 54px;
  }
}

.bl_about_ttl {
  margin: 0 auto 5.33333vw;
  width: 92vw;
  height: 14.4vw;
  background-image: url("/webinar/mat-cha-doh/img/about_bk.svg");
  background-size: cover;
  letter-spacing: 0.05em; 
  color: #fff;
  font-family: "游明朝体", YuMincho, "游明朝体 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", "Noto Serif JP", sans-serif;
  font-size: 5vw;
  font-weight: bold;
  line-height: 14.4vw;
}
@media (min-width: 1024px) {
  .bl_about_ttl {
    margin: 0 auto 44px;
    width: 580px;
    height: 90px;
    letter-spacing: 0.14em; 
    font-size: 30px;
    line-height: 93px;
  }
}

@media (min-width: 1024px) {
  .bl_about_ttl__comma {
    font-size: 35px;
  }
}

@media (min-width: 1024px) {
  .bl_about_ttl__business {
    padding: 0 8px;
  }
}

.bl_about_ttl__sm {
  font-size: 4vw;
}
@media (min-width: 1024px) {
  .bl_about_ttl__sm {
    font-size: 20px;
  }
}

.bl_about_txt {
  letter-spacing: 0.05em; 
  color: #fff;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic Std", Meiryo, sans-serif;
  font-size: 4vw;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .bl_about_txt {
    font-size: 18px;
    line-height: 1.66667;
  }
}

.bl_about_txt__pb18 {
  padding-bottom: 5.33333vw;
}
@media (min-width: 1024px) {
  .bl_about_txt__pb18 {
    padding-bottom: 18px;
  }
}

/* 
  recommend
-------------------------------- */
.bl_recommend {
  padding: 14.66667vw 0;
}
@media (min-width: 1024px) {
  .bl_recommend {
    padding: 98px 0 122px;
  }
}

.bl_recommend_ttl {
  margin: 0 auto 2.66667vw;
  width: 86.22933vw;
  height: 14.66667vw;
  background: url("/webinar/mat-cha-doh/img/sec_ttl_bk_sm.svg") no-repeat center top/contain;
  text-align: center;
  letter-spacing: 0.05em; 
  color: #000;
  font-family: "游明朝体", YuMincho, "游明朝体 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", "Noto Serif JP", sans-serif;
  font-size: 5vw;
  font-weight: bold;
  line-height: 14.66667vw;
}
@media (min-width: 1024px) {
  .bl_recommend_ttl {
    margin: 0 auto 36px;
    width: 703px;
    height: 93px;
    background: url("/webinar/mat-cha-doh/img/sec_ttl_bk_lg.svg") no-repeat center top/contain;
    letter-spacing: 0.25em; 
    font-size: 30px;
    line-height: 90px;
  }
}

.bl_recommend_content {
  display: flex;
  align-items: center;
  justify-content: center; 
  padding: 0 6.66667vw;
}
@media (min-width: 1024px) {
  .bl_recommend_content {
    padding: 0;
  }
}

.bl_recommend_list {
  list-style: none;
  font-family: "Hiragino UD Sans", "Hiragino Sans", "Hiragino Kaku Gothic Std", Meiryo, sans-serif;
  font-size: 4vw;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .bl_recommend_list {
    letter-spacing: 0.025em; 
    font-size: 20px;
  }
}

.bl_recommend_listItem {
  position: relative;
  margin-top: 3vw;
  padding-left: 9.06667vw;
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
  .bl_recommend_listItem {
    margin-top: 19px;
    padding-left: 34px;
  }
}
.bl_recommend_listItem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6.13333vw;
  height: 6.4vw;
  background: url("/webinar/mat-cha-doh/img/check-icon.svg") no-repeat center top/contain;
}
@media (min-width: 1024px) {
  .bl_recommend_listItem::before {
    top: 4px;
    width: 22px;
    height: 23px;
  }
}
.bl_recommend_listItem:first-child {
  margin-top: 6.93333vw;
}
@media (min-width: 1024px) {
  .bl_recommend_listItem:first-child {
    margin-top: 19px;
  }
}

/* 
  image section
-------------------------------- */
.bl_imageList img {
  width: 100%;
  height: auto;
}

/* 
  workshop
-------------------------------- */
.bl_workshop {
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  padding: 14.66667vw 0;
  width: 85.6vw;
  background: url("/webinar/mat-cha-doh/img/workshop_bk.svg") no-repeat center top/contain;
}
@media (min-width: 1024px) {
  .bl_workshop {
    margin: 0 auto;
    padding: 90px 0 10px;
    width: 100%; 
    max-width: 700px;
  }
}
.bl_workshop::before {
  content: "";
  display: block;
  position: absolute;
  top: -6.66667vw;
  left: 0;
  width: 90.13333vw;
  height: 19.2vw;
}
@media (min-width: 1024px) {
  .bl_workshop::before {
    top: -53px;
    left: -2px;
    width: 735px;
    height: 155px;
  }
}
.bl_workshop:nth-child(3) {
  margin-bottom: 5.33333vw;
}
@media (min-width: 1024px) {
  .bl_workshop:nth-child(3) {
    margin-bottom: 93px;
  }
}
.bl_workshop:nth-child(3)::before {
  background: url("/webinar/mat-cha-doh/img/michi_ichi.svg") no-repeat center top/contain;
}
.bl_workshop:nth-child(4) {
  margin-bottom: 5.33333vw;
}
@media (min-width: 1024px) {
  .bl_workshop:nth-child(4) {
    margin-bottom: 96px;
  }
}
.bl_workshop:nth-child(4)::before {
  background: url("/webinar/mat-cha-doh/img/michi_ni.svg") no-repeat center top/contain;
}
.bl_workshop:nth-child(5) {
  padding-bottom: 0;
}
.bl_workshop:nth-child(5)::before {
  background: url("/webinar/mat-cha-doh/img/michi_san.svg") no-repeat center top/contain;
}

.bl_workshop_wrapper {
  padding: 14.66667vw 0;
  background: url("/webinar/mat-cha-doh/img/workshop_wrapper_bk.jpg");
}
@media (min-width: 1024px) {
  .bl_workshop_wrapper {
    padding: 100px 0 117px;
  }
}

.bl_workshop_general_ttl {
  margin: 0 auto 5.33333vw;
  width: 85.6vw;
  height: 16.53333vw;
  background: url("/webinar/mat-cha-doh/img/workshop_ttl_bk.svg") no-repeat center top/contain;
  text-align: center;
  letter-spacing: 0.05em; 
  color: #000;
  font-family: "游明朝体", YuMincho, "游明朝体 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", "Noto Serif JP", sans-serif;
  font-size: 5vw;
  font-weight: bold;
  line-height: 21.33333vw;
}
@media (min-width: 1024px) {
  .bl_workshop_general_ttl {
    margin: 0 auto 41px;
    width: 700px;
    height: 134px;
    letter-spacing: 0.1em; 
    font-size: 34px;
    line-height: 173px;
  }
}

.bl_workshop_general_txt {
  padding: 2.66667vw 0;
  text-align: center;
  letter-spacing: 0.05em; 
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.2vw;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .bl_workshop_general_txt {
    padding: 10px 0;
    font-size: 16px;
    line-height: 2;
  }
}

@media (min-width: 1024px) {
  .bl_workshop_general_txt__pb {
    padding-bottom: 4px;
  }
}

.bl_workshop_ttlback {
  background-color: #fff;
}

.bl_workshop_ttlWrapper {
  position: relative;
  margin: 0 auto;
  width: 74.66667vw;
  background-color: #e9f0e9;
}
@media (min-width: 1024px) {
  .bl_workshop_ttlWrapper {
    margin: 0 auto;
    width: 574px;
  }
}
.bl_workshop_ttlWrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: -3.46667vw;
  left: 19.2vw;
  width: 36vw;
  height: 6.4vw;
  background: url("/webinar/mat-cha-doh/img/workshop_one.svg") no-repeat center top/contain;
}
@media (min-width: 1024px) {
  .bl_workshop_ttlWrapper::before {
    top: -18px;
    left: 191px;
    width: 192px;
    height: 35px;
  }
}

.bl_workshop_ttlWrapper__one::before {
  background: url("/webinar/mat-cha-doh/img/workshop_one.svg") no-repeat center top/contain;
}

.bl_workshop_ttlWrapper__two::before {
  background: url("/webinar/mat-cha-doh/img/workshop_two.svg") no-repeat center top/contain;
}

.bl_workshop_ttlWrapper__three::before {
  background: url("/webinar/mat-cha-doh/img/workshop_three.svg") no-repeat center top/contain;
}

.bl_workshop_ttl {
  padding: 4.53333vw 0 2.66667vw;
  text-align: center;
  letter-spacing: 0.05em; 
  font-family: "游明朝体", YuMincho, "游明朝体 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", "Noto Serif JP", sans-serif;
  font-size: 3.73333vw;
}
@media (min-width: 1024px) {
  .bl_workshop_ttl {
    padding: 45px 0 35px;
    font-size: 26px; 
    line-height: 1.375;
  }
}

.bl_workshop_ttl__lg {
  font-size: 4.8vw;
}
@media (min-width: 1024px) {
  .bl_workshop_ttl__lg {
    font-size: 32px;
  }
}

.bl_workshop_list {
  padding: 6.66667vw;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .bl_workshop_list {
    padding: 40px 0 40px 152px;
  }
}

@media (min-width: 1024px) {
  .bl_workshop_list__pt50 {
    padding-top: 50px;
  }
}

@media (min-width: 1024px) {
  .bl_workshop_list__pl77 {
    padding-left: 77px;
  }
}

.bl_workshop_listItem {
  position: relative;
  margin-bottom: 2.4vw;
  padding-left: 5.06667vw;
  letter-spacing: 0.05em; 
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.2vw;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .bl_workshop_listItem {
    margin-bottom: 5px;
    padding-left: 20px;
    font-size: 14px;
  }
}
.bl_workshop_listItem::before {
  content: "";
  position: absolute;
  top: 0.53333vw;
  left: 0;
  width: 4.26667vw;
  height: 4.26667vw;
  background: url("/webinar/mat-cha-doh/img/check-nobox.svg") no-repeat center top/contain;
}
@media (min-width: 1024px) {
  .bl_workshop_listItem::before {
    top: 4px;
    width: 15px;
    height: 15px;
  }
}

.bl_workshop_dateWrapper {
  padding: 15px 0;
  width: 100%;
  background-color: #92a87c;
  text-align: center;
}
@media (min-width: 1024px) {
  .bl_workshop_dateWrapper {
    padding: 20px 0 28px;
  }
}

.bl_workshop_date {
  color: #fff;
  font-family: "Crimson Text", serif;
  font-size: 7.5vw;
  font-weight: bold; 
  line-height: 1;
}
@media (min-width: 1024px) {
  .bl_workshop_date {
    padding-bottom: 6px;
    font-size: 40px;
    line-height: 1.05;
  }
}

.bl_workshop_date__sm {
  font-family: "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.2vw;
}
@media (min-width: 1024px) {
  .bl_workshop_date__sm {
    font-size: 22px;
  }
}

.bl_workshop_ticket {
  transition: color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  letter-spacing: 0.05em; 
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3vw;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .bl_workshop_ticket {
    font-size: 14px;
  }
}
.bl_workshop_ticket > a {
  border-bottom: solid 1px #000;
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1); 
  color: #2f4108;
}
@media (min-width: 1024px) {
  .bl_workshop_ticket > a:hover {
    opacity: 0.7;
  }
}

.bl_workshop_ticket__s {
  font-size: 2.93333vw;
}
@media (min-width: 1024px) {
  .bl_workshop_ticket__s {
    font-size: 10px;
  }
}

@media (min-width: 1024px) {
  .bl_workshop_arrow {
    width: 3.5px;
    height: 7px;
  }
}

/* 
  video section
-------------------------------- */
.bl_videoSec {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 66.66667vw;
  background: url("/webinar/mat-cha-doh/img/video_bk.jpg") no-repeat center top/contain;
  background-size: cover;
}
@media (min-width: 1024px) {
  .bl_videoSec {
    height: 750px;
  }
}

.bl_videoSec_vid {
  padding: 0 6vw;
}
@media (min-width: 1024px) {
  .bl_videoSec_vid {
    padding: 0;
  }
}

/* 
  ticket
-------------------------------- */
.bl_ticket {
  margin: 8vw auto 16vw;
  padding-top: 10.66667vw;
  width: 85.6vw;
  height: 57.06667vw;
  background: url("/webinar/mat-cha-doh/img/ticket_bk.svg") no-repeat center top/contain;
  text-align: center;
}
@media (min-width: 1024px) {
  .bl_ticket {
    margin: 40px auto 105px;
    padding-top: 91px;
    width: 700px;
    height: 467px;
  }
}

.bl_ticket_ttl {
  letter-spacing: 0.2em; 
  color: #fff;
  font-family: "游明朝体", YuMincho, "游明朝体 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", "Noto Serif JP", sans-serif;
  font-size: 5.86667vw;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .bl_ticket_ttl {
    font-size: 45px;
  }
}

@media (min-width: 1024px) {
  .bl_ticket_ttl__sm {
    font-size: 36px;
  }
}

.bl_ticket_price {
  margin: 0 auto;
  width: 72vw;
}
@media (min-width: 1024px) {
  .bl_ticket_price {
    margin: 6px auto;
    width: 574px;
    height: 157px;
  }
}

.bl_ticket_btn {
  display: inline-block;
  position: relative;
  margin-top: 2.13333vw;
  padding: 1.86667vw 9.33333vw;
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1); 
  background-color: #fff;
  text-decoration: none;
  color: #000;
  box-shadow: 0.8vw 0.8vw 0 0 #000;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 600;

  -webkit-text-decoration-color: #000;

          text-decoration-color: #000;
}
@media (min-width: 1024px) {
  .bl_ticket_btn {
    margin-top: 15px;
    padding: 20px;
    width: 420px;
    height: 68px;
    box-shadow: 5px 5px 0 0 #000;
  }
  .bl_ticket_btn:hover {
    opacity: 0.7;
  }
}
.bl_ticket_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 3.46667vw;
  width: 1.86667vw;
  height: 2.93333vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("/webinar/mat-cha-doh/img/arrow.svg") no-repeat center top/contain;
}
@media (min-width: 1024px) {
  .bl_ticket_btn::after {
    right: 28px;
    width: 7px;
    height: 11px;
  }
}

.bl_ticket_btn_inner {
  display: flex;
  align-items: center; 
  justify-content: center;
}
.bl_ticket_btn_inner > img {
  margin-right: 0.8vw;
  width: 17.33333vw;
}
@media (min-width: 1024px) {
  .bl_ticket_btn_inner > img {
    margin-right: 3px;
    width: 82px;
  }
}

.bl_ticket_btn_txt {
  color: #000; 
  font-size: 3.46667vw;
}
@media (min-width: 1024px) {
  .bl_ticket_btn_txt {
    font-size: 18px;
  }
}

/* 
  profile
-------------------------------- */
.bl_profile {
  padding: 8vw 6vw;
}
@media (min-width: 1024px) {
  .bl_profile {
    padding: 39px 0 0;
  }
}
.bl_profile:last-of-type {
  padding-bottom: 0;
}

.bl_profile_wrapper {
  margin: 0 auto;
  padding: 14.66667vw 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .bl_profile_wrapper {
    padding: 119px 0;
    max-width: 704px;
  }
}

.bl_profile_wrapper_ttl {
  margin: 0 auto 5.86667vw;
  width: 86.22933vw;
  height: 14.66667vw;
  background: url("/webinar/mat-cha-doh/img/sec_ttl_bk_sm.svg") no-repeat center top/contain;
  text-align: center;
  letter-spacing: 0.14em; 
  color: #000;
  font-family: "游明朝体", YuMincho, "游明朝体 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", "Noto Serif JP", sans-serif;
  font-size: 5vw;
  font-weight: bold;
  line-height: 14.66667vw;
}
@media (min-width: 1024px) {
  .bl_profile_wrapper_ttl {
    margin: 0 auto 33px;
    width: 703px;
    height: 93px;
    background: url("/webinar/mat-cha-doh/img/sec_ttl_bk_lg.svg") no-repeat center top/contain;
    font-size: 34px;
    line-height: 90px;
  }
}

.bl_profile_grid {
  display: -ms-grid;
  display: grid;

  -ms-grid-columns: 36.26667vw calc(100% - 36.26667vw);

  grid-template-columns: 36.26667vw calc(100% - 36.26667vw);
      grid-template-areas: "areaA areaB" "areaC areaC";
}
@media (min-width: 1024px) {
  .bl_profile_grid {
    -ms-grid-columns: 254px calc(100% - 254px);
    grid-template-columns: 254px calc(100% - 254px);
        grid-template-areas: "areaA areaB" "areaA areaC";
  }
}

.bl_profile_image {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: areaA;
}
@media (min-width: 1024px) {
  .bl_profile_image {
    margin-top: 6px;
  }
}

.bl_profile_info {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  padding-left: 4vw;

  grid-area: areaB;
}
@media (min-width: 1024px) {
  .bl_profile_info {
    padding-left: 31px;
  }
}

.bl_profile_ttl {
  font-family: "游明朝体", YuMincho, "游明朝体 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", "Noto Serif JP", sans-serif;
  font-size: 4.26667vw; 
  font-weight: 600;
}
@media (min-width: 1024px) {
  .bl_profile_ttl {
    font-size: 20px;
  }
}

.bl_profile_ttl__sm {
  font-size: 4.26667vw;
}
@media (min-width: 1024px) {
  .bl_profile_ttl__sm {
    font-size: 16px;
  }
}

.bl_profile_name {
  font-family: "游明朝体", YuMincho, "游明朝体 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", "Noto Serif JP", sans-serif;
  font-size: 6.93333vw; 
  font-weight: 600;
}
@media (min-width: 1024px) {
  .bl_profile_name {
    font-size: 40px;
    line-height: 1.4;
  }
}

.bl_profile_job {
  padding: 2.66667vw 0 0;
  letter-spacing: 0.05em; 
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.73333vw;
  font-weight: 300;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .bl_profile_job {
    padding: 8px 0 0;
    font-size: 16px;
    line-height: 1.625;
  }
}

.bl_profile_txt {
  letter-spacing: 0.05em; 
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.73333vw;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .bl_profile_txt {
    padding: 0 0 20px;
    font-size: 16px;
    line-height: 1.625;
  }
}

.bl_profile_txtWrapper {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  padding: 4.26667vw 0 0 0;

  grid-area: areaC;
}

@media (min-width: 1024px){
  .bl_profile_image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .bl_profile_info {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .bl_profile_txtWrapper {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
}
@media (min-width: 1024px) {
  .bl_profile_txtWrapper {
    padding: 0 0 0 31px;
  }
}

.bl_profile_careerTtl {
  padding: 4.26667vw 0;
  font-family: "游明朝体", YuMincho, "游明朝体 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", "Noto Serif JP", sans-serif;
  font-size: 4.8vw; 
  font-weight: 600;
}
@media (min-width: 1024px) {
  .bl_profile_careerTtl {
    padding: 0 0 5px 0;
    font-size: 16px;
  }
}

.bl_profile_career {
  letter-spacing: 0.05em; 
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic Std", Meiryo, sans-serif;
  font-size: 3.73333vw;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .bl_profile_career {
    padding: 0;
    font-size: 16px;
    line-height: 1.625;
  }
}

/* 
  question
-------------------------------- */
.bl_question {
  padding: 14.66667vw 0;
  background: url("/webinar/mat-cha-doh/img/workshop_wrapper_bk.jpg");
}
@media (min-width: 1024px) {
  .bl_question {
    padding: 95px 0 114px;
  }
}

.bl_question_ttl {
  margin: 0 auto 8.8vw;
  width: 86.22933vw;
  height: 14.66667vw;
  background: url("/webinar/mat-cha-doh/img/sec_ttl_bk_sm.svg") no-repeat center top/contain;
  text-align: center;
  letter-spacing: 0.14em; 
  color: #000;
  font-family: "游明朝体", YuMincho, "游明朝体 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", "Noto Serif JP", sans-serif;
  font-size: 5vw;
  font-weight: bold;
  line-height: 14.66667vw;
}
@media (min-width: 1024px) {
  .bl_question_ttl {
    margin: 0 auto 33px;
    width: 703px;
    height: 93px;
    background: url("/webinar/mat-cha-doh/img/sec_ttl_bk_lg.svg") no-repeat center top/contain;
    font-size: 34px;
    line-height: 90px;
  }
}

.bl_question_wrapper {
  padding: 0 6vw;
}
@media (min-width: 1024px) {
  .bl_question_wrapper {
    margin: 60px auto 0;
    padding: 0;
    max-width: 700px;
  }
}

.bl_question_innerWrapper {
  padding-bottom: 29px;
}
@media (min-width: 1024px) {
  .bl_question_innerWrapper {
    padding-bottom: 29px;
  }
}
.bl_question_innerWrapper:last-of-type {
  padding-bottom: 0;
}

.bl_question_q {
  position: relative;
  padding: 1.86667vw 0 0 6.93333vw;
  letter-spacing: 0.05em; 
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.73333vw;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .bl_question_q {
    padding: 17px 0 0 45px;
    font-size: 18px;
  }
}
.bl_question_q::before {
  content: "";
  position: absolute;
  top: 2.13333vw;
  left: 0;
  width: 6.4vw;
  height: 5.33333vw;
  background: url("/webinar/mat-cha-doh/img/Q.svg") no-repeat center top/contain;
}
@media (min-width: 1024px) {
  .bl_question_q::before {
    top: 15px;
    width: 37.28px;
    height: 31.64px;
  }
}

.bl_question_a {
  position: relative;
  padding: 1.86667vw 0 0 6.93333vw;
  letter-spacing: 0.05em; 
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.73333vw;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .bl_question_a {
    padding-top: 25px;
    padding-left: 45px;
    font-size: 16px;
  }
}
.bl_question_a::before {
  content: "";
  position: absolute;
  top: 2.4vw;
  left: 0;
  width: 6.4vw;
  height: 5.33333vw;
  background: url("/webinar/mat-cha-doh/img/A.svg") no-repeat center top/contain;
}
@media (min-width: 1024px) {
  .bl_question_a::before {
    top: 23px;
    width: 35.68px;
    height: 26.44px;
  }
}
.bl_question_a > a {
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1); 
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .bl_question_a > a:hover {
    opacity: 0.7;
  }
}

/* 
  context
-------------------------------- */
.bl_context {
  padding: 14.66667vw 0;
}
@media (min-width: 1024px) {
  .bl_context {
    padding: 118px 0 80px;
  }
}

.bl_context_ttl {
  margin: 0 auto 8.8vw;
  width: 86.22933vw;
  height: 14.66667vw;
  background: url("/webinar/mat-cha-doh/img/sec_ttl_bk_sm.svg") no-repeat center top/contain;
  text-align: center;
  letter-spacing: 0.14em;
  color: #000;
  font-family: "游明朝体", YuMincho, "游明朝体 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", "Noto Serif JP", sans-serif;
  font-size: 5vw;
  font-weight: bold;
  line-height: 14.66667vw;
}
@media (min-width: 1024px) {
  .bl_context_ttl {
    margin: 0 auto 33px;
    width: 703px;
    height: 93px;
    background: url("/webinar/mat-cha-doh/img/sec_ttl_bk_lg.svg") no-repeat center top/contain;
    font-size: 34px;
    line-height: 90px;
  }
}

.bl_context_txtWrapper {
  margin: 2.66667vw 6.66667vw;
  padding: 6.66667vw 6.66667vw 2.4vw;
  background-color: #f4f7f4;
}
@media (min-width: 1024px) {
  .bl_context_txtWrapper {
    margin: 59px auto 70px;
    padding: 45px 50px 25px;
    max-width: 700px;
  }
}

.bl_context_txt {
  padding-bottom: 4.26667vw;
  letter-spacing: 0.05em; 
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.73333vw;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .bl_context_txt {
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 1.625;
  }
}

/* 
  sns
-------------------------------- */
.bl_snsSec {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 9.06667vw 0 11.2vw;
  border-top: 0.53333vw solid #567c03;
  background-color: #eaefe9;
}
@media (min-width: 1024px) {
  .bl_snsSec {
    flex-direction: row;
    justify-content: center; 
    padding: 30px 0;
    border-width: 2px;
  }
}

.bl_snsSec_txtWrapper {
  text-align: center;
}
@media (min-width: 1024px) {
  .bl_snsSec_txtWrapper {
    margin-right: 39px; 
    text-align: left;
  }
}

.bl_snsSec_txtEn {
  letter-spacing: 0.05em;
  color: #567c03;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 6.93333vw;
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .bl_snsSec_txtEn {
    font-size: 26px;
    line-height: 1.3;
  }
}

.bl_snsSec_txtJa {
  color: #567c03;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 4.26667vw;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 1024px) {
  .bl_snsSec_txtJa {
    letter-spacing: 0.03em;
    font-size: 16px;
    line-height: inherit;
  }
}

.bl_snsSec_iconWrapper {
  display: flex;
  padding-top: 6.66667vw;
}
@media (min-width: 1024px) {
  .bl_snsSec_iconWrapper {
    padding-top: 0;
  }
}

.bl_snsSec_icon {
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1); 
  text-align: center;
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.2vw;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .bl_snsSec_icon {
    font-size: 12px;
  }
}
.bl_snsSec_icon:nth-child(1) {
  margin-right: 5.33333vw;
}
@media (min-width: 1024px) {
  .bl_snsSec_icon:nth-child(1) {
    margin-right: 20px;
  }
}
.bl_snsSec_icon:hover {
  opacity: 0.7;
}

.bl_snsSec_icon_txt {
  color: #000;
}
@media (min-width: 1024px) {
  .bl_snsSec_icon_txt {
    padding-top: 4px;
  }
}

.bl_snsSec_icon_img {
  width: 14.13333vw;
}
@media (min-width: 1024px) {
  .bl_snsSec_icon_img {
    width: 52.714px;
    height: 51.396px;
  }
}

/* --------------------------------
  footer
-------------------------------- */
/* 
  cooperation
-------------------------------- */
.bl_cooperation {
  padding: 9.06667vw 0 10.4vw;
  background-color: #f4f4f4;
  text-align: center;
}
@media (min-width: 1024px) {
  .bl_cooperation {
    padding: 53px 0 70px;
  }
}

.bl_cooperation_ttl {
  display: inline-block;
  position: relative;
  padding: 0 22px;
  letter-spacing: 0.14em; 
  font-family: "游明朝体", YuMincho, "游明朝体 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", "Noto Serif JP", sans-serif;
  font-size: 4.8vw;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .bl_cooperation_ttl {
    padding: 0 22px;
    font-size: 18px;
  }
}
.bl_cooperation_ttl::before,
.bl_cooperation_ttl::after {
  content: "";
  position: absolute;
  top: 1.33333vw; 
  width: 6px;
  height: 61%;
}
@media (min-width: 1024px) {
  .bl_cooperation_ttl::before,
  .bl_cooperation_ttl::after {
    top: 5px;
  }
}
.bl_cooperation_ttl::before {
  left: 0; 
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  border-left: solid 1px #000;
}
.bl_cooperation_ttl::after {
  right: 0; 
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
}

.bl_cooperation_wrapper {
  display: flex;
  align-items: center; 
  justify-content: center;
  margin-top: 7.73333vw;
}
@media (min-width: 1024px) {
  .bl_cooperation_wrapper {
    margin-top: 33px;
  }
}

.bl_cooperation_img__matchadoh {
  margin: 0 8vw 0 5.06667vw;
  width: 15.2vw;
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media (min-width: 1024px) {
  .bl_cooperation_img__matchadoh {
    margin: 0 70px 0 23px;
    width: 76px;
  }
  .bl_cooperation_img__matchadoh:hover {
    opacity: 0.7;
  }
}

.bl_cooperation_img__x {
  margin-right: 8vw;
}
@media (min-width: 1024px) {
  .bl_cooperation_img__x {
    margin-right: 70px;
  }
}

.bl_cooperation_img__unt {
  width: 20.53333vw;
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media (min-width: 1024px) {
  .bl_cooperation_img__unt {
    width: 101.854px;
  }
  .bl_cooperation_img__unt:hover {
    opacity: 0.7;
  }
}

/* 
  copyright
-------------------------------- */
.bl_copyright {
  background-color: #000;
}

.bl_copyright_txt {
  padding: 4vw 0;
  text-align: center;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Std", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.66667vw; 
  font-weight: 300;
}
@media (min-width: 1024px) {
  .bl_copyright_txt {
    padding: 15px 0;
    letter-spacing: 0.05em; 
    font-size: 10px;
  }
}

/* --------------------------------
  follow
-------------------------------- */
.followArea {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: 0.2s ease;
}
@media (min-width: 1024px) {
  .followArea {
    top: 50vh;
    right: 0;
    bottom: auto;
    left: auto;
    width: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.followArea.display {
  visibility: visible;
  opacity: 1;
}

.followArea_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .followArea_wrapper {
    flex-direction: column;
  }
}

.followArea_ticket {
  width: calc(100% - 29.86667vw);
  background: #fff;
}
@media (min-width: 1024px) {
  .followArea_ticket {
    width: 100%;
  }
}
.followArea_ticket a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 6.66667vw 0 15.2vw;
  border: 0.26667vw solid #000;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none; 
  color: #000;
  font-size: 4.53333vw;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 1024px) {
  .followArea_ticket a {
    padding: 78px 0 46px;
    border-width: 2px;
    border-right: none;
    width: 70px;
    height: 332px;
    letter-spacing: 0.02em;
    font-size: 20px;

    -webkit-writing-mode: vertical-rl;

        -ms-writing-mode: tb-rl;

            writing-mode: vertical-rl;
  }
  .followArea_ticket a:hover {
    opacity: 0.7; 
    text-decoration: none;
  }
}
.followArea_ticket a span {
  position: relative;
}
.followArea_ticket a span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -11.33333vw;
  margin: auto;
  width: 8.8vw;
  height: 8.8vw;
  background: url("/webinar/mat-cha-doh/img/peatix_side.svg") no-repeat center top/contain;
}
@media (min-width: 1024px) {
  .followArea_ticket a span::before {
    top: -58px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 45px;
    height: 45px;
  }
}
.followArea_ticket a span::after {
  content: "";
  position: absolute;
  top: 0;
  right: -6.4vw;
  bottom: 0;
  margin: auto;
  width: 2.66667vw;
  height: 2.66667vw;
  background: url("/webinar/mat-cha-doh/img/arrow_ticket.svg") no-repeat center top/contain;
}
@media (min-width: 1024px) {
  .followArea_ticket a span::after {
    top: auto;
    right: 0;
    bottom: -21px;
    left: 0;
    margin: auto;
    width: 10px;
    height: 10px;
  }
}

.followArea_sns_txt {
  display: none;
  color: #567c03;
  font-family: "Crimson Text", serif;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .followArea_sns_txt {
    display: block;
    margin: 53px 0 8px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
  }
}

.followArea_snsList {
  display: flex;
  flex-direction: row;
}
@media (min-width: 1024px) {
  .followArea_snsList {
    flex-direction: column;
  }
}

.followArea_snsList_item a {
  transition: 0.2s ease;
}
@media (min-width: 1024px) {
  .followArea_snsList_item a:hover {
    opacity: 0.7;
  }
}

.followArea_snsList_item img {
  width: 14.93333vw;
  height: 14.93333vw;
}
@media (min-width: 1024px) {
  .followArea_snsList_item img {
    width: 70px;
    height: 70px;
  }
}

.followArea_snsList_item + .top {
  display: none;
}
@media (min-width: 1024px) {
  .followArea_snsList_item + .top {
    display: block;
    padding-top: 15px;
  }
}

/* --------------------------------
  helper
-------------------------------- */
.hp_underline {
  background: linear-gradient(transparent 70%, rgba(255, 241, 0, 0.5) 50%);
}

.hp_underline__100 {
  background: linear-gradient(transparent 80%, #fff100 50%);
}

.hp_f16 {
  font-size: 3.2vw !important;
}
@media (min-width: 1024px) {
  .hp_f16 {
    font-size: 16px !important;
  }
}

.el_icon {
  fill: #769630;
}

@media (min-width: 1024px) {
  .el_icon_fb {
    width: 21px;
    height: 21px;
  }
}

@media (min-width: 1024px) {
  .el_icon_tw {
    width: 20px;
    height: 17px;
  }
}