<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
:root {

  --text-font: "Noto Sans JP", sans-serif;
  --theme-font: "M PLUS 1p", sans-serif;

  --main-color: #00A0E8;
  --sub-color: #5D9D21;
  --accent-color: #EB8A00;

  --white-color: #fff;
  --black-color: #000;
  --text-color: #333;
  --gray-color: #EFF3F5;
  --bluegray-color: #B1D5E1;

  --weight-eb: 800;
  --weight-b: 700;
  --weight-s: 600;
  --weight-m: 500;
  --weight-r: 400;

  --space-xl: min(10.5vw, 126px);
  --space-xl-t: min(8.7vw, 105px);
  --space-l: min(7vw, 84px);
  --space-m: min(5.3vw, 64px);
  /* --space-s: 28px; */
  --space-s: clamp(1rem, 0.659rem + 1.45vw, 1.75rem);

  --annotation-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
  --text-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
  --heading-size: max(22px, min(4.5vw, 54px));
  --qa-size: max(26px, min(5.3vw, 64px));
  /* --talk-size: 24px; */
  /* --talk-size: clamp(1.125rem, 0.955rem + 0.73vw, 1.5rem); */
  --talk-size: clamp(1.125rem, 1.068rem + 0.24vw, 1.25rem);
  --session-size: clamp(1.375rem, 1.148rem + 0.97vw, 1.875rem);


}

@media only screen and (max-width: 640px) {
  :root {
    --space-xl: 14vw;
    --space-xl-t: 16vw;
  }  
}


/* base */
html {
  scroll-behavior: smooth;
  /* word-break: keep-all;
  line-break: strict; */
}
body {
  color: var(--text-color);
  animation: fadein 0.5s;
}
@keyframes fadein {
  0% {
    opacity: 0.01;
  }
  100% {
    opacity: 1;
  }
}


/* Forguncy_header __original */
header {
  height: 85px;
}
main {
  padding-top: 0;
  font-family: var(--text-font);
}
header {
  background-color: rgba(255, 255, 255, 0.8);
}
.header-lower-cont {
  max-width: var(--max-width-xl);
}
.header-lower-cont &gt; a {
  flex: 1;
}
.hamb-button__wrap &gt; a {
  flex: 1;
}
.header-main-navi a {
  color: var(--text-color);
}
.header-lower {
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  header {
    height: 70px;
  }
}
@media only screen and (max-width: 960px) {
  .header-lower-cont .header-logo {
    display: inline;
  }
  .header-wrap, .header-wrap .close {
      display: block;
  }
  .header-lower-cont {
    height: 100%;
  }
  .header-main-navi {
    display: flex;
    align-items: center;
    margin: 0;
    color: #fff;
  }
  .header-main-navi li:nth-child(-n+2) {
    border: none;
  }
  .header-main-navi li {
      width: auto;
      margin-right: 1.2rem;
      padding: .5rem;
      border: none;
  }
}
@media only screen and (max-width: 640px) {
  .title-h2 {
      width: 100%;
  }
}

@media only screen and (max-width: 540px) {
  header {
    height: auto;
  }
  .header-lower-cont {
    flex-direction: column;
  }
  .header-logo {
    padding-block: 1rem .5rem;
  }
  .header-lower-cont nav {
    display: block;
    width: 100%;
  }
  .header-main-navi {
    justify-content: space-between;
  }
  .header-main-navi li {
    margin-right: 0;
  }
}




/* helper */
.hp_max-width {
  max-width: 1380px;
  margin: 0 auto;
}
.hp_bg-whiteColor {
  background-color: #fff;
}
.hp-font-theme {
  font-family: var(--theme-font);
}
.hp-fw-bolder {
  font-weight: bolder;
}
.hp-fw-900 {
  font-weight: 900;
}
.hp-fw-700 {
  font-weight: 700;
}
.hp-fw-500 {
  font-weight: 500;
}
.hp-inlineblock {
  display: inline-block;
}
.hp-bg-white {
  background-color: var(--white-color);
}
.hp-bg-gray {
  background-color: var(--gray-color);
}

.hp-bg-line {
  background: 
    repeating-linear-gradient( transparent 0, transparent 19px, rgba(255,255,255,1) 19px, rgba(255,255,255,1) 20px),
    repeating-linear-gradient(90deg, transparent 0, transparent 19px, rgba(255,255,255,1) 19px, rgba(255,255,255,1) 20px);
  background-repeat: repeat-x;
}


.hp-font-maincolor {
  color: var(--main-color);
}
.hp-font-subcolor {
  color: var(--sub-color);
}
.hp-font-accentcolor {
  color: var(--accent-color);
}
.hp-fz-0_7em {
  font-size: 0.7em;
}
.hp-annotation {
  font-size: var(--annotation-size) !important;
}

.hp-mb-xl {
  margin-bottom: var(--space-xl);
}
.hp-mb-l {
  margin-bottom: var(--space-l);
}
.hp-mb-m {
  margin-bottom: var(--space-m);
}
.hp-mb-s {
  margin-bottom: var(--space-s);
}


.ly_section {
  padding-top: var(--space-xl-t);
  padding-bottom: var(--space-xl);
  padding-inline: 2rem;
  /* min-height: 50vh; */
}

/* block */
.ly_head_wrap {
  position: relative;
  /* min-height: 100vh; */
  background-color: #fff;
}

.ly_head {
  position: relative;
  min-height: 100vh;
  padding-top: 85px;
  display: grid;
  grid-template-columns: 1fr;
  /* grid-template-rows: 70% 15% 15%; */
  grid-template-rows: max(50vh, calc(100vh - 320px)) 150px 70px;
}

.head-hero {
  display: grid;
  justify-items: center;
  align-items: center;
  height: 100%;
  padding-bottom: 1rem;
  margin-top: -1rem;
}

.head-hero svg {
  max-height: 100%;
  max-width: 100%;
}

.head-message {
  display: grid;
  padding-inline: 2rem;
  justify-items: center;
  align-items: center;
}
.head-scroll {
  display: grid;
  justify-items: center;
  align-items: center;
  text-align: center;
}
.head-scroll p {
  margin: 0;
}
.head-scroll svg {
  width: 1.2em;
  animation: arrowmove 1.5s ease-in-out infinite;
  fill: var(--text-color);
}
@keyframes arrowmove{
      0%{transform:translateY(-5px);}
      50%{transform:translateY(5px);}
     100%{transform:translateY(-5px);}
 }

.title-mv {
  margin: 0;
  font-size: clamp(1.5rem, 0.818rem + 2.91vw, 3rem);/*375-1200*/
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: var(--text-color);
  text-align: center;
}


@media only screen and (max-width: 1200px) {
  .ly_head {
    padding-top: 70px;
    grid-template-rows: max(50vh, calc(100vh - 290px)) 150px 70px;
  }
}
@media only screen and (max-width: 768px) {
  .ly_section {
    padding-inline: 0.5rem;
  }
  .ly_head {
    grid-template-rows: 60% 25% 15%;
  }
}
@media only screen and (max-width: 640px) {
  .ly_head {
    grid-template-rows: 60% 25% 15%;
  }
  .head-hero {
    align-items: flex-end;
    padding-bottom: 1rem;
  }
}
@media only screen and (max-width: 540px) {
  .ly_head {
    padding-top: 105px;
  }
}
.title-section{
  font-size: var(--heading-size);
  text-align: center;
}
/* #timetable .title-section{
  letter-spacing: -0.08em;
} */
.title_q {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  padding-left: 12vw;
}

.title_q h2 {
  padding-left: 0;
  font-size: var(--qa-size);
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-decoration-color: var(--main-color);
  text-decoration-thickness: 5px;
}
.title_q::before {
  content:"";
  position: relative;
  top: 0.2em;
  left: 0;
  height: 1.7em;
  margin-right: 0.7em;
  aspect-ratio: 1 /1;
  font-size: var(--qa-size);
  background-image: url(../img/qa.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (max-width: 640px) {
  .title_q {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 0.5em;
    padding-left: 0;
  }
  .title_q h2 {
    text-align: center;
  }
}



.talk-wrap {
  display: flex;
  flex-direction: row;
  max-width: min(95%, 1280px);
  margin-inline: auto;
}
.talk-wrap__right {
  flex-direction: row-reverse;
}

.talk-icon {
  flex: 0 0 min(28%, 350px);
  padding-left: 5%;
  padding-right: 2%;
  margin-inline: 1vw;
}
.talk-text {
  flex: auto;
  margin-left: 3%;
  margin-right: 2%;
}
.talk-wrap__right .talk-icon {
  padding-left: 2%;
  padding-right: 5%;
}
.talk-wrap__right .talk-text {
  flex: auto;
  margin-left: 2%;
  margin-right: 3%;
}

.talk-icon figure {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  justify-items: center;
}
.icon-img {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: no-repeat;
  background-position: center;
  box-shadow: 1px 1px 5px #aaa;
  border: 3px solid #fff;
}
.icon-text {
  font-size: var(--annotation-size);
  text-align: center;
  font-kerning: auto;
}
.icon-text span {
  font-size: 1.25em;
}


.talk-text {
  position: relative;
  padding: 2.1em 3em;
  border-radius: 2.2em;
  height: fit-content;
  background: var(--white-color);
  font-size: var(--talk-size);
}
.talk-text p {
  margin-top: 0;
  font-size: var(--talk-size);
}

.talk-text:before {
  content: "";
  display: inline-block;
  border: 30px solid transparent;
  border-right-color: #fff;
  position: absolute;
  left: -55px;
  top: 40%;
  margin-top: -30px;
}

.talk-wrap__right .talk-text:before {
  border-right-color: transparent;
  border-left-color: #fff;
  left: auto;
  right: -55px;
}

@media only screen and (max-width: 768px) {
  .talk-wrap,
  .talk-wrap__right {
    flex-direction: column-reverse;
  }
  .talk-icon figure {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5%;
  }
  /* .talk-icon {
    flex: 0 0 min(28%, 350px);
  } */
  .icon-img {
    width: 150px;
  }
  .talk-text {
    padding: 1.5em 2.5em;
    margin-bottom: var(--space-m);
  }
  .talk-icon,
  .talk-wrap__right .talk-icon {
    padding-right: 5%;
    padding-left: 5%;
  }
  .talk-text,
  .talk-wrap__right .talk-text {
    margin-right: 2%;
    margin-left: 2%;
  }
  
  .talk-text:before,
  .talk-wrap__right .talk-text:before {
    content: "";
    display: inline-block;
    border: 20px solid transparent;
    border-top-color: #fff;
    position: absolute;
    top: auto;
    left: 50%;
    right: auto;
    bottom: -39px;
    margin-top: 0;
    margin-left: -20px;
  }

}
@media only screen and (max-width: 540px) {
  .talk-text {
    padding: 1.5em 1.5em;
  }
}



/*****レスポンシブ設定*****/
/* @media screen and (max-width: 480px) {
  .icon-img {
      width: 80px;
      height: 80px;
  }

  .talk-text {
      width: 65%;
  }
}

@media screen and (max-width: 380px) {
  .icon-img {
      width: 60px;
      height: 60px;
  }

  .talk-text {
      width: 65%;
  }
} */

.meetup-table {
  max-width: 720px;
  margin: 0 auto;
  font-size: var(--text-size);
}
.meetup-table .table td,
.meetup-table .table th {
  padding: .75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}
.meetup-table .table--head {
  white-space: nowrap;
  background-color: var(--gray-color);
  text-align: center;
}
.meetup-table .table td {
  padding-left: 2em;
}

.timetable-row {
  max-width: 900px;
  margin: 0 auto;
  padding-block: var(--space-s);
  border: 1px solid var(--main-color);
}
.timetable-row hr {
  padding-bottom: var(--space-s);
}

.timetable-row:not(:first-child) {
  border-top: 1px solid transparent;
}
.timetable-row p {
  font-size: var(--text-size);
  margin-top: 0;
}
.timetable-row__line {
  background-color: var(--bluegray-color);
  text-align: center;
}
.timetable-row__contents {
  padding-inline: min(50px, 3vw);
  background-color: var(--gray-color);
}

.session-text {
  margin-bottom: 1rem;
  color: var(--accent-color);
}
.session-title {
  font-size: var(--session-size);
  text-align: center;
  line-height: 1.5;
}

.timetable-speaker {
  display: grid;
  grid-template-columns: repeat(auto-fit, max(250px, 26%));
  justify-content: center;
  column-gap: 1.5%;
  row-gap: var(--space-m);
}
.speaker {
  position: relative;
}
.speaker img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
}
.speaker-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-block: 0.3em 0.5em;
  padding-right: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white-color);
  text-align: right;
  font-size: 13px !important;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.speaker-name span {
  font-size: 1.125em;
}
.speaker__noimg .speaker-name {
  position: relative;
  background-color: initial;
  color: var(--text-color);
  text-align: center;
}



/* after-------------------------------- */
.hp-max-w800 {
  max-width: 800px;
}
.after p {
  font-size: var(--talk-size);
}
.after a {
  text-decoration: underline;
}
.after .head-message {
  padding-inline: 0;
}
.after .w-margin {
  width: 75%;
  margin-inline: auto;
}
  .after .ly_head {
    grid-template-rows: max(50vh, calc(100vh - 400px)) 230px 70px;
  }
@media (orientation: landscape) and (max-height: 700px) {
  .after .ly_head {
    /* grid-template-rows: auto; */
    display: block;
  }
  .after .head-hero {
    max-height: 70vh;
  }
  .after .title-mv {
  }
}

@media only screen and (max-width: 860px) {
  .after .ly_head {
    display: block;
  }
  .after .w-margin {
    width: 90%;
  }
}
.after .head-hero {
  position: relative;
}
.after .head-hero-txt {
  position: absolute;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .8);
  z-index: 10;
  animation: fadein_txt 0.5s ease-out forwards;
}
.after .head-hero-txt h1 {
  opacity: 0;
  animation: fadein_txt 0.5s ease-out 1.0s forwards;
}
.after .head-hero-txt + svg {
  animation: blur_bg 1.5s ease-out forwards;
}
@keyframes fadein_txt {
  from {    opacity: 0;  }
  to {    opacity: 1;  }
}
@keyframes blur_bg {
  from {    filter: blur(0);  }
  to {    filter: blur(2px);  }
}

.after .talk-wrap {
  display: flex;
  flex-direction: row;
  max-width: min(70%, 1280px);
  margin-inline: auto;
  /* margin-top: -2rem; */
}
.after .talk-wrap__right {
  flex-direction: row-reverse;
  justify-content: end;
}

.after .talk-text {
  flex: auto;
  padding: 1em 1em 1em 2em;
  margin-left: 28%;
  margin-right: 2%;
}
.after .talk-wrap__right .talk-text {
  flex: auto;
  margin-left: 2%;
  margin-right: 28%;
}

.after #after .talk-wrap {
  max-width: min(60%, 1280px);
  margin-bottom: 0.5rem;
}
.after #after .talk-wrap:nth-of-type(7) {
  margin-bottom: var(--space-m);
}
.after #after .talk-text {
  padding: 1em 2em;
  margin-left: 38%;
  margin-right: auto;
  text-align: center;
}
.after #after .talk-wrap__right .talk-text {
  margin-right: 38%;
  margin-left: auto;
}

.after .talk-text {
  /* box-shadow: 5px 5px 10px #dfdfdf; */
  box-shadow: 5px 5px 10px #aaa;
  /* background: var(--white-color); */
  background: linear-gradient(to top, var(--white-color), #B8E8FF);
  border: 5px solid #fff;
  font-size: var(--talk-size);
  margin-bottom: 0;
}

.after .talk-text:before,
.after .talk-wrap__right .talk-text:before {
  content: "";
  display: inline-block;
  border: 20px solid transparent;
  border-top-color: #fff;
  position: absolute;
  top: auto;
  left: auto;
  right: 15%;
  bottom: -39px;
  margin-top: 0;
  margin-left: -20px;
}
.after .talk-wrap__right .talk-text:before {
  left: 18%;
  right: auto;
}

@media only screen and (max-width: 768px) {
  .after .talk-wrap,
  .after .talk-wrap__right {
    flex-direction: column-reverse;
    max-width: initial;
  }
  .after .talk-text {
    padding: 1.2em 1em 1.2em 1.5em;
  }
  .after .talk-text p {
    font-size: 16px;
  }
  .after .talk-wrap__right .talk-text:before {
    left: 22%;
  }

  .after #after .talk-wrap {
    max-width: min(70%, 1280px);
  }
  .after #after .talk-text {
    margin-inline: 0;
    align-self: flex-end;
  }
  .after #after .talk-wrap__right .talk-text {
    margin-inline: 0;
    align-self: flex-start;
  }
}

@media only screen and (max-width: 540px) {
  .after #after .talk-wrap {
    max-width: 100%;
  }
}
.after-photo {
  display: grid;
  margin-block: 2rem;
}
.after-photo figure {
  margin: 0;
}
.after img {
  max-width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.after-photo-part1 {
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: 
    "a01 a01 a02 a02"
    "a03 a04 a04 a05"
    "a06 a06 a07 a08";
}
.part1-01 {grid-area: a01;}
.part1-02 {grid-area: a02;}
.part1-03 {grid-area: a03;}
.part1-04 {grid-area: a04;}
.part1-05 {grid-area: a05;}
.part1-06 {grid-area: a06;}
.part1-07 {grid-area: a07;}
.part1-08 {grid-area: a08;}

.after-photo-part2 {
  grid-template-columns: repeat(8, 1fr);
  grid-template-areas: 
    "b01 b01 b01 b01 b02 b02 b02 b02"
    "b03 b03 b04 b04 b04 b05 b05 b05";
}
.part2-01 {grid-area: b01;}
.part2-02 {grid-area: b02;}
.part2-03 {grid-area: b03;}
.part2-04 {grid-area: b04;}
.part2-05 {grid-area: b05;}

.after-photo-part3 {
  grid-template-columns: repeat(8, 1fr);
  grid-template-areas: 
    "c01 c01 c01 c02 c02 c02 c03 c03"
    "c04 c04 c04 c04 c05 c05 c06 c06";
}
.part3-01 {grid-area: c01;}
.part3-02 {grid-area: c02;}
.part3-03 {grid-area: c03;}
.part3-04 {grid-area: c04;}
.part3-05 {grid-area: c05;}
.part3-06 {grid-area: c06;}

.after-photo-part4 {
  grid-template-columns: repeat(8, 1fr);
  grid-template-areas: 
    "d01 d01 d01 d01 d02 d02 d02 d02"
    "d03 d03 d03 d04 d04 d04 d05 d05";
}
.part4-01 {grid-area: d01;}
.part4-02 {grid-area: d02;}
.part4-03 {grid-area: d03;}
.part4-04 {grid-area: d04;}
.part4-05 {grid-area: d05;}

.photoframe {
  display: block;
  border: 10px solid #fff;
  box-shadow: 3px 3px 8px #aaa;
}
.after-voice {
  font-size: var(--annotation-size);
  margin-left: -0.5em;
}
</pre></body></html>