/*
Theme Name: 愛媛大学 泌尿器科
*/
@charset "utf-8";

/* -------------------------------------------------------------------------- */
/* 共通 ↓                                                                    */
/* -------------------------------------------------------------------------- */
*{
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 0.1em;
}

p,a,li,h1,h2,h3,h4,h5,h6,address,span,dt,dd{
  font-family: 'M PLUS Rounded 1c', sans-serif;
  transform: rotate(0.03deg);
}
p{
  font-size: 16px;
  line-height: 1.6em;
}

ul,ol{
  list-style: none;
}

a{
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

a:hover{
  opacity: 0.6;
}

img{
  vertical-align:top;
}
header{
  display: flex;
  height: 70px;
  position: fixed;
  z-index: 9999;
  background-color: rgba(255,255,255,0.9);
  width: 100%;
}

main{
  padding-top: 70px;
}

footer{
  background-color: #32396F;
}

.showPc{
  display: block;
}

.showSp{
  display: none;
}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

@media (max-width:768px) {
  .showPc{
    display: none;
  }
  .showSp{
    display: block;
  }
}

/* ヘッダーロゴデザイン ↓ ------------------------- */
/* 枠 */
.h_logo{
  display: flex;
  align-items: flex-start;
  width: 430px;
  box-sizing: border-box;
}
/* ロゴ画像 */
.h_logo img{
  margin: 5px 0 3px 10px;
  width: 60px;
  height: 56px;
}
/* 愛媛大学医学部 器官・形態領域 泌尿器科学 */
.h_logo > span{
  font-size: 18px;
  display: block;
  line-height: 1.1em;
  padding: 8px 0 0 10px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}
/* Department of Urology Ehime University Graduate School of Medicine. */
.h_logo > span > span{
  /* Chromeでは10px以下の文字サイズ表示ができないので、無理やり8pxで表示させる */
  font-size: 10px;
  transform:scale(0.8);
  transform-origin: left center;
  font-weight: normal;
  display: block;
  line-height: 1em;
  padding: 4px 0 0 0;
  letter-spacing: 0.02em;
  width: 100%;
}

@media (max-width:1200px) {
  /* 枠 */
  /* 1,000pxでメニューを非表示にするため、横幅を拡大させる */
  .h_logo{
    display: flex;
    width: calc(100% - 140px);
  }
}

@media (max-width:768px) {
  /* 枠 */
  /* Entryボタンを非表示にするため、幅を拡大させる */
  .h_logo{
    width: calc(100% - 70px);
  }
  /* ロゴ画像 */
  .h_logo img{
    margin: 7px 0 10px 5px;
    width: 56px;
    height: 53px;
  }
  /* 愛媛大学医学部 器官・形態領域 泌尿器科学 */
  .h_logo > span{
    font-size: 16px;
    padding: 12px 0 0 5px;
  }
  /* Department of Urology Ehime University Graduate School of Medicine. */
  .h_logo > span > span{
    font-size: 6px;
  }
}
/* ヘッダーロゴデザイン ↑ ------------------------- */

/* グローバルナビゲーション ↓ --------------------- */
/* 枠 */
.h_global_nav{
  width: calc(100% - 640px);
}
.h_global_nav > ul{
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
/* li */
.h_global_nav_item{
  position: relative;
}
.h_global_nav_item > a{
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  padding: 24px 16px;
  display: block;
  height: 100%;
}

/* サブメニュー */
.h_global_nav_sub{
  position: absolute;
  width: 240px;
  top: 70px;
  z-index: 100;
}
.h_global_nav_sub li{
  border-bottom: 1px dotted #fff;
}
.h_global_nav_sub li:last-child{
  border-bottom: none;
}
/* hoverで表示するので最初は非表示 */
.h_global_nav_sub_item{
  overflow: hidden;
  opacity: 0;
  height: 0;
  transition: 0.3s;
}
.h_global_nav_sub_item a{
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
  font-size: 14px;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
}
.h_global_nav_sub_item a:after{
  content: "";
  position: absolute;
  top: 8px;
  right: 10px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.h_global_nav_item:hover{
  background-color: #349643;
  opacity: 1;
  transition: 1s;
}
.h_global_nav_item:hover > a{
  color: #fff;
  opacity: 1;
}
.h_global_nav_item:hover > .h_global_nav_sub > .h_global_nav_sub_item {
  overflow: visible;
  opacity: 1;
  padding: 10px;
  height: 46px;
  background-color: #58A55F;
  color: #fff;
}
.h_global_nav_sub_item a:hover{
  background-color: #58A55F;
}

@media (max-width:1120px) {
  .h_global_nav_item > a{
    font-size: 0.9vw;
    padding: 27px 1.45vw;
  }
}

@media (max-width:1200px) {
  /* 枠 */
  /* 非表示にする */
  .h_global_nav{
    display: none;
  }
}
/* グローバルナビゲーション ↑ --------------------- */

/* Entryボタン ↓ ---------------------------------- */
.h_entry{
  width: 140px;
  height: 70px;
  background-color: #F5AB39;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding-top: 14px;
  font-size: 14px;
}
.h_entry span{
  font-size: 10px;
  display: block;
  padding: 3px 0 0 0;
}
@media (max-width:768px) {
  /* 非表示にする */
  .h_entry{
    display: none;
  }
}
/* Entryボタン ↑ ---------------------------------- */


/* ハンバーガーメニューのデザイン ↓ ----------------*/
/* ハンバーガーメニューをクリックしたら表示される */
.navMenu{
  position: fixed;
  z-index: 200;
  top: 0;
  right: -320px;
  bottom: 0;
  transition: all 0.6s;
  height: 100vh;
  width: 300px;
  overflow-y: auto ;
  background-color: #349643;
}

.navMenu > ul{
  width: 100%;
  padding:0;
  margin:70px 0;
  border-top: 1px solid #fff;
}
.navMenu > ul > li{
  text-align: center;
  border-bottom: 1px solid #fff;
}
/* 新着情報・医局紹介・患者様へ */
.navMenu ul li span{
  display: block;
  color: #fff;
  padding: 8px 0;
  border-bottom: 1px dotted #fff;
}
.navMenu ul li a{
  display: block;
  width: 100%;
  padding: 8px 0;
  color: #fff;
}
.navMenu > ul > li > ul{
  background-color: #58A55F;
}
.navMenu > ul > li > ul > li{
  text-align: center;
  border-bottom: 1px dotted #fff;
}
.navMenu > ul > li > ul > li:last-child{
  border-bottom: none;
}

/* toggleをクリックするとactiveクラスが追加され、このデザインが適用される */
.navMenu.active{
  right: 0;
}

/* ハンバーガーメニューの背景 */
.bgMenu{
  position: fixed;
  top:0;
  left:0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  z-index: 100;
  cursor: pointer;
}
.bgMenu.active{
  opacity: 0.8;
  visibility: visible;
}

/* ハンバーガーメニュークリック前のデザイン ----*/
.toggle{
  display: block;
  position: relative;
  cursor: pointer;
  background-color: #349643;
  width: 70px;
  height: 70px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding-top: 48px;
  z-index: 300;
  font-family: sans-serif;
}
.toggle span{
  display: block;
  position: absolute;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  width: 40px;
  border-bottom: solid 3px #fff;
}
.toggle span:nth-child(1){
  top: 13px;
  left: 15px;
}
.toggle span:nth-child(2){
  top: 26px;
  left: 15px;
}
.toggle span:nth-child(3){
  top: 39px;
  left: 15px;
}

/* ハンバーガーメニュークリック後のデザイン ----*/
.toggle.active span:nth-child(1){
  -webkit-transform: rotate(-30deg);
  -mod-transform: rotate(-30deg);
  transform: rotate(-30deg);
  top: 20px;
  border-bottom: solid 3px #fff;
  left: 15px;
}
.toggle.active span:nth-child(2),
.toggle.active span:nth-child(3){
  -webkit-transform: rotate(30deg);
  -mod-transform: rotate(30deg);
  transform: rotate(30deg);
  top: 20px;
  border-bottom: solid 3px #fff;
  left: 15px;
}
/* ハンバーガーメニューのデザイン ↑ ----------------*/


/* バナーリンクのデザイン ↓ ------------------------*/
.banner_container{
  background-color: #e9e1cf;
  width: 100%;
  padding: 30px;
}
.banner_container ul{
  display: flex;
  width: 80%;
  margin: 0 auto;
}
.banner_container ul li{
  padding: 10px;
}
.banner_container ul li a img{
  width: 100%;
  box-shadow: 0 5px 14px 0 rgba(0, 0, 0, .5);
}

@media (max-width:900px) {
  .banner_container ul{
    width: 100%;
  }
}

@media (max-width:768px) {
  .banner_container{
    padding: 10px;
  }
  .banner_container ul{
    width: 100%;
  }
}
@media (max-width:600px) {
  .banner_container ul{
    flex-wrap: wrap;
  }
  .banner_container ul li{
    width: 50%;
  }
}
/* バナーリンクのデザイン ↑ ------------------------*/


/* Footerデザイン ↓ --------------------------------*/
.f_container{
  padding: 40px;
  display: flex;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}
.f_info{
  background-color: #fff;
  width: 360px;
  border-radius: 10px;
  padding: 10px 10px 20px 10px;
  margin: 0 auto;
}
/* ロゴの枠 */
.f_logo{
  display: flex;
  align-items: flex-start;
}
/* ロゴ画像 */
.f_logo img{
  padding: 3px 0 3px 0;
  width: 64px;
}
/* 愛媛大学医学部
   器官・形態領域 泌尿器科学 */
.f_logo > span{
  font-size: 16px;
  display: block;
  line-height: 1.1em;
  padding: 12px 0 0 5px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  width: calc(100% - 64px);
}
/* 英語表記 */
.f_logo > span > span{
  width: 350px;
  font-size: 10px;
  transform:scale(0.7);
  transform-origin: left center;
  font-weight: normal;
  display: block;
  line-height: 1em;
  padding: 4px 0 0 0;
  letter-spacing: 0.01em;
}

/* 住所と電話番号 */
.f_info address{
  font-size: 12px;
  padding: 10px 0 0 6px;
  font-style: normal;
}
/* 電話番号とFAX */
.f_tel_fax{
  display: flex;
}

/* フッターナビの枠 */
.f_nav_container{
  display: flex;
  justify-content: space-between;
}
.f_nav_container_sub{
  display: flex;
}
/* nav */
.f_global_nav{
  padding: 0 1vw;
}
.f_global_nav ul{
  padding-left: 5px;
}
.f_global_nav ul li{
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  line-height: 1.8em;
}
.f_global_nav a{
  color: #fff;
  font-size: 12px;
  font-weight: normal;
}
.f_global_nav a:before{
  content: "・";
}
.add_space{
  padding-bottom: 10px;
}

/* Copyright */
.copyright{
  background-color: #fff;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
}

@media (max-width:1080px) {
  .f_container{
    padding: 40px 10px;
  }

}
@media (max-width:900px) {
  .f_nav_container_sub{
    flex-direction: column;
  }
}
@media (max-width:900px) {
  .f_container{
    flex-direction: column;
  }
  .f_nav_container{
    margin: 30px auto 0 auto;
  }
  .f_nav_container_sub{
    flex-direction: row;
  }
}

@media (max-width:560px) {
  .f_info{
    width: 100%;
  }
  .f_container{
    padding: 40px 15px;
  }
  .f_nav_container_sub{
    flex-direction: column;
  }
}
/* Footerデザイン ↑ --------------------------------*/

/* 下から上へフェードイン ↓ ------------------------*/
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 300ms;
}

.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
/* 下から上へフェードイン ↑ -------------------------*/

/* 左から右へフェードイン ↓ -------------------------*/
.fadeinLR {
    opacity : 0;
    transform : translate(-50px, 0);
    transition : all 500ms;
}

.fadeinLR.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
/* 左から右へフェードイン ↑ ------------------------*/

/* Go To Top ↓ -------------------------------------*/
.gotoTopContainer{
  height: 0;
}

.gotoTop{
  text-align:center;
  background-color: #32396F;
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  padding-top: 30px;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  border: 3px solid #fff;
}

.gotoTop:after{
  content: "";
  position: absolute;
  top: 17px;
  right: 32px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.gotoTop:hover{
  background-color: #349643;
  opacity: 1;
}
/* Go To Top ↑ -------------------------------------*/
/* -------------------------------------------------------------------------- */
/* 共通 ↑                                                                    */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* トップページ ↓                                                            */
/* -------------------------------------------------------------------------- */

/* VI領域 ↓ ----------------------------------------*/
.top_vi_container{
  position: relative;
}
.top_vi_container img{
  width: 100%;
}

.vi_message{
  position: absolute;
  width: 560px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px  2px 1px #32396F,
      -2px  2px 1px #32396F,
       2px -2px 1px #32396F,
      -2px -2px 1px #32396F,
       2px  0px 1px #32396F,
       0px  2px 1px #32396F,
      -2px  0px 1px #32396F,
       0px -2px 1px #32396F;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.vi_message span{
  display: block;
  font-size: 18px;
}

@media (max-width:600px) {
  .vi_message{
    width: 90%;
  }
}
/* VI領域 ↑ ----------------------------------------*/

/* WHAT'S NEW・MESSAGE・FACEBOOK・診療受付 ↓ -------*/
.top_info_container{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.top_info_container > section,
.top_info_container > div{
  width: 50%;
}

@media (max-width:768px) {
  /* スマホサイズ時には横並びから縦並びに変更 */
  .top_info_container{
    flex-direction: column;
  }
  .top_info_container > section,
  .top_info_container > div{
    width: 100%;
  }
}
/* WHAT'S NEW・MESSAGE・FACEBOOK・診療受付 ↑ -------*/

/* WHAT'S NEW ↓ ------------------------------------*/
.top_whats_new_container{
  position: relative;
  background-color: #f8f6f1;
  padding: 30px;
}
.top_whats_new{
  overflow-y: scroll;
  padding: 0 10px 0 0;
  height: 32vw;
  margin: 20px 0 0 0;
}
.top_whats_new_container h2{
  padding-left: 40px;
  position: relative;
}
.top_whats_new_container h2:before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 30px;
  background: url("./images/icon_whatsnew.png") no-repeat;
  background-size: contain;
}
.top_whats_new ul li{
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dotted #ccc;
}
.top_whats_new ul li div{
  display: flex;
}
/* 日付 */
.top_whats_new_date{
  display: block;
  font-size: 12px;

  width: 90px;
}
/* アイコンデザイン */
.top_whats_new_ico_info{
  font-size: 11px;
  color: #F5AB39;
  border: 1px solid #F5AB39;
  background-color: #fff;
  display: block;
  padding: 1px 5px;
  width: 120px;
  text-align: center;
}
.top_whats_new_ico_student{
  font-size: 11px;
  color: #349E42;
  border: 1px solid #349E42;
  background-color: #fff;
  display: block;
  padding: 1px 5px;
  width: 120px;
  text-align: center;
}
.top_whats_new_ico_result{
  font-size: 11px;
  color: #3EC2D4;
  border: 1px solid #3EC2D4;
  background-color: #fff;
  display: block;
  padding: 1px 5px;
  width: 120px;
  text-align: center;
}
/* 本文(リンク) */
.top_whats_new_link{
  font-size: 14px;
  margin-left: 10px;
  width: calc(100% - 210px);
  padding-left: 10px;
  color: #000;
}
.top_whats_new_link:hover{
  text-decoration: underline;
}
/* 一覧をみるボタン */
.top_whats_new_btn{
  position: absolute;
  display: block;
  top: 36px;
  right: 30px;
  background-color: #349E42;
  border-radius: 30px;
  font-size: 12px;
  color: #fff;
  padding: 3px 30px;
}
.top_whats_new_btn:after{
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width:1000px) {
  .top_whats_new{
    height:28vw;
  }

  .top_whats_new ul li{
    flex-direction: column;
  }

  /* 本文(リンク) */
  .top_whats_new_link{
    margin-left: 0;
    width: 100%;
    padding-top: 5px;
  }

  /* 一覧をみるボタン */
  .top_whats_new_btn{
    right: 10px;
    padding: 3px 20px;
  }
}

@media (max-width:768px) {
  .top_whats_new_container{
    padding: 15px 20px 30px 20px;
  }
  .top_whats_new{
    height: 70vw;
  }

  .top_whats_new_btn{
    top: 20px;
  }
}
/* WHAT'S NEW ↑ ------------------------------------*/

/* MESSAGE ↓ ---------------------------------------*/
.top_message_container{
  position: relative;
}
.top_message_container h2{
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  background-color: rgb(52,158,66,0.8);
  background-blend-mode: color-burn;
  padding: 20px 10px 20px 70px;
  color: #fff;
}
.top_message_container h2:before{
  content: "";
  display: block;
  position: absolute;
  left: 20px;
  top: 25px;
  width: 38px;
  height: 30px;
  background: url("./images/icon_message.png") no-repeat;
  background-size: contain;
}
/*教授メッセージ(リンク)*/
.top_message_container h2 a{
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  right: 30px;
  top: 29px;
}
.top_message_container h2 a:after{
  content: "";
  position: absolute;
  top: 6px;
  right: -14px;
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.3s;
}

.top_message_container img{
  width: 100%;
  vertical-align: top;
}
/* MESSAGE ↑ ---------------------------------------*/

/* Facebook ↓ --------------------------------------*/
.top_fb_container{
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background: linear-gradient(#486cb6, #354f86);
}

@media (max-width:768px) {
  .top_fb_container{
    padding: 0;
  }
}
/* Facebook ↑ --------------------------------------*/

/* 診療受付 ↓ --------------------------------------*/
.top_schedule_container{
  background-color: #F5AB39;
  padding: 20px;
}
.top_schedule{
  border: 1px solid #fff;
  padding: 20px;
}
.top_schedule h2{
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
.top_schedule h2 span{
  display: block;
  font-size: 12px;
  font-weight: normal;
}
.top_schedule h2:before{
  content: "";
  display: block;
  margin: 10px auto 0 auto;
  width: 38px;
  height: 46px;
  background: url("./images/icon_schedule.png") no-repeat;
  background-size: contain;
}
.top_schedule dl{
  display: flex;
  width: 70%;
  margin: 0 auto 10px auto;
  color: #fff;
}
.top_schedule dl dt{
  width: 100px;
  text-align: left;
}

.top_schedule_btn_container{
  display: flex;
  width: 310px;
  margin: 50px auto 30px auto;
  justify-content: space-between;
}
.top_schedule_btn{
  display: block;
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 10px;
  width: 150px;
  text-align: center;
  font-size: 14px;
  color: #F5AB39;
  font-weight: bold;
  position: relative;
}
.top_schedule_btn:after{
  content: "";
  position: absolute;
  top: 18px;
  right: 12px;
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #F5AB39;
  border-right: 1px solid #F5AB39;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.top_schedule_btn:hover{
  opacity: 0.6;
}

@media (max-width:1000px) {
  .top_schedule dl{
    width: 80%;
  }
}

@media (max-width:440px) {
  .top_schedule dl{
    width: 94%;
  }
}

@media (max-width:400px) {
  .top_schedule_btn_container{
    flex-direction: column;
    margin: 20px auto 10px auto;
    width: 100%;
  }
  .top_schedule_btn{
    margin: 20px auto 0 auto;
    width: 200px;
  }
}
/* 診療受付 ↑ --------------------------------------*/

/* 研修プログラム ↓ --------------------------------*/
.top_program_container{
  position: relative;
}
.top_program_container img{
  width: 100%;
  vertical-align: top;
}
.top_program_img{
  position: absolute;
  width: 60% !important;
  order: 1;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.top_program_container section{
  position: absolute;
  background-color: #349E42;
  color: #fff;
  display: block;
  top: 50%;
  transform: translate(0, -50%);
  right: 20%;
  width: 30%;
  padding: 2vw;
}
.top_program_container section h2{
  margin-bottom: 20px;
  padding-left: 50px;
}
.top_program_container section h2:before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 8px;
  width: 36px;
  height: 42px;
  background: url("./images/icon_program.png") no-repeat;
  background-size: contain;
}
.top_program_container section h2 span{
  display: block;
  font-size: 12px;
  font-weight: normal;
}
.top_program_btn{
  display: block;
  background-color: #fff;
  text-align: center;
  padding: 10px 20px;
  border-radius: 30px;
  width: 70%;
  margin: 20px auto 0 auto;
  color: #349E42;
  position: relative;
}
.top_program_btn:after{
  content: "";
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #349E42;
  border-right: 1px solid #349E42;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.top_program_btn:hover{
  opacity: 0.6;
}

@media (max-width:1100px) {
  .top_program_container section{
    right: 5%;
    width: 45%;
  }
}
@media (max-width:768px) {
  .top_program_container{
    position: relative;
  }
  .top_program_container img{
    width: 100%;
    vertical-align: top;
  }
  .top_program_img{
  position: static;
  width: 100% !important;
    order: 1;
  1left: 50%;
  top: 0;
  transform: translate(0, 0);
  margin: 0 auto;
  }
  .top_program_container section{
    position: static;
    transform: translate(0, -10%);
    width: 94%;
    padding: 10px 15px 30px 15px;
    margin: 0 auto;
  }
  .top_program_container section h2{
    margin-bottom: 20px;
    padding-left: 50px;
  }
  .top_program_container section h2:before{
    top: 8px;
    left: 0;
  }
  .top_program_container section h2 span{
    display: block;
    font-size: 12px;
    font-weight: normal;
  }
  .top_program_btn{
    display: block;
    background-color: #fff;
    text-align: center;
    padding: 10px 20px;
    border-radius: 30px;
    width: 70%;
    margin: 20px auto 0 auto;
    color: #349E42;
    position: relative;
  }
  .top_program_btn:after{
    content: "";
    position: absolute;
    top: 17px;
    right: 20px;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #349E42;
    border-right: 1px solid #349E42;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/* 研修プログラム ↑ --------------------------------*/

/* 入局者の声 ↓ ------------------------------------*/
.top_voice_container{
  width: 100%;
  position: relative;
}
.top_voice_container h2{
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  background-color: rgb(52,158,66,0.8);
  background-blend-mode: color-burn;
  padding: 20px 10%;
  color: #fff;
}
.top_voice_container h2:before{
  content: "";
  display: block;
  position: absolute;
  left: 5vw;
  top: 20px;
  width: 40px;
  height: 36px;
  background: url("./images/icon_voice.png") no-repeat;
  background-size: contain;
}
.top_voice_container h2 a{
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translate(0,-50%);
}
.top_voice_container h2 a:after{
  content: "";
  position: absolute;
  top: 9px;
  right: -14px;
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.top_voice_container img{
  width: 100%;
  vertical-align: top;
}

@media (max-width:768px) {
  .top_voice_container h2{
    padding: 20px 70px;
  }
  .top_voice_container h2:before{
    left: 24px;
    top: 20px;

  }
}
/* 入局者の声 ↑ ------------------------------------*/

/* スタッフ紹介 ↓ ----------------------------------*/
.top_profile_container{
  padding: 60px 0;
  background-color: #fefcf7;
}
.top_profile_container h2{
  text-align: center;
  width: 100%;
  padding: 0 0 40px 0;
  position: relative;
  margin-top: 40px;
}
.top_profile_container h2:before{
  content: "";
  position: absolute;
  display: block;
  width: 26px;
  height: 36px;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: url("./images/icon_profile.png") no-repeat;
  background-size: contain;
}
.top_profile_container h2 span{
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.top_profile_btn{
  position: relative;
  display: block;
  margin: 50px auto 0 auto;
  background-color: #F5AB39;
  border-radius: 30px;
  padding: 10px;
  width: 200px;
  color: #fff;
  text-align: center;
}
.top_profile_btn:after{
  content: "";
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.top_profile_btn:hover{
  opacity: 0.6;
}
/* スタッフ紹介 ↑ ----------------------------------*/

/* -------------------------------------------------------------------------- */
/* トップページ ↑                                                            */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* サブページ（共通） ↓                                                      */
/* -------------------------------------------------------------------------- */
/* ページタイトル(h1)のデザイン */
.sub_title{
  position: relative;
}
.sub_title h1{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 0 0 0.25vw #000;
  font-size: 2.6vw;
  width: 100%;
  text-align:center;
}
.sub_title span{
  display: block;
  font-size: 1.16vw;
  font-weight: normal;
  text-align: center;
}

/* ページヘッダーの画像 */
.sub_vi{
  width: 100%;
}

/* パンくずリスト */
.bread_list{
  background-color: #E6E6E2;
  padding: 5px 10px;
  font-size: 13px;
}
.bread_list ol{
  display: flex;
  max-width: 1100px;
  padding: 0 40px;
  margin: 0 auto;
}
.bread_list ol li:after{
  content: ">";
  padding: 0 5px;
}
.bread_list ol li:last-child:after{
  content: "";
}
.bread_list ol li a{
  color: #000;
}
.bread_list ol li a:hover{
  text-decoration: underline;
}

/* ページの外枠 */
.page_container{
  max-width: 1000px;
  padding: 60px 40px;
  margin: 0 auto;
}

/* スマホデザイン */
@media (max-width:768px) {
  .sub_title h1{
    text-shadow: 0 0 0.4vw #000;
    font-size: 6.9vw;
  }
  .sub_title span{
    font-size: 3.4vw;
  }
  /* ページの外枠 */
  .page_container{
    padding: 40px 15px;
  }
  /* パンくずリスト */
  .bread_list{
    font-size: 11px;
  }
  .bread_list ol{
    padding: 0 15px;
  }

}
/* -------------------------------------------------------------------------- */
/* サブページ（共通） ↑                                                      */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* 教授挨拶ページ  ↓                                                         */
/* -------------------------------------------------------------------------- */
/* 出逢えてよかった */
.greeting_message{
  width: 100%;
  text-align: center;
  color: #349E42;
  font-size: 30px;
  margin-bottom: 60px;
  font-weight: 500;
}
.greeting_message span{
  display: block;
  font-size: 18px;
  color: #000;
}

/* 枠 */
.greeting_container{
  display: flex;
}
/* 教授メッセージ本文 */
.greeting_main{
  width: 60%;
}
.greeting_main p{
  padding-bottom: 20px;
}
/* 教授写真の枠 */
.greeting_image{
  width: 40%;
  text-align: center;
}
/* 教授写真 */
.greeting_image img{
  width: 90%;
  margin-bottom: 20px;
}
/* 教授名 */
.greeting_name dd{
  margin-top: 5px;
  font-size: 22px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}
.greeting_name dd span{
  display: block;
  font-size: 12px;
}
/* 経歴 */
.greeting_career{
  display: flex;
  align-items: flex-start;
  padding: 80px 0;
}
/* 経歴のタイトル */
.greeting_career h2{
  font-weight: 500;
  display: block;
  width: 200px;
  border-left: 3px solid #F5AB39;
  padding-left: 10px;
}
/* 経歴の枠 */
.greeting_career div{
  width: calc(94% - 200px);
}
/* 経歴の行 */
.greeting_career div dl{
  display: flex;
  border-bottom: 1px solid #ccc2b2;
}
.greeting_career div dl:first-child{
  border-top: 1px solid #ccc2b2;
}
/* 経歴の年 */
.greeting_career div dl dt{
  width: 140px;
  background-color: #f9f6f1;
  padding: 15px;
}
/* 経歴の内容 */
.greeting_career div dl dd{
  padding: 15px;
  width: calc(100% - 140px);
}

/* スマホデザイン */
@media (max-width:768px) {
  /* 枠 */
  .greeting_container{
    flex-direction: column;
  }
  .greeting_message span{
    font-size: 14px;
  }

  /* 教授メッセージ本文 */
  .greeting_main{
    width: 100%;
  }
  /* 教授写真の枠 */
  .greeting_image{
    width: 100%;
  }
  /* 教授写真 */
  .greeting_image img{
    max-width: 400px;
    width: 100%;
  }

  /* 経歴 */
  .greeting_career{
    display: flex;
    align-items: flex-start;
    padding: 80px 0;
  flex-direction: column;
  }
  /* 経歴のタイトル */
  .greeting_career h2{
    margin-bottom: 20px;
  }
  /* 経歴の枠 */
  .greeting_career div{
    width: 100%;
  }
  /* 経歴の年 */
  .greeting_career div dl dt{
    width: 120px;
    padding: 10px;
  }
  /* 経歴の内容 */
  .greeting_career div dl dd{
    padding: 10px;
    width: calc(100% - 120px);
  }

}
/* -------------------------------------------------------------------------- */
/* 教授挨拶ページ  ↑                                                         */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* 新着情報ページ  ↓                                                         */
/* -------------------------------------------------------------------------- */

/* wordpressのクラスを上書き */
.aligncenter{
	display: block;
  margin: 0.6em auto;
}
.alignright{
	float: right;
  margin: 0.6em 0 0.6em 0.2em;
}
.alignleft{
	float: left;
	margin: 0.6em 0.2em 0.6em 0;
}
/* floatしてるのでクリアしないと突き抜けてしまう */
.news_main > section:after{
  content: "";
  display: block;
  clear: both;
}
.news_container{
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
}
.news_main{
  width: 67%;
  margin-left: 3%;
}
.news_main section{
  border-bottom: 1px dotted #ccc;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.news_main section:last-child{
  border-bottom: 0;
}

.news_main section h2 a{
  color: #32396F;
}

.news_container nav{
  width: 30%;
  background-color: #f8f6f1;
  padding: 20px;
  border-radius: 10px;
  position: sticky;
  margin-bottom: 0;
  top: 80px;
  z-index: 1;
}
.news_container nav ul li{
  padding: 3px 0 3px 20px;
  position: relative;
}
.news_container nav ul li:before{
  content: "play_circle";
  font-family: "Material Icons";
  color: #32396F;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 7px;
}
.news_container nav ul li a{
  color: #000;
}
.news_spec{
  display: flex;
  align-items: flex-start;
  padding: 10px 0 30px 0;
}
.news_date{
  font-size: 13px;
  padding-left: 10px;
}

/* ページネーション
  pnavi:ニュースページ用（page-news.php）
  pagination:カテゴリ用（category.php）
  pagination_single:記事ページ用（single.php）
*/
.pagination{
  background-color: #fff !important;
  width: 100% !important;
  padding: 20px 0 !important;
}
.pnavi .page-numbers,
.nav-links .page-numbers{
  color: #32396F !important;
  border: 1px solid #32396F;
  padding: 5px;
}
.pnavi .dots,
.nav-links .dots{
  color: #ccc !important;
  border: 0 !important;
  padding: 5px;
}
.pnavi .next,
.nav-links .next,
.pnavi .prev,
.nav-links .prev{
  color: #32396F !important;
  border: 0 !important;
  padding: 5px;
}

.pnavi .current,
.nav-links .current{
  color: #fff !important;
  background-color: #32396F;
  padding: 5px;
}
.pagination_single{
  background-color: #fff !important;
  width: 100% !important;
  padding: 20px 0 !important;
}
.pagination_single ul{
  display: flex;
}
.pagination_single ul li{
  padding: 0 10px 0 0 !important;
}
.pagination_single ul li:before{
  display: none;
}
.pagination_single ul li a{
  color: #32396F !important;
}
/* スマホデザイン */
@media (max-width:768px) {
  .news_container{
    flex-direction: column-reverse;
  }
  .news_main{
  width: 100%;
  margin-left: 0;
  }
  .news_main section{
    border-bottom: 1px dotted #ccc;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .news_main section:last-child{
    border-bottom: 0;
  }
  .news_container nav{
  width: 100%;
    background-color: #f8f6f1;
  padding: 10px;
    border-radius: 10px;
  position: static;
    margin-bottom: 0;
    top: 70px;
    z-index: 1;
  margin-bottom: 30px;
  }
  .news_container nav ul li{
    padding: 3px 0 3px 20px;
    position: relative;
  font-size: 14px;
  }
  .news_container nav ul li:before{
    content: "play_circle";
    font-family: "Material Icons";
    color: #32396F;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 7px;
  }
  .news_container nav ul li a{
    color: #000;
  }
  .news_spec{
    display: flex;
    align-items: flex-start;
    padding: 10px 0 30px 0;
  }
  .news_date{
    font-size: 13px;
    padding-left: 10px;
  }
}
/* -------------------------------------------------------------------------- */
/* 新着情報ページ  ↑                                                         */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* スタッフ紹介ページ  ↓                                                     */
/* -------------------------------------------------------------------------- */
/* リスト表示 */
.profile_lists{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  border-bottom: 1px dotted #ccc;
}
.profile_lists li{
  width: 20%;
  text-align: center;
  margin-bottom: 50px;
}
.profile_lists li a span{
  display: block;
  font-size: 20px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}
.profile_lists li a span:nth-child(3){
  font-size: 10px;
  color: #c1ab05;
}
.profile_lists li a{
  color: #000;
}
.profile_lists a img{
  width: 90%;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* スタッフ紹介の外枠 */
.staff_container{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 50px;
  border-bottom: 1px dotted #ccc;
  padding-top: 70px;
  margin-top: -70px;
}

/* スタッフ名：漢字 */
.staff_container h2{
  font-size: 30px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  margin: 12% auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.staff_container h2:after{
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #000;
  top: 23px;
  right: -120px;
  z-index: 2;
}

/* スタッフ名：英語 */
.staff_container h2 span{
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  display: block;
  text-align: center;
  font-size: 12px;
  color: #c1ab05;
}

/* スタッフの役職 */
.staff_container h2 span:nth-child(2){
  font-size: 16px;
  margin-top: 10%;
  color: #000;
}

/* スタッフ写真 */
.staff_image{
  width: 70%;
}

/* スタッフのコメント */
.staff_comment{
  display: block;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  padding: 50px;
  margin-bottom: 30px;
  color: #349643;
}

/* 各項目：タイトル */
.staff_container h3{
  font-weight: 500;
  display: block;
  width: 200px;
  border-left: 6px solid #F5AB39;
  padding-left: 10px;
  margin-bottom: 10px;
}


/* 外来診療日・略歴・専門 */
.staff_mt_day_history_specialty{
  width: 24%;
  margin-right: 2%;
}
.staff_mt_day_history_specialty section p{
  margin-left: 18px;
  font-size: 15px;
}
.staff_mt_day_history_specialty section:nth-child(1),
.staff_mt_day_history_specialty section:nth-child(2){
  margin-bottom: 50px;
}

/* 専門医・指導医 */
.staff_specialist{
  width: 46%;
  margin: 0 2% 50px 0;
}

/* 所属学会 */
.staff_society{
  width: 26%;
  margin: 0 0 50px 0;
}

.staff_specialty ul,
.staff_specialist ul,
.staff_society ul{
  margin-left: 28px;
  list-style: disc;
}
.staff_specialty ul li,
.staff_specialist ul li,
.staff_society ul li{
  line-height: 2.2em;
  border-bottom: 1px dotted #ccc;
  font-size: 15px;
}
.staff_specialty ul li:last-child,
.staff_specialist ul li:last-child,
.staff_society ul li:last-child{
  border-bottom: none;
}

/* スマホデザイン */
@media (max-width:768px) {
  /* リスト表示 */
  .profile_lists li{
    width: 50%;
  }

  /* スタッフ紹介の外枠 */
  .staff_container{
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 30px;
  }

  /* スタッフ名：漢字 */
  .staff_container h2{
    font-size: 26px;
    margin: 6% auto;
  }
  .staff_container h2:after{
    display: none;
  }

  /* スタッフの役職 */
  .staff_container h2 span:nth-child(2){
    font-size: 14px;
  }

  /* スタッフ写真 */
  .staff_image{
    width: 100%;
  }
  /* スタッフのコメント */
  .staff_comment{
    text-align: left;
    font-size: 18px;
    padding: 20px 0;
    margin-bottom: 20px;
  }

  /* 外来診療日・略歴・専門 */
  .staff_mt_day_history_specialty{
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }

  /* 専門医・指導医 */
  .staff_specialist{
    width: 100%;
    margin: 0 0 50px 0;
  }

  /* 所属学会 */
  .staff_society{
    width: 100%;
    margin: 0 0 50px 0;
  }
}
/* -------------------------------------------------------------------------- */
/* スタッフ紹介ページ  ↑                                                     */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* 当科の特色ページ  ↓                                                       */
/* -------------------------------------------------------------------------- */
/* 外枠 */
.feature_qa_container{
  display: flex;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px dotted #ccc;
  align-items: flex-start;
}
/* 各セクション */
.feature_qa_container section{
  width: 60%;
  box-sizing: border-box;
  margin-right: 5%;
}
/* Q */
.feature_qa_container section h2{
  border-left: none;
  font-size: 20px;
  padding-left: 0;
  position: relative;
  margin:0 0 30px 65px;
  border-bottom: 1px solid #349643;
}
.feature_qa_container section h2:before{
  content: "Q";
  padding-right: 5px;
  color: #fff;
  font-size: 24px;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50%;
  background-color: #349643;
  text-align: center;
  margin-right: 5px;
  position: absolute;
  top: 0;
  left: -65px;
}
/* A */
.feature_qa_container section p{
  margin-left: 65px;
  position: relative;
}
.feature_qa_container section p:before{
  content: "A.";
  position: absolute;
  top: 0;
  left: -45px;
  font-size: 24px;
  font-weight: bold;
  color: #349643  ;
}
/* 画像の外枠 */
.feature_images_container{
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  margin-top: 50px;
}
/* 画像のサイズ */
.feature_images_container li{
  width: 50%;
}
/* 画像 */
.feature_images_container li img{
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
}

/* スマホデザイン */
@media (max-width:768px) {
  /* 外枠 */
  .feature_qa_container{
    display: flex;
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px dotted #ccc;
    align-items: flex-start;
    flex-direction: column;
  }
  /* 各セクション */
  .feature_qa_container section{
    width: 100%;
    margin-right: 0;
  }
  /* 画像の外枠 */
  .feature_images_container{
    width: 100%;
  }

}
/* -------------------------------------------------------------------------- */
/* 当科の特色ページ  ↑                                                       */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* 入局者の声  ↓                                                             */
/* -------------------------------------------------------------------------- */
/* 外枠 */
.voice_container{
  width: 100%;

}
.voice_container > section{
  background-color: #f9f6f1;
  position: relative;
  margin-bottom: 100px;
}

/* 年代表示 */
.voice_container h2{
  background-color: #fff;
  margin-bottom: 30px;
  border-left: solid #000 8px;
  padding-left: 10px;
}

/* 名前 */
.voice_container h3{
  display: block;
  width: 50%;
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  margin: 20px 40px;
  padding-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d5c5aa;
}
.voice_container h3 span{
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  margin-left: 10px;
}

/* 質問タイトル */
.voice_container h4{
  border-left: 3px solid #fff;
  padding-left: 10px;
  margin-bottom: 20px;
}

/* 出身地・出身大学・その他 */
.voice_container dl{
  display: flex;
  padding: 5px 40px;
}
.voice_container dl dt{
  width: 100px;
}
.voice_container dl dt:after{
  content: "：";
}

/* QA */
.voice_messeges{
  padding: 50px;
  background-color: #359e42;
  color: #fff;
  margin-top: 30px;
}
.voice_messeges section{
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dotted #ccc;
}
.voice_messeges section:last-child{
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* 写真 */
.voice_photo{
  width: 50%;
  max-width: 500px;
  position: absolute;
  top: -30px;
  right: 0;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
}

/* スマホデザイン */
@media (max-width:768px) {
  .voice_container > section{
    margin-bottom: 50px;
  }

  /* 年代表示 */
  .voice_container h2{
    font-size: 22px;
  }

  /* 名前 */
  .voice_container h3{
    width: 100%;
    font-size: 20px;
    margin: 0 0 10px 0;
    padding: 10px;
  }
  .voice_container h3 span{
    font-size: 10px;
  }

  /* 出身地・出身大学・その他 */
  .voice_container dl{
    display: flex;
    padding: 5px 10px;
  }
  .voice_container dl dt{
    width: 100px;
  }

  /* QA */
  .voice_messeges{
    padding: 20px;
  }

  /* 写真 */
  .voice_photo{
    width: 100%;
    max-width: 100%;
    position: static;
    border: none;
  }
}
/* -------------------------------------------------------------------------- */
/* 入局者の声  ↑                                                             */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* 診療案内  ↓                                                               */
/* -------------------------------------------------------------------------- */
/* 各タイトル */
.medical_container h2{
  margin-bottom: 20px;
  border-left: 3px solid #F5AB39;
  padding: 10px 0 10px 10px;
  border-bottom: 1px dotted #ccc;
}

/* 診療方針 */
/* 外枠 */
.medical_policy{
  display: flex;
  padding: 0 30px 50px 30px;
  align-items: flex-start;
}

/* 画像 */
.medical_policy img{
  width: 40%;
  border: 10px solid #fff;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
  margin-left: 50px;
}

/* 当科の対象疾患 */
/* 外枠 */
.medical_disease{
  display: flex;
  padding: 0 30px 50px 30px;
  flex-wrap: wrap;
}
/* 各ボックス */
.medical_disease section{
  display: flex;
  flex-direction: column;
  background-color: #f9f6f1;
  padding: 10px;
  width: 30%;
  margin: 0 1% 20px 2%;
  box-sizing: border-box;
}

/* 対象疾患タイトル */
.medical_disease section h3{
  text-align: center;
  height: 70px;
  order: 2;
}
.medical_disease section h3 span{
  display: block;
  font-size: 12px;
  font-weight: normal;
}

/* イラスト */
.medical_disease section img{
  width: 100%;
  margin-bottom: 10px;
  order: 1;
}
/* 対象疾患リスト */
.medical_disease section ul{
  line-height: 2em;
  list-style: disc;
  margin: 0 0 20px 10%;
  order: 3;
}
.medical_disease section ul li a{
  text-decoration: underline;
  color: #32396F;
}

/* 外来予定表「 */
.medical_timetable_pc{
  border-collapse: collapse;
  width: 94%;
  margin: 30px auto 100px auto;
}
.medical_timetable_pc td{
  padding: 10px;
  border: 1px solid #000;
}
.medical_timetable_pc thead{
  background-color: #349643;
  color: #fff;
  border-top: 1px solid #000;
}
.medical_timetable_pc thead tr th{
  width: 17%;
  padding: 10px 0;
  border-right: 1px solid #fff;
}
.medical_timetable_pc thead tr th:first-child{
  width: 10%;
  border-left: 1px solid #000;
}
.medical_timetable_pc thead tr th:last-child{
  border-right: 1px solid #000;
}
.medical_timetable_pc tbody td ul li{
  padding-bottom: 10px;
}

/* 予定表の午前 */
.medical_timetable_am{
  text-align: center;
  background-color: #f1e6d4;
}

/* 予定表の午後 */
.medical_timetable_pm{
  text-align: center;
  background-color: #f9f6f1;
}


/* 当科診療の特色 */
/* 外枠 */
.medical_features{
  padding: 20px 30px 50px 30px;
}

/* 各section */
.medical_features section{
  background-color: #f9f6f1;
  margin-bottom: 50px;
  position: relative;
}
.medical_features section:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  border-width: 40px 40px 0 40px;
}

/* タイトル */
.medical_features h3{
  background-color: #32396F;
  color: #f9f6f1;
  font-family: 'Noto Serif JP', serif;
  padding: 20px 20px 20px 56px;
  position: relative;
}
.medical_features h3:before{
  content: "\f009";
  font-family: 'Material Icons';
  color: #f9f6f1;
  position: absolute;
  left: 20px;
  top: 21px;
  font-size: 26px;
}

/* 文章 */
.medical_features section p{
  padding: 30px 30px 10px 30px;
}

/* PDFリンク */
.medical_features section a{
  display: block;
  padding: 0 0 30px 50px;
  position: relative;
  color: #1a6ab8;
  width: 300px;
}
.medical_features section a span{
  font-size: 12px;
  display: inline-block;
  padding-left: 5px;
}
.medical_features section a:before{
  content: "\e89e";
  font-family: 'Material Icons';
  color: #32396F;
  position: absolute;
  left: 30px;
  top: 5px;
}

/* スマホデザイン */
@media (max-width:768px) {
  /* 診療方針 */
  /* 外枠 */
  .medical_policy{
    padding: 0 10px 50px 10px;
    flex-direction: column;
  }
  /* 画像 */
  .medical_policy img{
    width: 100%;
    border: 10px solid #fff;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
    margin: 30px 0 0 0;
  }

  /* 当科の対象疾患 */
  /* 外枠 */
  .medical_disease{
    padding: 0 10px 50px 10px;
    flex-direction: column;
  }
  /* 各ボックス */
  .medical_disease section{
    width: 100%;
  }
  /* 対象疾患タイトル */
  .medical_disease section h3{
    height: auto;
    padding: 10px 0 20px 0;
  }

  /* 外来予定表 */
  .medical_timetable_sp{
    border-collapse: collapse;
    display: table;
    width: 100%;
    margin-bottom: 30px;
  }
  .medical_timetable_sp thead th{
    background-color: #f1e6d4;
    text-align: center;
    padding: 10px;
    border: 1px solid #000;
  }
  .medical_timetable_sp tbody tr{
    width: 100%;
  }
  .medical_timetable_sp tbody tr td{
    border: 1px solid #000;
    padding: 10px;
  }
  .medical_timetable_sp tbody tr td:first-child{
    background-color: #349643;
    color: #fff;
    font-weight: bold;
    text-align: center;
    width: 50px;
  }
  /* 当科診療の特色 */
  /* 外枠 */
  .medical_features{
    padding: 20px 10px 20px 10px;
  }

  /* 各section */
  .medical_features section{
    margin-bottom: 30px;
  }

  /* 文章 */
  .medical_features section p{
    padding: 20px 10px 10px 10px;
  }

  /* PDFリンク */
  .medical_features section a{
    padding: 0 0 30px 40px;
  }
  .medical_features section a span{
    display: block;
  }
  .medical_features section a:before{
    left: 20px;
  }
}

/* -------------------------------------------------------------------------- */
/* 診療案内  ↑                                                               */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* 泌尿器の病気  ↓                                                           */
/* -------------------------------------------------------------------------- */
/* 一覧ページ用 */
.urinary_list_message{
  display: flex;
  margin-bottom: 50px;
}
.urinary_list_message > div{
  width: 50%;
}
.urinary_list_message a{
  display: block;
  width: 50%;
  box-sizing: border-box;
  margin-left: 30px;
}
.urinary_list_message a img{
  width: 100%;
}

/* 当科で扱っている疾患 */
.urinary_list_target{
  background-color: #349643;
  color: #fff;
  padding: 6px 20px;
  border-radius: 10px;
  font-weight: bold;
  display: block;
  width: 240px;
  text-align: center;
  margin: 20px 0 10px 0;
}
.urinary_list_target_list{
  list-style: disc;
  margin-left: 30px;
  line-height: 1.8em;
}

/* 泌尿器科でみられる主な病気の画像 */
.urinary_list_main_image{
  display: block;
  width: 90%;
  margin: 0 auto 30px auto;
}

/* 病気リスト */
.urinary_lists{
  display: flex;
  flex-wrap: wrap;
  padding: 10px 20px;
  background-color: #f9f6f1;
}
.urinary_lists li{
  border-radius: 10px;
  width: 23%;
  text-align: center;
  box-sizing: border-box;
  margin: 10px 1%;
  background-color: #fbeda2;
  border: 1px solid #f1d95a;
}
.urinary_lists li a,
.urinary_lists li span{
  color: #000;
  display: block;
  padding: 10px;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  font-weight: 500;
}

/* 共通 */
.urinary_container h2{
  margin-bottom: 20px;
  border-left: 3px solid #F5AB39;
  padding: 10px 0 10px 10px;
  border-bottom: 1px dotted #ccc;
}

.urinary_container section h3{
  margin-bottom: 20px;
  color: #fff;
  background-color: #32396F;
  padding: 5px 10px;
}
/* 泌尿器の病気ページのみデザインを変える */
.urinary_h3{
  background-color: #fff !important;
  color: #000 !important;
  border-left: 5px solid #32396F !important;
}
.urinary_container section h4{
  margin-bottom: 20px;
  border-left: 5px solid #32396F;
  padding: 5px;
  border-bottom: 1px dotted #32396F;
}

.urinary_container section{
  width: 96%;
  margin: 0 auto 30px auto;
  padding-bottom: 30px;
}
.urinary_container section:last-child{
  border-bottom: none;
}
.urinary_container section p{
  line-height: 1.6em;
  margin-bottom: 30px;
}

.urinary_outline{
  margin-bottom: 30px;
}

/* 概要・疫学・原因・治療効果・治療後・取り組み */
/* 画像右配置が設定されている場合はこのクラスを利用する */
.urinary_description_container{
  display: flex;
  box-sizing: border-box;
}

/* 画像左配置が設定されている場合はこのクラスを利用する */
.urinary_description_container_reverse{
  display: flex;
  box-sizing: border-box;
  flex-direction: row-reverse;
}

/* 画像中央配置が設定されている場合はこのクラスを利用する */
.urinary_description_container_center{
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
}

/* 画像配置時の文章 */
.urinary_description_container p,
.urinary_description_container_reverse p{
  width: 70%;
}
.urinary_description_container_center p{
  width: 100%;
}

/* 画像配置時の画像 */
.urinary_description_container ul{
  width: 30%;
  margin-left: 30px;
}
.urinary_description_container_reverse ul{
  width: 30%;
  margin-right: 30px;
}
.urinary_description_container_center ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.urinary_description_container ul li,
.urinary_description_container_reverse ul li{
  margin-bottom: 20px;
  text-align: center;
}
.urinary_description_container_center ul li{
  width: 46%;
  box-sizing: border-box;
  padding: 20px 40px;
}
.urinary_description_container ul li img,
.urinary_description_container_reverse ul li img{
  width: 100%;
  max-width: 100%;
}
.urinary_description_container_center ul li img{
  width: 100%;
  max-width: 100%;
}
.urinary_description_container ul li span,
.urinary_description_container_reverse ul li span,
.urinary_description_container_center ul li span{
  display: block;
  margin-top: 10px;
  text-align:center;
}

/* 種類・症状・検査・治療 */
.urinary_images_container{
  width: 100%;
  display: flex;
  margin: 20px auto;
  box-sizing: border-box;
}
.urinary_images_container li{
  margin: 20px auto;
  width: 40%;
  box-sizing: border-box;
  text-align: center;
}
.urinary_images_container li img{
  width: 94%;
  max-width: 100%;
}
.urinary_images_container li span{
  display: block;
  margin-top: 10px;
}

@media (max-width:768px) {
  /* 一覧ページ用 */
  .urinary_list_message{
    display: flex;
    margin-bottom: 50px;
  flex-direction: column;
  }
  .urinary_list_message > div{
  width: 100%;
  }
  .urinary_list_message a{
    display: block;
  width: 100%;
    box-sizing: border-box;
  margin-left: 0;
  }
  .urinary_list_message a img{
  width: 90%;
  display: block;
  margin: 20px auto;
  }

  /* 当科で扱っている疾患 */
  .urinary_list_target{
    background-color: #349643;
    color: #fff;
    padding: 6px 20px;
    border-radius: 10px;
    font-weight: bold;
    display: block;
    width: 240px;
    text-align: center;
    margin: 20px 0 10px 0;
  }
  .urinary_list_target_list{
    list-style: disc;
    margin-left: 30px;
    line-height: 1.8em;
  }

  /* 泌尿器科でみられる主な病気の画像 */
  .urinary_list_main_image{
    display: block;
    width: 90%;
    margin: 0 auto 30px auto;
  }

  .urinary_lists li{
    border-radius: 10px;
    width: 48%;
  }

  /* 概要・疫学・原因・治療効果・治療後・取り組み */
  /* 画像が設定されている場合はこのクラスを利用する */
  .urinary_description_container,
  .urinary_description_container_reverse{
    flex-direction: column;
  }

  .urinary_description_container p,
  .urinary_description_container_reverse p{
    width: 100%;
  }
  .urinary_description_container ul,
  .urinary_description_container_reverse ul{
    width: 80%;
    margin: 20px auto;
  }
  .urinary_description_container_center ul{
    flex-direction: column;
  }
  .urinary_description_container_center ul li{
    width: 100%;
  }

  /* 種類・症状・検査・治療 */
  .urinary_images_container{
    width: 100%;
    display: flex;
    margin: 20px auto;
    box-sizing: border-box;
    flex-direction: column;
  }
  .urinary_images_container li{
    margin: 20px auto;
    width: 90%;
  }

}
/* -------------------------------------------------------------------------- */
/* 泌尿器の病気  ↑                                                           */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* 関連学会・関連病院  ↓                                                     */
/* -------------------------------------------------------------------------- */
/* 共通 */
.hospital_academic_conference h2,
.hospital_hospital h2,
.hospital_clinic h2{
  margin-bottom: 20px;
  border-left: 3px solid #F5AB39;
  padding: 10px 0 10px 10px;
  border-bottom: 1px dotted #ccc;
}
#hospital,#academic_conference,#clinic{
  margin-top: -70px;
  padding-top: 70px;
}

/* 関連学会 */
.hospital_academic_conference ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 100px 1%;
}
.hospital_academic_conference ul li{
  width: 33%;
  line-height: 3em;
  position: relative;
  padding-left: 40px;
  color: #000;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}
.hospital_academic_conference ul li:before{
  content: "\e89e";
  font-family: 'Material Icons';
  color: #349643;
  position: absolute;
  left: 20px;
  top: 1px;
}
.hospital_academic_conference ul li a{
  color: #32396F;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  text-decoration: underline;
}

/* 関連病院 */
.hospital_hospital{
  margin-bottom: 100px;
}
.hospital_hospital div dl{
  display: flex;
  line-height: 3em;
  margin-left: 1%;
  padding: 0 20px;
}
.hospital_hospital div dl:nth-child(odd){
  background-color: #f8f6f1;
}
.hospital_hospital div dl dt{
  width: 30%;
  position: relative;
  padding-left: 20px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}
.hospital_hospital div dl dt:before{
  content: "\e89e";
  font-family: 'Material Icons';
  color: #349643;
  position: absolute;
  left: 0;
  top: 1px;
}
.hospital_hospital div dl dt a{
  font-family: 'Noto Serif JP', serif;
  color: #32396F;
  font-weight: 700;
  text-decoration: underline;
}
.hospital_hospital div dl dd{
  width: 70%;
}
/* 郵便番号 */
.hospital_hospital div dl dd span{
  display: inline-block;
  width: 100px;
  font-size: 14px;
}

.hospital_hospital div dl dd a{
  display: inline-block;
  padding-left: 20px;
  color: #000;
  float: right;
}
.hospital_hospital div dl dd a:before{
  content: "TEL:";
  font-size: 11px;
}

/* 連携施設 */
.hospital_clinic section h3{
  margin: 0 20px 10px 10px;
  padding: 0 0 5px 5px;
  border-bottom: 1px solid #eee;
}

.hospital_clinic ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 60px 1%;
}
.hospital_clinic ul li{
  width: 33%;
  margin: 10px 0;
  position: relative;
  padding-left: 40px;
  color: #000;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}
.hospital_clinic ul li:before{
  content: "\e89e";
  font-family: 'Material Icons';
  color: #349643;
  position: absolute;
  left: 20px;
  top: 4px;
}
.hospital_clinic ul li a{
  color: #32396F;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  text-decoration: underline;
}

/* カスタマイズで追加。Wordpressで列数を設定できるようにする */
.one_col li{
  width: 100% !important;
}
.two_cols li{
  width: 50% !important;
}
.four_cols li{
  width: 25% !important;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media (max-width:900px) {
  /* 関連病院 */
  .hospital_hospital div dl{
    display: block;
  }
  .hospital_hospital div dl dt{
    width: 100%;
  }
  .hospital_hospital div dl dd{
    width: 100%;
  }
}

@media (max-width:768px) {
  /* 関連学会 */
  .hospital_academic_conference ul{
    margin: 0 0 50px 1%;
    flex-direction: column;
  }
  .hospital_academic_conference ul li{
    width: 100%;
  }
  .one_col li{
    width: 100% !important;
  }
  .two_cols li{
    width: 100% !important;
  }
  .four_cols li{
    width: 100% !important;
  }

  .hospital_hospital{
    margin-bottom: 50px;
  }

  .hospital_hospital div dl dd a{
    display: block;
    float: none;
    padding-left: 0;
  }
  .hospital_hospital div dl dd{
    padding-left: 20px;
    line-height: 1.5em;
    padding-bottom: 16px;
  }
  .hospital_hospital div dl dd span{
    display: block;
  }

  /* 連携施設 */
  .hospital_clinic ul li{
    width: 100%;
  }
  .hospital_clinic ul{
    flex-direction: column;
    margin: 0 0 50px 1%;
  }
}
/* -------------------------------------------------------------------------- */
/* 関連学会・関連病院  ↑                                                     */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* 個人情報保護方針  ↓                                                       */
/* -------------------------------------------------------------------------- */
.privacy_container{
  margin-bottom: 50px;
}

/* タイトル */
.privacy_container h2,
.privacy_inquiry h2{
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 20px;
  border-left: 3px solid #F5AB39;
  padding: 10px 0 10px 10px;
  border-bottom: 1px dotted #ccc;
}

/* お問い合わせはこちらまで */
.privacy_message{
  margin-bottom: 20px;
}

/* 問い合わせ先 */
.privacy_inquiry{
  border: 3px solid #eee;
  padding: 20px 40px;
}
/* スマホデザイン */
@media (max-width:768px) {
  /* タイトル */
  .privacy_container h2,
  .privacy_inquiry h2{
    font-size: 20px;
  }
  /* 問い合わせ先 */
  .privacy_inquiry{
    padding: 20px;
  }
}
/* -------------------------------------------------------------------------- */
/* 個人情報保護方針  ↑                                                       */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* 業績  ↓                                                                   */
/* -------------------------------------------------------------------------- */
/* 各タイトル */
.performance_container > section{
  margin-bottom: 100px;
}
.performance_container > section > section {
  margin-bottom: 30px;
}
.performance_container h2{
  margin-bottom: 20px;
  border-left: 3px solid #F5AB39;
  padding: 10px 0 10px 10px;
  border-bottom: 1px dotted #ccc;
  font-family: 'Noto Serif JP', serif;
}
.performance_container h2 span{
  font-size: 14px;
  padding-left: 5px;
}

.performance_container h3{
  margin-bottom: 20px;
  color: #fff;
  background-color: #32396F;
  padding: 5px 10px;
  font-family: 'Noto Serif JP', serif;
}
.performance_container h4{
  margin-bottom: 10px;
  border-left: 5px solid #32396F;
  padding: 7px 0 10px 10px;
  font-size: 18px;
  font-family: 'Noto Serif JP', serif;
  border-bottom: 1px solid #32396F;
}

/* 論文一覧のテーブルレイアウト */
.performance_reports_table{
  margin-bottom: 50px;
}
.performance_reports_table td{
  padding: 5px 0 10px 0;
}
.performance_reports_table td:nth-child(1){
  width: 60px;
  text-align: right;
  vertical-align: top;
  padding-right: 10px;
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  padding-top: 8px;
}
.performance_reports_table_en{
  border-bottom: 1px dotted #ccc;
  font-size: 16px;
  font-family: 'Hina Mincho', serif;
}
.performance_reports_table_jp{
  border-bottom: 1px dotted #ccc;
  font-size: 14px;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.8em;
}
.performance_reports_table tr:last-child td{
  border-bottom: none;
}


.performance_surgery_container{
  display: flex;
}
.performance_surgery_container > div{
  width: 50%;
}
/* 手術実績・総数のテーブルレイアウト */
.performance_surgery_table{
  border: 1px solid #ccc;
  border-collapse: collapse;
  width: 40%;
  margin: 0 auto;
}
.performance_surgery_table thead{
  background-color: #F9F6F2;
}
.performance_surgery_table td,
.performance_surgery_table th{
  border: 1px solid #dad5ce;
  padding: 10px 20px;
}
.performance_surgery_table td:nth-child(2),
.performance_surgery_table td:nth-child(3){
  text-align: right;
}
.performance_surgery_table tr:last-child{
  background-color: #F9F6F2;
  font-weight: bold;
}

.performance_surgery_detail_container{
  display: flex;
  flex-wrap: wrap;
}
.performance_surgery_detail_container section{
  width: 50%;
}
.performance_surgery_detail_container section h4{
  margin-bottom: 20px;
  border-left: 5px solid #32396F;
  padding-left: 5px;
  margin-left: 5%;
}
.performance_surgery_detail_container section table{
  width: 90%;
  margin: 0 auto 30px auto;
}
.performance_surgery_detail_container section table{
  border: 1px solid #ccc;
  border-collapse: collapse;
}
.performance_surgery_detail_container section table thead{
  background-color: #F9F6F2;
}
.performance_surgery_detail_container section table td,
.performance_surgery_detail_container section table th{
  border: 1px solid #dad5ce;
  padding: 10px 20px;
}
.performance_surgery_detail_container section table td:nth-child(2){
  text-align: right;
  width: 100px;
}

.performance_past_lists{
  display: flex;
  margin: 30px 0;
}
.performance_past_lists li a{
  display: block;
  background-color: orange;
  color: #fff;
  padding: 10px 20px 10px 44px;
  border-radius: 10px;
  margin: 0 20px;
  position: relative;
}
.performance_past_lists li a:before{
  content: "\f009";
  font-family: 'Material Icons';
  color: #fff;
  position: absolute;
  left: 14px;
  top: 9px;
  font-size: 26px;
}


/* スマホデザイン */
@media (max-width:768px) {
  .performance_surgery_container{
    flex-direction: column;
  }
  .performance_surgery_container > div{
    width: 100%;
  }
  /* 手術実績・総数のテーブルレイアウト */
  .performance_surgery_table{
    width: 100%;
  }
  .performance_surgery_detail_container{
    flex-direction: column;
  }
  .performance_surgery_detail_container section{
    width: 100%;
  }
  .performance_past_lists{
    flex-direction: column;
  }
  .performance_past_lists li{
    margin-bottom: 20px;
  }
}
/* -------------------------------------------------------------------------- */
/* 業績  ↑                                                                   */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* お問い合わせ  ↓                                                           */
/* -------------------------------------------------------------------------- */

.inquiry_container{
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  margin: 0 auto;
}

.inquiry_links{
  display: flex;
  border-bottom: 5px solid #5ab4bd;
  background-color: #d9d9d9;
  font-size: 16px;
  text-align: center;
  color: #565656;
  font-weight: bold;
  transition: all 0.2s ease;
}
.inquiry_links li{
  width: calc(100%/3);
}
.inquiry_links li a{
  display: block;
  padding: 20px 5px 15px 5px;
  color: #565656;
}

/* 選択されているもの */
.inquiry_active{
  background-color: #5ab4bd;
  color: #fff !important;
}

.inquiry_container input,
.inquiry_container textarea{
  border: 1px solid #ccc;
  padding: 5px;
  font-size: 16px;
  margin: 5px 0;
}

/* 各フォーム上部のメッセージ */
.inquiry_message{
  padding-bottom: 10px;
}

.inquiry_message span{
  font-size: 1.1em;
  font-weight: 500;
}

/* 各入力項目はpタグで囲われてしまうので */
.tab_content_description p{
  margin-bottom: 14px;
}

/* 必須入力項目 */
.inquiry_attention{
  color: #bf0707;
  font-size: 14px !important;
}

/*中身のスタイル*/
.tab_content {
  padding: 40px 40px 0;
  overflow: hidden;
}

/* ボタン表示の外枠 */
.inquiry_btn_container{
  display: flex;
}

/* 確定ボタン */
.tab_content_description input[type=submit]{
  background-color: #F5AB39;
  color: #fff;
  border: 0;
  padding: 10px 40px;
}
.tab_content_description input[type=submit]:hover{
  cursor: pointer;
}

/* 戻るボタン */
.inquiry_back{
  background-color: #ccc !important;
  margin-right: 20px !important;
}

/* スマホデザイン */
@media (max-width:768px) {
  .inquiry_links{
    font-size: 12px;
  }

  .tab_content_description input[type=text],
  .tab_content_description input[type=email],
  .tab_content_description textarea{
    width: 100%;
  }
}
/* -------------------------------------------------------------------------- */
/* お問い合わせ  ↑                                                           */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* 入局希望者へのメッセージ  ↓                                               */
/* -------------------------------------------------------------------------- */
/* h2 */
.student_container h2{
  margin-bottom: 20px;
  border-left: 3px solid #F5AB39;
  padding: 10px 0 10px 10px;
  border-bottom: 1px dotted #ccc;
}

/* 外枠 */
.student_container > section{
  margin-bottom: 50px;
}

/* 泌尿器科へいらっしゃい */
.student_top_message{
  display: flex;
  margin-bottom: 50px;
}
.student_top_message > p span{
  display: block;
  text-align: center;
  color: #349E42;
  font-size: 24px;
  font-weight: 500;
  margin: 10px 0 30px 0;
}
.student_top_message > p{
  width: 60%;
  box-sizing: border-box;
  margin-right: 5%;
}
.student_top_message div{
  width: 40%;
}
.student_top_message div img{
  width: 100%;
}

/* 泌尿器科の魅力とは？ */
.student_whatis{
  display: flex;
  align-items: flex-start;
}
.student_whatis ul{
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  order: 1;
}
.student_whatis ul li{
  width: 50%;
}
.student_whatis ul li img{
  width: 100%;
  box-sizing: border-box;
  padding: 0 5px 5px 0;
}
.student_whatis p{
  width: 60%;
  order: 2;
  box-sizing: border-box;
  padding: 0 0 0 20px;
}

/* リンクボタン */
.student_btn_container{
  display: flex;
  width: 760px;
  margin: 0 auto;
  justify-content: space-between;
}
.student_btn_container li a{
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-sizing: border-box;
  width: 360px;
  display: block;
  text-align: center;
  position: relative;
  right: 0;
}
.student_btn_container li a span{
  font-size: 1.2em;
  padding-right: 5px;
  font-weight: 500;
}
.student_btn_container li a:after{
  content: "\e762";
  font-family: 'Material Icons';
  position: absolute;
  color: #fff;
  font-size: 30px;
  top: 42px;
  right: 20px;
}
.student_btn_program{
  background-color: #349643;
}
.student_btn_form{
  background-color: #F5AB39;
}

/* スマホデザイン */
@media (max-width:768px) {
  /* h2 */
  .student_container h2{
    margin-bottom: 20px;
    border-left: 3px solid #F5AB39;
    padding: 10px 0 10px 10px;
    border-bottom: 1px dotted #ccc;
  }

  /* 外枠 */
  .student_container > section{
    margin-bottom: 50px;
  }

  /* 泌尿器科へいらっしゃい */
  .student_top_message{
    display: flex;
    margin-bottom: 50px;
  flex-direction: column;
  }
  .student_top_message > p span{
    display: block;
    text-align: center;
    color: #349E42;
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0 30px 0;
  }
  .student_top_message > p{
  width: 100%;
    box-sizing: border-box;
  margin-right: 0;
  padding-bottom: 30px;
  }
  .student_top_message div{
  width: 100%;
  }
  .student_top_message div img{
  width: 90%;
  display: block;
  margin: 0 auto;
  }

  /* 泌尿器科の魅力とは？ */
  .student_whatis{
    display: flex;
    align-items: flex-start;
  flex-direction: column;
  }
  .student_whatis ul{
  width: 100%;
    display: flex;
    flex-wrap: wrap;
  order: 2;
  }
  .student_whatis ul li{
  width: 50%;
  }
  .student_whatis ul li img{
    width: 100%;
    box-sizing: border-box;
    padding: 0 5px 5px 0;
  }
  .student_whatis p{
  width: 100%;
  order: 1;
    box-sizing: border-box;
  padding: 0 0 30px 0;
  }

  /* リンクボタン */
  .student_btn_container{
    display: flex;
  width: 100%;
  flex-direction: column;
    margin: 0 auto;
    justify-content: space-between;
  }
  .student_btn_container li a{
    color: #fff;
  padding: 30px 0;
    border-radius: 10px;
    box-sizing: border-box;
  width: 100%;
    display: block;
    text-align: center;
    position: relative;
    right: 0;
  font-size: 14px;
  max-width: 400px;
  margin: 0 auto 30px auto;
  }
  .student_btn_container li a span{
  font-size: 1.2em;
    padding-right: 5px;
    font-weight: 500;
  }
  .student_btn_container li a:after{
    content: "\e762";
    font-family: 'Material Icons';
    position: absolute;
    color: #fff;
    font-size: 30px;
  top: 38 px;
  right: 10px;
  }
  .student_btn_program{
    background-color: #349643;
  margin-bottom: 20px;
  }
  .student_btn_form{
    background-color: #F5AB39;
  }
}
/* -------------------------------------------------------------------------- */
/* 入局希望者へのメッセージ  ↑                                               */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* 研修プログラム  ↓                                                         */
/* -------------------------------------------------------------------------- */
/* h2 */
.program_container h2{
  margin-bottom: 20px;
  border-left: 3px solid #F5AB39;
  padding: 10px 0 10px 10px;
  border-bottom: 1px dotted #ccc;
}
.program_container h3{
  margin-bottom: 20px;
  border-left: 5px solid #32396F;
  padding-left: 5px;
  position: relative;
}
.program_container h3:after{
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  background-color: #32396F;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.program_container > section{
  margin-bottom: 50px;
}

/* 目的 */
.program_aim{
  width: 80%;
  display: block;
  margin: 20px auto 0 auto;
}

/* 目標 */
.program_goal{
  display: flex;
  align-items: flex-start;
}
.program_goal > div{
  width: 60%;
}
.program_goal ol{
  list-style: decimal;
  margin: 30px 0 30px 40px;
  line-height: 1.8em;
}
.program_goal dl{
  width: 40%;
  display: flex;
  flex-direction: column-reverse;
  box-sizing: border-box;
  margin-left: 30px;
}
.program_goal dl dt{
  text-align: center;
  font-weight: 500;
  margin-top: 10px;
}
.program_goal dl dd ul{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: 15px;
}
.program_goal dl dd ul li{
  width: 48%;
  height: 100px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 10px;
  margin: 3px;
}
.program_goal dl dd ul li span{
  display: block;
  margin: 0 auto;
  text-align: center;
}
.program_goal dl dd ul li:nth-child(1){
  background-color: #f8cde3;
}
.program_goal dl dd ul li:nth-child(2){
  background-color: #f5d050;
}
.program_goal dl dd ul li:nth-child(3){
  background-color: #bae9a5;
}
.program_goal dl dd ul li:nth-child(4){
  background-color: #a3def4;
}

/* 特色 */
.program_feature{
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  margin-bottom: 50px;
}
.program_feature a{
  display: block;
  width: 40%;
}
.program_feature a img{
  width: 100%;
}
.program_feature p{
  margin-left: 30px;
  width: 60%;
  box-sizing: border-box;
}

.program_feature_course{
  display: flex;
}
.program_feature_course section{
  width: 50%;
  box-sizing: border-box;
  padding: 10px 20px;
}
.program_feature_course img{
  width: 100%;
  margin-top: 30px;
}

/* 専攻医研修ローテーション */
.program_schedule{
  display: flex;
  margin: 30px 0 50px 0;
}
.program_schedule > li{
  margin: 5px;
  width: 25%;
  background-color: #f9f6f1;
}
.program_schedule li span{
  display: block;
}
.program_schedule li ul{
  font-size: 13px;
  list-style: disc;
  margin-left: 16px;
  padding: 0 10px 20px 10px;
}
.program_schedule li:nth-child(1) span:nth-child(1),
.program_schedule li:nth-child(4) span:nth-child(1){
  text-align: center;
  color: #fff;
  background-color: #32396F;
  padding: 5px 0;
}
.program_schedule li:nth-child(2) span:nth-child(1),
.program_schedule li:nth-child(3) span:nth-child(1){
  text-align: center;
  color: #fff;
  background-color: #F5AB39;
  padding: 5px 0;
}
.program_schedule li span:nth-child(2){
  padding: 10px;
  font-weight: 500;
}

/* 連携施設について */
.program_facility{
  display: flex;
  align-items: flex-start;
}
.program_facility p{
  width: 50%;
  box-sizing: border-box;
  margin-right: 20px;
}
.program_facility ul{
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}
.program_facility ul li{
  width: 50%;
  padding: 3px;
  box-sizing: border-box;
}
.program_facility ul li img{
  width: 100%;
}
/* Google Map */
.program_container iframe{
  width: 100%;
  height: 600px;
  margin: 30px 0;
}

.program_btn_link img{
  width: 100%;
}

/* 入局後について */
.program_after > section{
  padding-bottom: 50px;
}
.program_after_message{
  margin-bottom: 50px;
}
/* 取得可能な認定医 */
.program_certifying_physician{
  display: flex;
}
.program_certifying_physician ul{
  width: 50%;
  list-style: disc;
  margin-left: 30px;
  line-height: 2em;
}
.program_certifying_physician a{
  display: block;
  width: 50%;
}
.program_certifying_physician a img{
  width: 100%;
}

/* 留学 */
.program_study_abroad{
  display: flex;
  flex-direction: row-reverse;
}
.program_study_abroad ul{
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}
.program_study_abroad ul li{
  width: 50%;
}
.program_study_abroad ul li img{
  width: 96%;
  margin: 2%;
}
.program_study_abroad p{
  width: 50%;
  box-sizing: border-box;
  margin-left: 30px;
}

/* 研修に関するお問い合わせボタン */
/* 入局希望者へのメッセージで使っているクラスを流用 */
/* 背景色のみ変更する */
.student_btn_program_download{
  background-color: #065a82;
}
/* スマホデザイン */
@media (max-width:768px) {
  /* h2 */
  .program_container h2{
    margin-bottom: 20px;
    border-left: 3px solid #F5AB39;
    padding: 10px 0 10px 10px;
    border-bottom: 1px dotted #ccc;
  }
  .program_container h3{
    margin-bottom: 20px;
    border-left: 5px solid #32396F;
    padding-left: 5px;
  }
  .program_container > section{
    margin-bottom: 50px;
  }

  /* 目的 */
  .program_aim{
    width: 100%;
    display: block;
    margin: 20px auto 0 auto;
  }

  /* 目標 */
  .program_goal{
    display: flex;
    align-items: flex-start;
  flex-direction: column;
  }
  .program_goal > div{
  width: 100%;
  }
  .program_goal ol{
    list-style: decimal;
    margin: 30px 0 30px 40px;
    line-height: 1.8em;
  }
  .program_goal dl{
  width: 100%;
    display: flex;
    flex-direction: column-reverse;
    box-sizing: border-box;
  margin-left: 0;
  margin-top: 30px;
  }
  .program_goal dl dt{
    text-align: center;
    font-weight: 500;
    margin-top: 10px;
  }
  .program_goal dl dd ul{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    font-size: 15px;
  }
  .program_goal dl dd ul li{
    width: 48%;
    height: 100px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 10px;
    margin: 3px;
  }
  .program_goal dl dd ul li span{
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  .program_goal dl dd ul li:nth-child(1){
    background-color: #f8cde3;
  }
  .program_goal dl dd ul li:nth-child(2){
    background-color: #f5d050;
  }
  .program_goal dl dd ul li:nth-child(3){
    background-color: #bae9a5;
  }
  .program_goal dl dd ul li:nth-child(4){
    background-color: #a3def4;
  }

  /* 特色 */
  .program_feature{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    margin-bottom: 50px;
  flex-direction: column;
  }
  .program_feature a{
  width: 100%;
  margin-top: 30px;
  }
  .program_feature p{
  margin-left: 0;
  width: 100%;
  }

  .program_feature_course{
    display: flex;
  flex-direction: column;
  }
  .program_feature_course section{
  width: 100%;
    box-sizing: border-box;
    padding: 10px;
  margin-bottom: 30px;
  }
  .program_feature_course img{
    width: 100%;
    margin-top: 30px;
  }

  /* 専攻医研修ローテーション */
  .program_schedule{
    display: flex;
    margin: 30px 0 50px 0;
  flex-direction: column;
  }
  .program_schedule > li{
    margin: 0 0 20px 0;
  width: 100%;
    background-color: #f9f6f1;
  }
  .program_schedule li span{
    display: block;
  }
  .program_schedule li ul{
    font-size: 13px;
    list-style: disc;
    margin-left: 16px;
    padding: 0 10px 20px 10px;
  }
  .program_schedule li:nth-child(1) span:nth-child(1),
  .program_schedule li:nth-child(4) span:nth-child(1){
    text-align: center;
    color: #fff;
    background-color: #32396F;
    padding: 5px 0;
  }
  .program_schedule li:nth-child(2) span:nth-child(1),
  .program_schedule li:nth-child(3) span:nth-child(1){
    text-align: center;
    color: #fff;
    background-color: #F5AB39;
    padding: 5px 0;
  }
  .program_schedule li span:nth-child(2){
    padding: 10px;
    font-weight: 500;
  }

  /* 連携施設について */
  .program_facility{
    display: flex;
    align-items: flex-start;
  flex-direction: column;
  }
  .program_facility p{
  width: 100%;
    box-sizing: border-box;
    margin-right: 20px;
  margin-bottom: 30px;
  }
  .program_facility ul{
  width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .program_facility ul li{
    width: 50%;
    padding: 3px;
    box-sizing: border-box;
  }
  .program_facility ul li img{
    width: 100%;
  }
  /* Google Map */
  .program_container iframe{
    width: 100%;
    height: 600px;
    margin: 30px 0;
  }

  .program_btn_link img{
    width: 100%;
  }

  /* 取得可能な認定医 */
  .program_certifying_physician{
    display: flex;
  flex-direction: column;
  }
  .program_certifying_physician ul{
  width: 100%;
    list-style: disc;
    margin-left: 30px;
    line-height: 2em;
  }
  .program_certifying_physician a{
    display: block;
  width: 90%;
  margin: 30px auto;
  }
  .program_certifying_physician a img{
    width: 100%;
  }

  /* 留学 */
  .program_study_abroad{
    display: flex;
  flex-direction: column;
  }
  .program_study_abroad ul{
  width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .program_study_abroad ul li{
  width: 100%;
  }
  .program_study_abroad ul li img{
    width: 96%;
    margin: 2%;
  }
  .program_study_abroad p{
  width: 100%;
    box-sizing: border-box;
  margin-left: 0;
  margin-bottom: 20px;
  }
}
/* -------------------------------------------------------------------------- */
/* 研修プログラム  ↑                                                         */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* 研究会案内  ↓                                                           */
/* -------------------------------------------------------------------------- */
.information{
  padding-bottom: 50px;
}
.information h2{
  margin-bottom: 20px;
  border-left: 3px solid #F5AB39;
  padding: 10px 0 10px 10px;
  border-bottom: 1px dotted #ccc;
}
.information dl{
  padding-top: 10px;
  padding-left: 34px;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px dotted #e9e1cf;
  line-height: 2em;
}
.information dl dt:before{
  content: "\e89e";
  font-family: 'Material Icons';
  color: #349643;
  position: absolute;
  left: -20px;
  top: 1px;
}
.information dl dt a{
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: #32396F;
  text-decoration: underline;
}
.information p{
  padding: 10px 16px 20px 16px;
}
.information ul{
  padding-left: 50px;
}
.information ul li{
  line-height: 2.8em;
}
.information ul li:before{
  content: "\e89e";
  font-family: 'Material Icons';
  color: #349643;
  position: absolute;
  left: -20px;
  top: 1px;
}
.information ul li a{
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: #32396F;
  text-decoration: underline;
}

#pwbox-11655{
  border: 1px solid #ccc;
  padding: 5px;
}
.post-password-form p:first-child{
  border: 1px solid #ccc;
  padding: 30px;
  margin-bottom: 20px;
}
.post-password-form input[type="submit"]{
  padding: 3px;
  border: 1px solid #ccc;
}

/* 画像 */
.information img{
  display: block;
  width: 80%;
  margin: 3% auto;
}
/* -------------------------------------------------------------------------- */
/* 研究会案内  ↑                                                           */
/* -------------------------------------------------------------------------- */
