@charset "UTF-8";
/*
Theme Name: jkk20250520-2
Description: 日本医科大学准教授講師会様用のテンプレートです
Version: 0.9
Author: S.Yamamoto
*/

:root {
  --main-color: #1878c7;
  --sub-color: #5b7093;
}

/* Basic */
body {
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 62.5%;
  color: #333;
  line-height: 1.875;
}

body {
  font-size: 1rem;
}
@media screen and (max-width: 834px) {
  body {
    box-sizing: border-box;
    max-width: 100%;
  }
}

a {
  text-decoration: none;
  word-break: break-all;
}
a[target='_blank'] {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}
/* Basic End*/

.mb30{
  margin-bottom:30px;
}
.mb50{
  margin-bottom:50px;
}
.mb80{
  margin-bottom:80px;
}

/* Header */
.header {
  width: 100%;
  text-align: center;
  padding-top: 10px;
  position: relative;
  z-index: 2000;
}

.header h1 {
  margin-bottom: 15px;
  font-size: 2em;
  color: var(--sub-color);
  font-weight: 400;
}
@media screen and (max-width: 834px) {
  .header {
    box-sizing: border-box;
    max-width: 100%;
    overflow: visible;
    z-index: 2000;
  }
  .header h1 {
    font-size: 1.2em;
    text-align: left;
  }
}

.gnav {
  background: var(--main-color);
  color: #fff;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  max-width: 100%;
}
.gnav .gnav-list {
  margin: 0 auto;
  width: 80vw;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

/* 　ナビ下線https://hakenblog.com/css-hover-underline-animation/ */
.gnav .gnav-list li a {
  position: relative; /*アンダーラインの位置を決めるための基準 */
}

.gnav .gnav-list li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: -1px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}

.gnav .gnav-list li a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
.sp_title {
  display: none;
}

/* hero */
.hero {
  width: 100%;
  height: 60vh;
  background-image: url(./img/photo_sky01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
  z-index: -1;
}

.hero p {
  color: #fff;
  font-size: 2rem;
  line-height: 2;
  padding: 20px 0 15vh 20px;
  text-align: center;
}

@media screen and (max-width: 834px) {
  .hero {
    height: 45vh;
    z-index: -1;
  }
  .hero p {
    font-size: 2rem;
    line-height: 2.5;
    padding: 20px 0 8vh 20px;
    text-align: center;
    z-index: -1;
  }
}

@media screen and (max-width: 428px) {
  .hero {
    height: 40vh;
    z-index: -1;
  }

  .hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 20px 0 8vh 20px;
    text-align: center;
    z-index: -1;
  }
}

/* slider */
.slider div {
  padding-left: 20px;
}

/*
右から左へスライダー
https://yumegori.com/infinity-scroll-making-method
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*
IE11対策
----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.d-demo {
  display: -ms-grid;
  overflow: hidden;
}
/*----------------------------*/

.d-demo__wrap {
  display: flex;
  overflow: hidden;
}

.d-demo__list {
  display: flex;
  list-style: none;
}

.d-demo__list--left {
  animation: infinity-scroll-left 120s infinite linear 0.5s both;
}

.d-demo__item {
  width: calc(100vw / 5);
  margin-right: 3vw;
}

@media screen and (max-width: 834px) {
  .d-demo__item {
    width: calc(100vw / 4);
  }
}

.d-demo__item > img {
  width: 100%;
}
/* スライダーここまで */

/* main */
main {
  margin: 40px auto 80px;
  width: 1000px;
}
@media screen and (max-width: 834px) {
  main {
    margin: 40px auto 80px;
    padding: 10px;
    box-sizing: border-box;
    max-width: 100%;
  }
}
/* ページ見出し */
h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 200;
  line-height: 1.2;
}

h2 .sub_head {
  font-size: 1.3rem;
}
h2 .sub_break {
  display: none;
}
@media screen and (max-width: 834px) {
  h2 {
    margin-bottom: 3.5rem;
  }
  h2 .sub_break {
    display: inline;
  }
}

/* footer */
footer {
  margin: 0 auto;
  width: 100%;
  background-color: var(--main-color);
}
@media screen and (max-width: 834px) {
  footer {
    position: fixed;
    bottom: 0;
    z-index: 1000;
    height: 80px;
    box-sizing: border-box;
    max-width: 100%;
  }
}
@media screen and (max-width: 428px) {
  footer {
    height: 80px;
  }
}

.footer_container {
  margin: 0 auto;
  width: 1000px;
  text-align: center;
  padding: 20px;
}
.footer_container ul li {
  display: inline-block;
  margin-right: 1rem;
}
.footer_container ul li a {
  color: #fff;
  transition: 0.3s;
}
.footer_container ul li a:hover {
  text-shadow: 0 0 3px #fff;
}

footer .copy {
  text-align: right;
  padding: 20px;
  color: #fff;
}

@media screen and (max-width: 834px) {
  .footer_container {
    display: none;
  }
  footer .copy {
    padding: 0 20px 10px;
  }
  footer .small {
    padding: 0;
    line-height: 1.2;
  }
}

/* footerそこまで */

/* news */

.news dl {
  margin-bottom: 20px;
}
.news dt {
  color: var(--sub-color);
}

.news dd .headline {
  font-weight: 800;
}
.news a {
  text-decoration: underline;
}
/* newsここまで */

/* chairperson */

.greeting {
  display: flex;
  padding: 30px;
  background-image: url(./img/photo_sky01_half.png);
  background-color: #c8e6ff;
}

.greeting_1st h3 {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--sub-color);
}

.greeting_1st {
  width: 200px;
  margin-right: 40px;
}

.greeting_prof {
  width: 200px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 3;
}

.greeting_photo {
  width: 180px;
  padding: 10px;
}

.greeting_2nd {
  font-size: 1rem;
  line-height: 2;
}

@media screen and (max-width: 834px) {
  .greeting {
    display: block;
    padding: 30px;
    background-image: url(./img/photo_sky01_half_sp.png);
    background-size: cover;
    background-repeat: repeat;
    box-sizing: border-box;
    max-width: 100%;
  }
}
/* chairpersonここまで */

/* officer */

.officer_box {
  display: block;
  margin-bottom: 80px;
}
.officer_box table {
  width: 100%;
}

.officer_box table tr:nth-child(2n-1) {
  background-color: #e9e7e7;
}
.officer_box table th,
.officer_box table td {
  padding: 3px 3px 3px 4px;
}

@media screen and (max-width: 834px) {
  .officer_box {
    display: block;
    margin-bottom: 60px;
    overflow: scroll;
    box-sizing: border-box;
    max-width: 100%;
    padding-bottom: 10px;
  }
  .officer_box table {
    width: 600px;
  }
  .officer_box table th,
  .officer_box table td {
    padding: 4px 3px 4px 4px;
  }
}
/* officerここまで */

/* constitution */

.constitution h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 800;
}
.constitution dl {
  display: flex;
}

.constitution dt {
  width: 75px;
  font-weight: 400;
}
.constitution dd {
  width: 920px;
  font-weight: 400;
}

@media screen and (max-width: 834px) {
  .constitution dt {
    width: 20vw;
  }
  .constitution dd {
    width: 79vw;
  }
}
/* constitutionここまで  */

/* award */

.award_box h3 {
  font-weight: 400;
  font-size: 1.2rem;
  padding-bottom: 5px;
  border-bottom: var(--sub-color) 1px solid;
  margin-bottom: 1rem;
  max-width: 100%;
}
.award table {
  /* width: 80%; */
  margin: 0 auto;
  width: 100%;
}

.award table tr:nth-child(2n-1) {
  background-color: #e9e7e7;
}
.award table td.line {
  padding: 4px;
}
.award th{
  text-align: left;
  font-size: 1rem;
  background-color: #e9e7e7;
  white-space: nowrap;
  padding: 10px 5px 10px 14px;
}
.award td {
  padding: 15px 10px 15px 10px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}
.award td:nth-of-type(1)  {
  width:80px;
  padding: 10px 5px 10px 14px;

}
.award td:nth-of-type(2)  {
  width:100px;
  padding: 10px 5px 10px 5px;
}

.award td .award_name{
  font-weight: bold;

}
.award td .award_field{
  font-size: 0.85rem;
  color: #333;
  vertical-align: top;
}

@media screen and (max-width: 834px) {
  .award_box {
    display: block;
    overflow: scroll;
    box-sizing: border-box;
    max-width: 100%;
    padding-bottom: 10px;
  }

  .award table {
    width: 370px;
  }

  .award td {
    padding: 6px 0px 6px 4px;
    font-size: 0.8rem;
    font-weight: 400;
  }


}

/* awardここまで */

/* topic */
.topic_name {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 200;
  line-height: 1.2;
}

.topic_date{
  font-size: 1.2rem;
  font-weight: 200;
  width:8rem;
}

.topic_h3 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 1.2rem;
  border-bottom: #333 1px solid;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.topic_photobox{
  display: flex;
  justify-content:space-between;
  column-gap: 20px;
  margin-top: 20px;
}
.topic_photobox_figure{
  flex-grow: 1;
}
.topic_photobox_figure img{
  width:100%;
box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4); 
}
.topic_photobox_figure figcaption{
  line-height: 2.5;
  text-align: center;
}
.topic_textright{
  text-align: right;
}
.topic_textstrong{
  font-weight: bold;
  font-feature-settings: "normal";
}
.topic_endpart{
  margin-bottom: 2em;
}
/* topicここまで */

/* application */

.download_button {
  display: block;
  font-size:1.2em;
  padding: 20px;
  background-color:#fff; 
  background-image: url(./img/arrow1.svg);
  background-position: left 20px top 40px;
  background-repeat: no-repeat;
  background-size: 30px;
  color:var(--main-color);
  text-decoration: none;
  width:600px;
  margin:0 auto 40px;
  border-radius: 20px;
  box-shadow: var(--sub-color) 3px 3px 5px;
  text-align: center;
  transition: 0.3s;
  border: var(--main-color) 1px solid;
}

.download_button:hover{
  background-color: #fff;
  color:#a0a0a0;
  border: #a0a0a0 1px solid;
  background-image: url(./img/arrow2.svg);
  background-position: left 25px top 40px;
}

.application .download_button:last-of-type{
  margin:0 auto 200px;
}
.download_button a{
  display:inline-block;
  padding: 0px 1em;
  color:white;
  background-color:#1878c7;
  margin: 0 5px;
  text-decoration: none;
  border-radius: 20px;
  transition: 0.3s;
}
.download_button a:hover{
  background-color:#a0a0a0;
}

@media screen and (max-width: 834px) {
  .download_button {
    background-position: left 20px top 80px;
    width:300px;
  }
  .download_button:hover{
    background-color: #fff;
    color:#a0a0a0;
    border: #a0a0a0 1px solid;
    background-image: url(./img/arrow2.svg);
    background-position: left 25px top 80px;
  }
  .application a{
    padding: 5px 20px;
  max-width: 80vw;
  background-position: left 20px top 30px;
}
.application a:hover{
background-position: left 25px top 30px;
}
.download_button {
width:300px;
}

}


.goto_button a{
  display:inline-block;
  padding: 0.5em 1.5em;
  color:white;
  background-color:#1878c7;
  margin: 0 5px;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}
.goto_button a:hover{
  background-color:#a0a0a0;
}
.application .txtcenter{
  text-align: center;
}
.application h3{
  font-weight: 800;
font-size: 1.2rem;
padding-bottom: 5px;
border-bottom: var(--sub-color) 1px solid;
margin-top: 2rem;
margin-bottom: 1rem;
max-width: 100%;
}
.application h4{
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 800;
  }
  .application ul{
    padding-left: 1rem;
    list-style:disc;
    list-style-position: outside;
  }
  .application ol{
    padding-left: 1.1rem;
    list-style:decimal;
    list-style-position: outside;
  }
  .application .screenshot{
    padding:30px 150px 50px 150px;
  }
  .application .screenshot:nth-child(5){
    padding:30px 150px 0px 150px;
  }
  .application .screenshot img{
    box-shadow: 3px 3px 3px #aaa;
  }
  @media screen and (max-width: 834px) {
    .application .screenshot{
      padding:30px 10px 50px;
    }
    .application .screenshot:nth-child(5){
      padding:30px 10px 0;
    }
  }


  .application_table{
width:100%;
}

.application_table tr:nth-child(2n-1){
background-color: #e9e7e7;
}
.application_table th{
padding:5px 10px ;
font-weight: 800;
vertical-align:middle;
text-align: center;
border-right:1px dotted #ccc;
}

.application_table td{
  vertical-align:middle;
  text-align: center;
  line-height: 1.3;
  padding:5px 0 5px 10px;
  border-right:1px dotted #ccc;
}
.application_table td:nth-child(1){
  width:15%;
  /* border-left:1px dotted #ccc; */
  }
.application_table td:nth-child(2){
  width:18%;

  }
.application_table td:nth-child(3){
  width:18%;

  }
  .application_table td:nth-child(4){
    width:23%;
 
    }
    .application_table td:nth-child(5),.application_table td.fifth{
      width:26%;
      border-right:0px dotted #ccc;
      }

.application_table .tdhd{
  font-weight: 800;
  }
  .application_table ul li{
    text-align: left;

    }

@media screen and (max-width: 834px) {
.application_table{
  display: block;
  margin-bottom: 60px;
  overflow: scroll;
  box-sizing: border-box;
max-width: 100%;
padding-bottom: 10px;
}
.application_table{
  width:600px;
}
.application_table th,.application_table td{
  padding:4px 3px0px 4px 4px;
  }
}
/* applicationここまで */


/* contact */

#formWrap {
  margin: 10px auto;
}
table.formTable {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  border: 0;
  display: block;
}
table.formTable td,
table.formTable th {
  padding: 10px;
}
table.formTable th {
  width: 300px;
  font-weight: normal;
  background-color: #c5e5ff;
  color: var(--sub-color);
  text-align: left;
}
table.formTable td {
  background-color: #fff;
  color: #000;
  width: 700px;
}
table.formTable .bk_line {
  padding: 1px;
  background-color: var(--main-color);
}
table.formTable input,
table.formTable textarea,
table.formTable select {
  border: var(--sub-color) 1px solid;
}
.go_button_box {
  display: flex;
  justify-content: center;
  margin: 20px auto 0;
}
.go_button_box input:first-child {
  margin: 0 20px 0 0;
}
.go_button_box .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
.go_button_box .gobutton {
  display: inline-block;
  background-color: #fff;
  color: var(--main-color);
  padding: 20px;
  width: 380px;
  border-radius: 10px;
  border: var(--main-color) 1px solid;
  box-shadow: var(--sub-color) 3px 3px 4px;
  background-image: url(./img/arrow1.svg);
  background-position: left 10px top 20px;
  background-size: 10%;
  background-repeat: no-repeat;
  text-indent: 50px;
  transition: 0.3s;
}

.go_button_box .gobutton:hover {
  background-color: #fff;
  color: #a0a0a0;
  border: #a0a0a0 1px solid;
  background-image: url(./img/arrow2.svg);
  background-position: left 15px top 20px;
}
/* レスポンシブ用 */
@media screen and (max-width: 834px) {
  .contact {
    max-width: 95vw;
  }
  #formWrap {
    width: 95vw;
    margin: 0 auto;
  }
  table.formTable {
    border-collapse: collapse;
    border: 0;
    display: block;
  }
  table.formTable th,
  table.formTable td {
    width: auto;
    display: block;
    width: 95vw;
  }
  table.formTable th {
    border-bottom: 0;
    text-align: center;
  }
  form input[type='text'],
  form input[type='email'],
  form textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }
  form input[type='submit'],
  form input[type='reset'],
  form input[type='button'] {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .go_button_box {
    display: flex;
    flex-direction: column-reverse;
    width: 95vw;
  }
  .go_button_box .gobutton {
    width: 100%;
    background-position: left 10px top 15px;
    background-size: 5%;
    text-indent: 20px;
  }
  .go_button_box .gobutton:hover {
    background-position: left 15px top 15px;
  }
}
@media screen and (max-width: 428px) {
  .go_button_box .gobutton {
    width: 100%;
    background-position: left 10px top 25px;
    background-size: 5%;
    text-indent: 20px;
  }
  .go_button_box .gobutton:hover {
    background-position: left 15px top 25px;
  }
}

/* contactここまで */

/* [humberger]ハンバーガーメニューのボタン https://zero-plus.io/media/hamburger-menu-with-css/ */
.hamburger {
  display: none;
}
@media screen and (max-width: 834px) {
  /* スクリーンサイズが480px以下の場合に適用 */

  .hamburger {
    display: inline-block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: 15px;
    right: 30px;
    z-index: 100;
  }

  .hamburger_bar {
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    background: var(--sub-color);
    transition: top 0.24s, transform 0.24s, opacity 0.24s;
  }

  .hamburger_bar:nth-child(1) {
    top: 0;
  }

  .hamburger_bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .hamburger_bar:nth-child(3) {
    top: 100%;
    transform: translateY(-100%);
  }

  .hamburger_bar.is_active:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    background: #fff;
  }

  .hamburger_bar.is_active:nth-child(2) {
    transform: translate(50%, -50%);
    opacity: 0;
    background: #fff;
  }

  .hamburger_bar.is_active:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
    background: #fff;
  }

  .gnav {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.24s;
    pointer-events: none;
  }

  .gnav.is_active {
    opacity: 1;
    pointer-events: auto;
    height: 100vh;
  }

  .sp_title {
    opacity: 1;
    display: block;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #d0d0d0;
  }

  .gnav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* リセットCSS */
  button {
    border-color: transparent;
    background: transparent;
    cursor: pointer;
  }

  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  a {
    text-decoration: none;
    color: inherit;
  }
}
/* [humberger]ハンバーガーメニューのボタンここまで */

#formWrap.confirmWrap {
  margin: 10px auto;
}

.confirmWrap table.formTable {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  display: block;
}

.confirmWrap table.formTable td,
.confirmWrap table.formTable th {
  padding: 10px;
  border: 1px #1878c7 solid;
}

.confirmWrap table.formTable th {
  width: 300px;
  font-weight: normal;
  background-color: #c5e5ff;
  color: #5b7093;
  text-align: left;
}

.confirmWrap table.formTable td {
  background-color: #fff;
  color: #000;
  width: 700px;
}

.confirmWrap table.formTable .bk_line {
  padding: 1px;
  background-color: #1878c7;
}

.confirmWrap table.formTable input,
.confirmWrap table.formTable textarea,
.confirmWrap table.formTable select {
  border: #5b7093 1px solid;
}

.confirmWrap .go_button_box {
  display: flex;
  margin: 20px auto 0;
  width: 800px;
  justify-content: space-between;
}

/* レスポンイシブ用 */
@media screen and (max-width: 834px) {
  .confirmWrap .contact {
    max-width: 95vw;
  }

  #formWrap.confirmWrap {
    width: 95vw;
    margin: 0 auto;
  }

  .confirmWrap table.formTable {
    border-collapse: collapse;
    border: 0;
    display: block;
  }

  .confirmWrap table.formTable th,
  .confirmWrap table.formTable td {
    width: auto;
    display: block;
    width: 95vw;
  }

  .confirmWrap table.formTable th {
    border-bottom: 0;
    text-align: center;
  }

  .confirmWrap form input[type='text'],
  .confirmWrap form textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }

  .confirmWrap form input[type='submit'],
  .confirmWrap form input[type='reset'],
  .confirmWrap form input[type='button'] {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .confirmWrap .go_button_box {
    display: flex;
    margin: 20px auto 0;
    width: 95vw;
    flex-wrap: wrap;
  }

  .confirmWrap input.gobutton {
    background-position: left 15px top 18px;
    background-size: 5%;
    width: 95vw;
  }

  .confirmWrap input.gobutton:hover {
    background-position: left 15px top 18px;
  }

  .confirmWrap .gotop a {
    background-position: left 10px top 18px;
    background-size: 5%;
  }

  .confirmWrap .gotop a {
    background-position: left 15px top 18px;
  }
}

@media screen and (max-width: 428px) {
  .confirmWrap input.gobutton {
    background-position: left 15px top 25px;
    background-size: 5%;
    width: 95vw;
  }

  .confirmWrap input.gobutton:hover {
    background-position: left 15px top 25px;
  }

  .confirmWrap .gotop a {
    background-position: left 10px top 25px;
    background-size: 5%;
  }

  .confirmWrap .gotop a {
    background-position: left 15px top 25px;
  }
}
.mw_wp_form_confirm .bk_line {
  display: none !important;
}

.mw_wp_form_confirm .reset {
  display: none !important;
}
