@charset 'utf-8';
/*
style.css
*/

/*----------------
font-family
----------------*/
@font-face { 
  font-family: "Helvetica-bold";
  src: url("https://www.tokyonode.jp/sp/openlab2023/font/Helvetica-Bold-02.ttf") format("truetype")
}
.Helvetica-bold {
  font-family: "Helvetica-bold";
}
@font-face { 
  font-family: "Helvetica-light";
  src: url("https://www.tokyonode.jp/sp/openlab2023/font/Helvetica-Light-05.ttf") format("truetype")
}
.Helvetica-light {
  font-family: "Helvetica-light";
}

/*----------------
common
----------------*/
* {
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  background: #fff;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}
a {
  color: #000;
  text-decoration: none;
  transition: .3s;
  vertical-align: middle;
}
p,h1,h2,h3,h4 {
  margin: 0;
}
p {
  line-height: 1.8;
}
img {
  border-style: none;
  width: 100%;
}
ul,li {
  list-style: none;
  margin: 0;
  padding: 0;
}
div.inner {
  margin: 0 auto;
  max-width: 1700px;
  padding-right: 30px;
  padding-left: 30px;
}
.sp {
  display: none;
}
.pc {
  display: inline;
}
@media screen and (max-width: 1024px) {
  div.inner {
    padding-right: 15px;
    padding-left: 15px;
  }
  .sp {
    display: inline;
  }
  .pc {
    display: none;
  }
}

/*----------------
header
----------------*/
header {
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  height: 150px;
  z-index: 99;
}
header .inner {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
  height: 100px;
}
header h1 {
  position: relative;
  z-index: 2;
}
header h1 a {
  display: flex;
  align-items: center;
  height: 100px;
}
header h1 a img {
  width: 400px;
}
header .header-nav {
  position: absolute;
  right: 0;
  left: 0;
}
header .header-nav ul {
  display: flex;
  justify-content: center;
}
header .header-nav ul li {
  margin: 0 30px;
  font-family: "Helvetica-bold";
  font-size: 1.4vw;
  font-weight: 900;
}
header .header-hamburgernav,
header .header-hamburger {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  header {
    background: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
  }
  header .inner {
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
    height: 60px;
  }
  header h1 a {
    display: flex;
    align-items: center;
    height: 60px;
  }
  header h1 a img {
    width: 240px;
  }
  header .header-nav {
    display: none;
  }
  header .header-hamburger {
    background: none;
    border: none;
    display: block !important;
    position: absolute;
    right: 0;
    top: 30px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 9999;
  }
  header .header-hamburger span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 20px;
    height: 2px;
    background: #000;
    width: 20px;
  }
  header .header-hamburger span:nth-child(1) {
    top: 23px;
  }
  header .header-hamburger span:nth-child(2) {
    top: 29px;
  }
  header .header-hamburger span:nth-child(3) {
    top: 35px;
  }
  header .header-hamburger.active {
    background: none;
    position: fixed;
    top: 0;
    right: 0;
  }
  header .header-hamburger.active span:nth-of-type(1) {
    top: 23px;
    left: 25px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  header .header-hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .header-hamburger.active span:nth-of-type(3){
    top: 35px;
    left: 25px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  header .header-hamburgernav {
    background: rgba(255, 255, 255, 1);
    display: block !important;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh !important;
    transform: translateX(100%);
    transition: ease .4s;
    z-index: 9999;
  }
  header .header-hamburgernav > div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow-y: scroll;
  }
  header .header-hamburgernav ul li {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
  }
  header .header-hamburgernav ul li:last-child {
    margin-bottom: 0;
  }
  header .header-hamburgernav ul li a {
    color: #000;
    font-size: 18px;
    line-height: 1.4;
  }
  header .header-hamburgernav ul li a span {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
  }
  header .header-hamburgernav.active {
    transform: translateX(0);
    height: 100vh;
    width: 100%;
  }
}

/*----------------
footer
----------------*/
footer {
  border-top: 1px solid #000;
  padding-top: 100px;
}
footer .inner {
  margin-bottom: 100px;
}
footer .logo {
  width: 400px;
  margin: 0 auto;
}
footer .sns a {
  display: inline-block;
  margin-right: 20px;
}
footer .sns a:last-child {
  margin-right: 0;
}
footer .sns a i {
  font-size: 2.6rem;
}
@media screen and (max-width: 1024px) {
  footer {
    padding-top: 50px;
  }
  footer .inner {
    margin-bottom: 50px;
  }
  footer .logo {
    width: 200px;
  }
  footer .sns a {
    margin-right: 10px;
  }
  footer .sns a i {
    font-size: 1.2rem;
  }
}

/*----------------
top
----------------*/
.kv-catch {
  padding-right: 30px;
  padding-left: 30px;
}
.kv-catch p {
  line-height: 1;
}
.kv-catch p:nth-child(1) {
  font-size: 5rem;
  margin-bottom: 15px;
}
.kv-catch p:nth-child(2) {
  font-size: 2.8rem;
}
.about {
  border-top: 1px solid #000;
/*  border-bottom: 1px solid #000;*/
  display: flex;
  align-items: center;
  margin: 100px 0 0;
}
.about-img {
  width: 35%;
  margin-right: 5%;
}
.about-contents {
  max-width: 950px;
  padding-right: 15px;
}
.about .heading {
  margin-bottom: 30px;
}
.about .heading p {
  font-size: 2.6rem;
}
.about .heading h2 {
  font-size: 7.4rem;
  line-height: 1;
}
.about .catch {
  margin-bottom: 80px;
}
.about .contents {
  margin-bottom: 80px;
}
.about .contents p {
  font-size: 1.4vw;
}
.about .date p:nth-child(1) {
  font-size: 4.4rem;
  line-height: 1;
  margin-bottom: 10px;
}
.about .date p:nth-child(2) {
  font-size: 2rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 1500px) {
  .about-img {
    width: 40%;
    margin-right: 5%;
  }
  .about-contents {
    max-width: 55%;
    padding-right: 15px;
  }
  .about .heading p {
    font-size: 2rem;
  }
  .about .heading h2 {
    font-size: 4.8rem;
  }
  .about .date p:nth-child(1) {
    font-size: 3.4rem;
  }
  .about .date p:nth-child(2) {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .kv-img {
    margin-bottom: 15px;
  }
  .kv-catch p:nth-child(1) {
    font-size: 1.65rem;
    margin-bottom: 5px;
  }
  .kv-catch p:nth-child(2) {
    font-size: 1.2rem;
  }
  .about {
    display: block;
    align-items: center;
    margin: 30px 0 0;
    padding-bottom: 30px;
  }
  .about-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .about .about-contents {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .about .heading p {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  .about .heading h2 {
    font-size: 2.6rem;
  }
  .about .catch {
    margin-bottom: 30px;
  }
  .about .contents {
    margin-bottom: 30px;
  }
  .about .contents p {
    font-size: 14px;
  }
  .about .date p:nth-child(1) {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 10px;
  }
  .about .date p:nth-child(2) {
    font-size: 14px;
  }
}

.timetable {
  border-top: 1px solid #000;
}
.timetable .heading {
  text-align: center;
  padding-top: 50px;
  margin-bottom: 30px;
}
.timetable .heading h2 {
  font-size: 4rem;
}
.timetable .heading p {
  font-size: 1.6rem;
  font-weight: 700;
}
.timetable .contents {
  padding-bottom: 100px;
}
.timetable #day2-am.contents {
  border-top: 1px solid #000;
}
.timetable .contents h3 {
  font-size: 18rem;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 5vw;
  line-height: 1;
}
.timetable .contents h3 span.date {
  display: block;
  font-size: 4rem;
}
.timetable .contents .img {
  margin-bottom: 80px;
}
.timetable .contents .link {
  max-width: 1700px;
  margin: 0 auto;
}
.timetable .contents .link .program {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.4;
}
.timetable .contents .link .caution {
  font-size: 1.2rem;
  margin-top: 15px;
  text-align: center;
}
.timetable .contents .link1 {
  text-align: left;
  padding-top: 15px;
  padding-right: 30px;
  padding-bottom: 100px;
  padding-left: 30px;
}
.timetable .contents .link2 {
  text-align: center;
}
.timetable .contents .link1 a,
.timetable .contents .link2 a {
  display: inline-block;
}
.timetable .contents .link1 a {
  border-bottom: 1px solid #000;
  font-size: 1.6rem;
  font-family: "Helvetica-bold";
  padding: 0 10px 5px;
}
.timetable .contents .link1 a.archive-link {
  margin-left: 15px;
}
.timetable .contents .link2 a {
  font-size: 1.6rem;
  border: 3px solid #000;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  padding: 15px 50px;
}
.timetable .contents .link2 a:hover {
  background: #000;
  color: #fff;
}
.timetable .contents .link2 a:nth-child(2) {
  margin-left: 50px;
}
.timetable .day1.contents .link2 .link2-am,
.subpage #day1-am .link2 .link2-am {
  background: #a31314;
  border-color: #a31314;
  color: #fff;
}
.timetable .day1.contents .link2 .link2-am:hover,
.subpage #day1-am .link2 .link2-am:hover {
  background: #fff;
  color: #a31314;
}
.timetable .day1.contents .link2 .link2-pm,
.subpage #day1-pm .link2 .link2-pm {
  background: #0631f2;
  border-color: #0631f2;
  color: #fff;
}
.timetable .day1.contents .link2 .link2-pm:hover,
.subpage #day1-pm .link2 .link2-pm:hover {
  background: #fff;
  color: #0631f2;
}
.timetable .day2.contents .link2 .link2-am,
.subpage #day2-am .link2 .link2-am {
  background: #f6d611;
  border-color: #f6d611;
  color: #fff;
}
.timetable .day2.contents .link2 .link2-am:hover,
.subpage #day2-am .link2 .link2-am:hover {
  background: #fff;
  color: #f6d611;
}
.timetable .day2.contents .link2 .link2-pm,
.subpage #day2-pm .link2 .link2-pm {
  background: #8b7220;
  border-color: #8b7220;
  color: #fff;
}
.timetable .day2.contents .link2 .link2-pm:hover,
.subpage #day2-pm .link2 .link2-pm:hover {
  background: #fff;
  color: #8b7220;
}
@media screen and (max-width: 1024px) {
  .timetable .heading {
    padding-top: 30px;
    margin-bottom: 15px;
  }
  .timetable .heading h2 {
    font-size: 1.4rem;
  }
  .timetable .heading p {
    font-size: 2vw;
  }
  .timetable .contents {
    padding-bottom: 30px;
  }
  .timetable .contents h3 {
    font-size: 5rem;
    padding-top: 30px;
    margin-bottom: 5vw;
  }
  .timetable .contents h3 span.date {
    font-size: 1.6rem;
  }
  .timetable .contents .img {
    margin-bottom: 30px;
  }
  .timetable .contents .link .program {
    font-size: 2.6rem;
  }
  .timetable .contents .link .caution {
    font-size: .8rem;
    padding-right: 15px;
    padding-left: 15px;
  }
  .timetable .contents .link1 {
    padding-top: 0;
    padding-right: 15px;
    padding-bottom: 30px;
    padding-left: 15px;
  }
  .timetable .contents .link1 a {
    font-size: 1rem;
  }
  .timetable .contents .link2 a {
    font-size: .8rem;
    padding: 10px 50px;
    width: 80%;
    margin: 0 auto;
  }
  .timetable .contents .link2 a:nth-child(2) {
    margin-top: 10px;
    margin-left: 0;
  }
}

.access {
  margin-bottom: 100px;
}
.access .heading {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  text-align: center;
  margin-bottom: 0;
  padding: 80px 0;
}
.access .heading h2 {
  font-size: 4.2rem;
}
.access .col-2 {
  display: flex;
}
.access .col-2_inner {
  border-bottom: 1px solid #000;
  width: 50%;
}
.access .col-2_inner:first-child {
  border-right: 1px solid #000;
}
.access .col-2_inner h3 {
  border-bottom: 1px solid #000;
  font-size: 3rem;
  padding: 30px 0;
  text-align: center;
}
.access .col-2_inner .contents {
  margin: 30px auto;
  max-width: 42vw;
  width: 100%;
}
.access .col-2_inner .contents p {
  font-size: 1.4rem;
  margin-top: 15px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .access {
    margin-bottom: 50px;
  }
  .access .heading {
    padding: 30px 0;
  }
  .access .heading h2 {
    font-size: 5.6vw;
  }
  .access .col-2 {
    display: block;
  }
  .access .col-2_inner {
    width: 100%;
  }
  .access .col-2_inner:first-child {
    border-right: none;
  }
  .access .col-2_inner h3 {
    font-size: 4.6vw;
    padding: 15px 0;
  }
  .access .col-2_inner .contents {
    max-width: 100%;
    margin: auto;
    padding: 15px 15px;
  }
  .access .col-2_inner .contents p {
    font-size: 3.4vw;
    margin-top: 5px;
  }
}

.info {
  margin-bottom: 100px;
}
.info .heading {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  text-align: center;
  margin-bottom: 100px;
  padding: 80px 0;
}
.info .heading h2 {
  font-size: 4.2rem;
}
.info .outline {
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
}
.info .outline table {
  width: 100%;
}
.info .outline table th,
.info .outline table td {
  display: block;
  font-size: 1.4vw;
  text-align: center;
}
.info .outline table th {
  background: #000;
  color: #fff;
  padding: 10px 10px;
}
.info .outline table td {
  line-height: 2;
  padding: 20px 0;
}
.info .outline table td a {
  border-bottom: 1px solid #000;
  display: inline-block;
  padding-bottom: 2px;
}
.info .outline .caution {
  border: 1px solid #000;
  margin-top: 30px;
  padding: 20px;
}
.info .outline .caution p {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 1.2em;
  margin-bottom: 10px;
  padding: 5px 10px;
}
.info .outline .caution ul li {
  list-style: disc;
  line-height: 1.8;
  margin-left: 1.5em;
}
@media screen and (max-width: 1024px) {
  .info {
    margin-bottom: 30px;
  }
  .info .heading {
    margin-bottom: 30px;
    padding: 30px 0;
  }
  .info .heading h2 {
    font-size: 5.6vw;
  }
  .info .outline table th,
  .info .outline table td {
    font-size: .8rem;
  }
  .info .outline table td {
    padding: 10px 0;
  }
  .info .outline .caution p {
    font-size: 1rem;
  }
  .info .outline .caution ul li {
    font-size: .8rem;
  }
}

/*----------------
subpage
----------------*/
.subpage .timetable {
  border-top: 1px solid #000;
  margin: 100px 0 0;
  padding: 0 0 50px;
}
.subpage .timetable .heading {
  border-top: none;
  padding-top: 30px;
  margin-bottom: 0;
}
.subpage .timetable .contents h3 {
  font-size: 6rem;
  padding-top: 30px;
  line-height: 1.2;
}
.subpage .timetable .contents h3 span {
  font-size: 55%;
  display: block;
}
.subpage .contents-list {
  margin-bottom: 100px;
  margin-left: 30px;
}
.subpage #day1-pm {
  padding-top: 60px;
}
.subpage #day1-am .contents-list {
  border-left: 8px solid #a31314;
}
.subpage #day1-pm .contents-list {
  border-left: 8px solid #0631f2;
}
.subpage #day2-am .contents-list {
  border-left: 8px solid #f6d611;
}
.subpage #day2-pm .contents-list {
  border-left: 8px solid #8b7220;
  margin-top: 50px;
}
.subpage .contents-list_block {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}
.subpage .contents-list_block:last-child {
  margin-bottom: 0;
}
.subpage .contents-list_block .thumbnail {
  width: 35%;
  margin-right: 3vw;
}
.subpage .contents-list_block .textarea {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 60%;
}
.subpage .contents-list_block .textarea .textarea-time,
.subpage .contents-list_block .textarea .textarea-heading,
.subpage .contents-list_block .textarea .textarea-contents {
  padding: 20px 30px;
}
.subpage .contents-list_block .textarea .textarea-time,
.subpage .contents-list_block .textarea .textarea-heading {
  position: relative;
}
.subpage .contents-list_block .textarea .textarea-time::after,
.subpage .contents-list_block .textarea .textarea-heading::after {
  background: #000;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.subpage .contents-list_block .textarea .textarea-time p {
  font-size: 3rem;
  line-height: 1.2;
}
.subpage .contents-list_block .textarea .textarea-heading h3 {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 10px;
  padding-top: 0;
  text-align: left;
}
.subpage .contents-list_block .textarea .textarea-heading p {
  font-size: 1.2rem;
}
.subpage .contents-list_block .textarea .textarea-contents .comment {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.subpage .contents-list_block .textarea .textarea-contents .link1 {
  padding: 0;
}
.subpage .timetable-mc {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  padding: 0 30px;
}
.subpage .timetable-mc_name {
  font-size: 2rem;
  font-weight: 700;
  margin-left: 50px;
  text-align: center;
}
.subpage .timetable-mc .timetable-mc_img {
  width: 250px;
}
@media screen and (max-width: 1024px) {
  .subpage .kv {
    padding: 0 0 0;
  }
  .subpage .timetable {
    margin: 30px 0 0;
  }
  .subpage .timetable .heading {
    padding-top: 20px;
  }
  .subpage .timetable .contents h3 {
    font-size: 2.2rem;
    margin-bottom: 2vw;
  }
  .subpage .contents-list {
    margin-bottom: 30px;
    margin-left: 15px;
  }
  .subpage #day2-pm .contents-list {
    margin-top: 30px;
  }
  .subpage .contents-list_block {
    display: block;
    padding: 0 15px;
  }
  .subpage .contents-list_block .thumbnail {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    padding-left: 0;
  }
  .subpage .contents-list_block .textarea {
    width: 100%;
  }
  .subpage .contents-list_block .textarea .textarea-time,
  .subpage .contents-list_block .textarea .textarea-heading,
  .subpage .contents-list_block .textarea .textarea-contents {
    padding: 10px 15px;
  }
  .subpage .contents-list_block .textarea .textarea-time p {
    font-size: 1.6rem;
  }
  .subpage .contents-list_block .textarea .textarea-heading h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
  .subpage .contents-list_block .textarea .textarea-heading p {
    font-size: 1rem;
  }
  .subpage .contents-list_block .textarea .textarea-contents .comment {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .subpage .timetable-mc {
    display: block;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .subpage .timetable-mc_name {
    font-size: 1.2rem;
    margin-top: 15px;
    margin-left: 0;
  }
  .subpage .timetable-mc .timetable-mc_img {
    width: 60%;
    margin: 0 auto;
  }
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.modal-bg {
  background: #000;
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal-content {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  z-index: 50;
}
.modal-content_inner {
  margin: 50px 0;
  padding: 0 30px;
}
.modal-title {
  text-align: center;
  margin-bottom: 30px;
}
.modal-title p {
  font-size: 3.6rem;
  line-height: 1;
  text-align: center;
}
.modal-title p > span {
  font-size: 60%;
  display: block;
  margin-top: 5px;
}
.modal-title h2 {
  font-size: 2.6rem;
  line-height: 1.4;
  padding: 30px 0;
  text-align: center;
}
.modal-title h3 {
  font-size: 4rem;
  margin-bottom: 30px;
  text-align: center;
}
.modal-mc_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 1370px;
}
.modal-mc_flex img {
  width: 30%;
}
.modal-mc {
  font-size: 2rem;
  text-align: center;
}
.modal-mc_flex .modal-mc {
  margin-top: 0;
  margin-left: 30px;
}
.modal-mc span {
  display: block;
}
.modal-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 20px;
}
.modal-col.col-1 {
  justify-content: center;
}
.modal-col.col-2 {
  max-width: 900px;
}
.modal-col.col-3 {
  max-width: 1370px;
}
.modal-col.col-3::after {
  content: "";
  display: block;
  width: 430px;
  height: 0;
}
.modal-col .modal-col_inner {
  max-width: 430px;
  margin-bottom: 30px;
}
.modal-content_img {
  width: 30%;
}
.modal-content_text {
  width: 70%;
}
.modal-content_text h3 {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 30px;
}
.modal-content_text h3 span {
  font-size: 16px;
}
.modal-content_text a {
  text-decoration: underline;
}
.modal-content_inner__flex {
  display: flex;
  align-items: flex-end;
}
.js-modal-close {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
}
.js-modal-close::before,
.js-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #fff;
}
.js-modal-close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.js-modal-close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.modal-col_inner > p {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 15px 0;
}
.modal-col_inner .person {
  text-align: center;
  margin: 15px 0;
}
.modal-col_inner .person p {
  line-height: 1;
}
.modal-col_inner .person .person-name {
  font-size: 2rem;
  margin-bottom: 15px;
}
.modal-col_inner .person .person-affiliation {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .modal-mc_flex {
    display: block;
    padding: 0;
  }
  .modal-mc_flex img {
    width: 100%;
  }
  .modal-mc {
    font-size: 1.4rem;
    text-align: center;
  }
  .modal-mc_flex .modal-mc {
    margin-top: 15px;
    margin-left: 0;
  }
  .modal-col {
    display: block;
    margin-bottom: 30px;
    padding: 0;
  }
  .modal-col .modal-col_inner {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
  }
  .modal-content_inner {
    margin: 25px auto 50px;
    padding: 0 15px;
  }
  .modal-title p {
    font-size: 2rem;
    line-height: 1;
  }
  .modal-title h2 {
    font-size: 1.2rem;
    padding: 20px 0;
  }
  .modal-title h3 {
    font-size: 2rem;
  }
  .js-modal-close {
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
  .js-modal-close::before,
  .js-modal-close::after {
    height: 50px;
  }
  .modal-col_inner .person .person-name {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .modal-col_inner .person .person-affiliation {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/*----------------
archive
----------------*/
.archive.subpage .timetable {
  padding-bottom: 0;
}
.archive.subpage header {
  height: 100px;
}
.archive.subpage .contents {
  padding-bottom: 70px;
}
.archive.subpage .contents-list {
  border-left: none !important;
  margin: 0;
  padding: 0 30px;
}
.archive .contents-list .c-col-3_inner {
  margin-bottom: 50px;
}
.archive .contents-list .c-col-3_inner img {
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}
.archive-title {
  font-size: 20px;
  font-weight: 700;
}
.archive-anchor {
  background: #a31314;
}
.archive-anchor_inner {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 30px;
}
.archive-anchor a {
  color: #fff;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
}
@media screen and (max-width: 1024px) {
  .archive.subpage header {
    height: 60px;
  }
  header .header-hamburger {
    top: 0;
  }
  .archive.subpage .contents-list {
    padding: 0 15px;
  }
  .archive .contents-list .c-col-3_inner {
    margin-bottom: 30px;
  }
  .archive-title {
    font-size: 14px;
  }
  .archive-anchor_inner {
    margin: 0;
    padding: 0 15px;
  }
  .archive-anchor a {
    font-size: 12px;
    height: 30px;
    line-height: 30px;
  }
}