@charset "UTF-8";
/*---------- common ----------*/
#seminar h2 {
  padding: 0 0 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  line-height: 1.2;
  color: #000;  
}
#seminar h2 span {
  display: block;
  line-height: 1.6;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
}

/*---------- .theme ----------*/
#seminar .theme {
  padding:0 1.5rem 5rem;
}
.theme h2{
  text-align: left;
}

.theme li figure {
  text-align: center;
}
.theme li h3 {
  font-size: 2rem;
  text-align: center;
  margin: 2rem auto;
}
.theme li h3 span {
  display: block;
  width: 6em;
  font-family: Roboto, 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  color: var(--red);
  line-height: 1.2;
  border: 0.1rem var(--red) solid;
  margin: 0 auto 0.5rem;
  padding: 0.1rem 0 0;
}
.theme li .theme-txt {
  line-height: 2;
  font-family: Roboto, 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  padding-bottom: 5rem;
}


/*---------- .profile ----------*/
#seminar .profile {
  font-family: Roboto, 'Noto Sans JP', sans-serif;
  padding:0 1.5rem 5rem;
}
.profile-wrap figure{
  width: auto;
  overflow: hidden;  
  height: 20rem;
  margin: 0;
  padding: 0.5rem 0 0;
  border: 1px solid #ccc;
}
.profile-wrap figure span{
  display: block;
  width: 20rem;
  margin: 0 auto;
}

/* 詳細 SP ---------------------- */
.profile-detail {
  font-size: 1.4rem;
}
.profile-detail h3 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 3rem auto 2rem;
}
.profile-detail h3 span {
  display: block;
  font-size: 1.4rem;
  color: var(--red);
}
.profile-detail .status,
.profile-detail .profile-txt{
  margin: 2rem auto;
}
.profile-detail .character {
  padding-bottom: 2rem;
}
.profile-detail .character dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 1.5;
}
.profile-detail .character dt {
  width: 6em;
  color: var(--red);
  border-bottom: 0.1rem var(--red) dashed;
  margin-bottom: 1rem;
}
.profile-detail .character dd {
  width: calc(100% - 7em);
  margin-bottom: 1rem;
}

/* メディア SP ---------------------- */
.profile-detail .media {
  padding: 2rem 0;
}
.profile-detail .media h4 {
  font-family: 'Noto Serif', serif;
  font-size: 1.6rem;
  padding-bottom: 1rem;
}
.profile-detail .media dt span {
  color: var(--red);
  padding: 0 0.5rem 0.5rem 3rem;
  border-bottom: 0.1rem var(--red) dashed;
  margin-bottom: 1rem;
  background: url(../seminar/img/icon-tv.svg) no-repeat left top;
  background-size: 2rem;
}
.profile-detail .media dt span.tv {
  background: url(../seminar/img/icon-tv.svg) no-repeat left top;
  background-size: 2rem;
}
.profile-detail .media dt span.news {
  background: url(../seminar/img/icon-news.svg) no-repeat left top;
  background-size: 2rem;
}
.profile-detail .media dd dl {
  display: flex;
  flex-wrap: wrap;
  margin: 1rem 0 2rem;
}
.profile-detail .media dd dt {
  width: 6.5em;
}
.profile-detail .media dd dd {
  width: calc(100% - 6.5em);
}
.profile-detail .media dl.newspaper dd {
  margin: 1rem 0 2rem;
}

/* ボタン SP ---------------------- */
.profile-detail .btn a {
  display: block;
  font-size: 1.5rem;
  text-align: center;
  padding: 2rem 0;
  color: #fff;
  background: var(--red);
}
.profile-detail .btn a span {
  position: relative;
}
.profile-detail .btn a span::before {
  content: "";
  display: block;
  width: 1rem;
  height: 0.1rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: -1em;
  transform: translateY(-50%);
}
.profile-detail .btn a span::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-top: 0.1rem #fff solid;
  border-right: 0.1rem #fff solid;
  position: absolute;
  top: 50%;
  right: -1em;
  transform: translateY(-50%) rotate(45deg);
}
.profile-detail .btn a span::after {
  border-top: 0.1rem #fff solid;
  border-right: 0.1rem #fff solid;
}


/*---------- .lecture ----------*/
#seminar .lecture {
  background: #f8f8f8;
  padding: 5rem 1.5rem;
}
.lecture h2{
  text-align: left;
}
.lecture-box .tab-area {
  display: flex;
  cursor: pointer;/* カーソルポインターに */
  margin-bottom: 3rem;
}
.lecture-box .tab {
  padding: 0 2rem;
  text-align: center;
  line-height: 1;
}
.lecture-box .tab:first-child {
  border-right: 0.1rem #ccc solid;
  padding-left: 0;
}
.lecture-box .tab span {
  position: relative;
}
.lecture-box .tab span::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  background: var(--red);
  position: absolute;
  top: 120%;
  left: 0;
  opacity: 0;
  transition: .5s;
}
.lecture-box .tab.active span::after {
  opacity: 1;
}
.lecture-box .panel {
  display: none;
}
.lecture-box .panel.active {
  display: block;
}

.lecture-box .panel {
  background: #fff;
  padding: 3rem 1.5rem;
  border-radius: 0.5rem;
}
.lecture-box .panel h3 {
  font-family: 'Noto Serif', serif;
  font-size: 2.1rem;
  text-align: center;
  line-height: 1.2;
}
.lecture-box .panel h3 span {
  display: block;
  font-size: 1.4rem;
}

.lec-theme-box {
  font-family: Roboto, 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  padding: 3rem 0;
}

.lec-theme-box h4{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  color: var(--red);
}
.lec-theme-box h4 span{
  width: auto;
}
.lec-theme-box h4 span:first-child{
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1.5;
  text-align: center;
  border: 1px solid var(--red);
  font-size: 1.4rem;
}
.lec-theme-box h4 span:last-child{
  padding: 0;
  text-align: center;
  line-height: 1.8;
  font-family: 'Noto Serif', serif;
  font-weight: bold;
  font-size: 1.6rem;
}
.lec-theme-box h4 span:last-child span{
  display: block;
  border: 0;
  padding: 0 1rem;  
}

.lec-theme-box dl {
  border-top: 0.1rem #ebebeb solid;
  margin-top: 2rem;
}
.lec-theme-box dt {
  background: #f8f8f8;
  border-bottom: 0.1rem #ebebeb solid;
  padding: 1rem;
}
.lec-theme-box dd {
  border-bottom: 0.1rem #ebebeb solid;
  padding: 1rem;
}
.lec-theme-box dd span {
  display: block;
  font-size: 1.3rem;
}
.lec-theme-box .same-time {
  margin-top: 1em;
}


/*----------------------------------------------------
タブレット・PC用 750px以上
----------------------------------------------------*/
@media only screen and (min-width: 750px) {

  /*---------- .theme 750 ----------*/
  #seminar .theme {
    padding:0 5rem 5rem;
  }
  /*---------- .profile 750 ----------*/
  #seminar .profile {
    padding:0 5rem 5rem;
  }
  /*---------- .lecture 750 ----------*/
  #seminar .lecture {
    padding:5rem;
  }

}


/*----------------------------------------------------
タブレット・PC用 1000px以上
----------------------------------------------------*/

@media only screen and (min-width: 1000px) {

  /*---------- .theme 1000 ----------*/
  .theme h2{
    text-align: center;
  }
  .theme ul {
    display: flex;
    justify-content: space-between;
  }
  .theme li {
    width: 47%;
    padding: 0;
  }
  .theme li h3 {
    font-size: 2.1rem;
    text-align: left;
    line-height: 1;
    vertical-align: bottom;
    margin: 2.5rem auto 1.5rem;
  }
  .theme li h3 span {
    display: inline-block;
    text-align: center;
    line-height: 1.3;
    padding: 0.4rem 0.5rem 0.3rem;
    margin: 0 1.5rem 0 0;
    vertical-align: top;
  }
  .theme li .theme-txt {
    padding-bottom: 0rem;
  }


  /*---------- .profile 1000 ----------*/

  #seminar .profile {
    padding: 0 5rem 10rem;
  }
  #seminar .profile h2 {
    text-align: left;
  }

  .profile-wrap {
    display: flex;
  }
  .profile-wrap figure{
    width: 30%;  
    margin: 0 5% 0 0;
  }
  .profile-wrap .profile-detail {
    width: 65%;
  }
  .profile-detail h3 {
    font-size: 2.8rem;
    margin-top: 0;
  }
  .profile-detail .btn a {
    font-size: 1.8rem;
    padding: 1.5rem;
  }
  .profile-detail .btn a span::before,
  .profile-detail .btn a span::after {
    right: -2em;
  }



  /*---------- .lecture 1000----------*/
  .lecture h2{
    text-align: center;
  }

  .lecture-box .tab-area {
    justify-content: center;
  }
  .lecture-box .tab:first-child {
    padding-left: 2rem;
  }

  .lecture .lecture-box .panel.active {
    display: flex;
    padding: 5rem;
  }
  .lecture .lecture-box .panel h3 {
    width: 20%;
    font-size: 4.8rem;
    text-align: left;
  }
  .lec-theme {
    width: 80%;
  }
  .lec-theme-box {
    font-size: 1.6rem;
    padding: 0.5rem 0 7rem;
  }
  .lec-theme-box:last-child {
    padding-bottom: 0;
  }

  .lec-theme-box h4{
    flex-direction: row;
    align-items: center;
  }
  .lec-theme-box h4 span:first-child{
    width: 20%;
    margin:0 2rem 0 0;
    padding: 2rem 0;
    font-size: 1.4rem;
  }
  .lec-theme-box h4 span:last-child{
    width: 80%;
    padding: 0.8rem 0 0;
    line-height: 1.5;
    text-align: left;
    font-size: 1.8rem;
  }
  .lec-theme-box h4 span:last-child span{
    display: block;
    padding: 0;
  }

  .lec-theme-box dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
  }
  .lec-theme-box dt {
    width: 20%;
    background: transparent;
    border-right: 0.1rem #ebebeb solid;
    padding: 1.5rem 3rem;
  }
  .lec-theme-box dd {
    width: 80%;
    padding: 1.5rem 5rem;
  }
  .lec-theme-box dd span {
    font-size: 1.4rem;
  }

}



/*----------------------------------------------------
PC用 1400px以上
----------------------------------------------------*/

@media only screen and (min-width: 1400px) {

  /*---------- common 1400 ----------*/
  #seminar h2 {
    padding: 0 0 5rem;
    font-size: 5rem;
    line-height: 1.4;
  }

  /*---------- .theme 1400 ----------*/
  #seminar .theme {
    padding:5rem 1.5rem;
  }
  .theme li h3 {
    font-size: 2.4rem;
  }

  /*---------- .profile 1400 ----------*/
  #seminar .profile {
    padding:10rem 1.5rem;
  }

  .profile-wrap figure{
    height: 42rem;  
  }
  .profile-wrap figure span{
    width: 35rem;
  }
  /*---------- .lecture 1400 ----------*/
  #seminar .lecture {
    padding:10rem 1.5rem;
  }

  .lecture .lecture-box .panel.active {
    padding: 10rem;
  }

  .lec-theme-box h4 span:first-child{
    width: 10%;
    margin:0 3rem 0 0;
  }
  .lec-theme-box h4 span:last-child{
    width: 90%;
    padding:0;
    font-size: 2.1rem;
  }
  .lec-theme-box h4 span:last-child span{
    display: inline;
    padding: 0 1rem;
  }


}

/*----------------------------------------------------
PC用 1400px以上
----------------------------------------------------*/

@media only screen and (min-width: 1600px) {

  /*---------- .theme 1400 ----------*/
  #seminar .theme {
    padding:8rem 0 10rem;
  }
  /*---------- .profile 1400 ----------*/
  #seminar .profile {
    padding:0 0 10rem;
  }
  /*---------- .lecture 14000 ----------*/
  #seminar .lecture {
    padding:10rem 0;
  }



}



