@charset "UTF-8";

/* ------------------------- common-sp ------------------------- */

/* ------------------ basic ------------------ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 100%; /* 基本は16px */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: #fff;
  line-height: 1.6;
}

body {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  /* スマホ横揺れ防止 */
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

p:empty {
  display: none;
}

/* ========================================
   Utility & Components
   ======================================== */

/* スマホの固定ヘッダー高さ分（約60px） */
[id] {
  scroll-margin-top: 70px; 
}

#wrap {
  width: 100%;
  background: #fff;
  overflow: hidden; /* 横はみ出し防止 */
}

.fadein {
  opacity : 0;
  transform : translate(0, 40px);
  transition : all 1s;
} 
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}


/* ------------------ header ------------------ */
      
header#global-header {
  position: fixed;
  width: 100%;
  height: 60px; /* PCより少し低く */
  background: #fff;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

header#global-header .inner {
  margin: 0 auto;
  width: 100%;
  padding: 0 15px; /* 左右の余白 */
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

#company-logo {
  display: flex;
  align-items: center;
  z-index: 101;
}

#company-logo a img {
  width: min(200px,60%);
  height: auto;
}
header#global-header .inner a.contact {
  display: none; 
}


/* ------------ article ------------ */

body.home article {
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
}

.page-template article,
.page-template-default article {
  margin: 0 auto;
  padding: 36px 0 60px;
  width: 100%;
  color: #2B2B2B;
}

.archive article,
.single article {
  margin: 0 auto;
  padding: 36px 20px 60px;
  width: 100%;
  color: #2B2B2B;
}


/* --- Whatsnew List --- */

.whats-new-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.whats-new-list ul {
  width: 100%;
  padding: 0 15px;
}

.whats-new-list ul li {
  display: flex;
  flex-wrap: wrap; /* スマホでは折り返す */
  align-items: center;
  width: 100%;
  padding: 1rem;
  margin: 0 auto 1rem;
  background: #fff;
  border-radius: 4px;
  list-style: none;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.whats-new-list ul li span {
  flex-shrink: 0;
}

span.news-date {
  font-size: 0.8rem;
  margin-right: 10px;
  color: #666;
}

span.news-cate {
  font-size: 0.8rem;
  margin-right: 10px;
  padding: 2px 8px;
  background: #eee;
  border-radius: 3px;
}

p.news-title {
  width: 100%; /* タイトルは改行して全幅に */
  flex-basis: 100%;
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #262626;
  /* 複数行表示を許容するか、省略するか */
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 2行まで表示 */
}

.whats-new-list em.new-mark {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  font-size: 9px;
  color: #fff;
  background: #e53935;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* ------- Contact Us -------- */

#contact-us {
  padding: 4rem 15px; /* 左右余白確保 */
  width: 100%;
  min-height: auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bg-contact01 {
  background: url("https://tsukubakinenqq.com/wp-content/uploads/2025/12/bg-contactus-scaled.avif") no-repeat center;
  background-size: cover;
}
.bg-contact02 {
  background: url("https://tsukubakinenqq.com/wp-content/uploads/2026/01/bg-contactus02-scaled.avif") no-repeat center;
  background-size: cover;
}
.full-width {
  width: 100%;
  margin-inline: 0;
}

#contact-us .inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* 縦並び */
  align-items: center;
  gap: 40px;
}

#contact-us {

  & .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 2rem;
    line-height: 1.4;
  }

  & .section-title .title-en {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0.1rem;
    color: #fff;
    text-shadow: 0 0 3px #000;
    position: relative; 
    margin-bottom: 15px; 
    padding-bottom: 10px; 
  }

  & .section-title .accent {
    color: #e53935;
  }

  & .underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180%;
    height: 4px;
    background: #fff;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    display: block;
  }

  & .section-title .title-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 0 3px #000;
  }

  & .section-text {
    text-align: left;
    max-width: 70%;
    margin: 0 auto 3rem;
  }

  & .section-text p {
    font-size: 1rem;
    line-height: 1.8;
  }
}


  #contact-us .inner div.primary {
    display: flex;
    flex-direction: column;
    margin: 0;
    order: 1;
  }

  #contact-us .inner div.secondary {
    display: flex;
    flex-direction: column;
    margin: 0;
    order: 2;
  }



/* popup base */


.pum-theme-451 .pum-container,
.pum-theme-default-theme .pum-container {
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background-color: none;
}

.pum-theme-451 .pum-content + .pum-close,
.pum-theme-default-theme .pum-content + .pum-close {
  position: absolute;
  height: auto;
  width: auto;
  top: 4px;
  left: auto;
  right: 4px;
  bottom: auto;
  padding: 10px 14px;
  color: #2b2b2b;
  font-family: inherit;
  font-weight: 400;
  font-size: 1.4rem;
  font-style: inherit;
  line-height: 1.4rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
  background-color: #fff;
}




/* ------ お電話でのお問い合わせ ------ */
.tel-contact-wrapper {
  color: #fff;
	text-align: left;
	max-width: 440px;
	margin: 0 0 3rem;
}

/* --- タイトル --- */
.tel-contact-title {
  font-size: 1.2rem;
  font-weight: normal;
  margin: 0 0 1rem 0; /* 下の余白 */
  letter-spacing: 0.05rem;
}

/* --- コンテンツエリア（アイコンと番号の横並び） --- */
.tel-contact-container {
  display: flex;
  align-items: center; /* 上下中央揃え */
  gap: 30px; /* アイコンと文字の間隔 */
}

/* --- アイコンエリア --- */
.tel-contact-icon {
  width: 80px;  /* アイコンの幅（画像に合わせて調整） */
  height: 80px; /* 高さ */
  flex-shrink: 0; /* 縮まないように固定 */
  background-color: #fff;
  display: flex; align-items: center; justify-content: center;
}

/* --- 電話番号エリア --- */
.tel-contact-info {
  display: flex;
  flex-direction: column; /* 縦並び */
  gap: 10px; /* 上の番号と下の番号の間隔 */
}

/* 個別の電話番号行 */
.tel-row {
  color: #fff; /* 文字色 */
  text-decoration: none; /* 下線を消す */
  display: flex;
  align-items: baseline; /* 数字と（直通）の下のラインを揃える */
  line-height: 1;
  transition: opacity 0.3s;
}

/* 電話番号（大文字） */
.tel-number {
  font-size: min(2.2rem,6.4vw);
  font-weight: 700;
}

/* （直通）（代表）の文字 */
.tel-desc {
  font-size: 0.8rem;
  font-weight: normal;
}





/* ------ メールでのお問い合わせ------ */
.mail-contact-wrapper {
  color: #fff;
	text-align: left;
}

/* --- タイトル --- */
.mail-contact-title {
  font-size: 1.2rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
  letter-spacing: 0.05em;
}

/* --- リンクボタン全体 --- */
.btn-mail-contact {
display: flex;
justify-content: center;
align-items: center;
position: relative;
max-width: 420px;
padding: 1.2rem 2rem;
border: 1px solid #fff;
color: #fff;
text-decoration: none;
background-color: transparent;
transition: background-color 0.3s ease;
}

/* --- テキストグループ --- */
.mail-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 30px; 
}

/* メインテキスト（問い合わせフォーム） */
.mail-main-text {
  font-size: min(6vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* サブテキスト（病院名など） */
.mail-sub-text {
  font-size: min(3.6vw, 1rem);
  font-weight: normal;
  opacity: 0.9;
}

/* --- SVGアイコン --- */
.outlink-icon {
  position: absolute; /* ボタン内で絶対配置 */
  right: 20px;        /* 右端からの距離 */
  top: 50%;
  transform: translateY(-50%); /* 上下中央補正 */
  width: 30px;
  height: 30px;
  display: flex; /* SVGのズレ防止 */
}





/* ------救急科の募集要項------ */
.recruit-contact-wrapper {
  color: #fff;
	text-align: left;
}

/* --- タイトル --- */
.recruit-contact-title {
  font-size: 1.2rem;
  font-weight: normal;
  margin: 0 0 1rem 0;
}



/* --- リクルートサイト　リンクボタン --- */
.btn-recruit-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 420px;
  padding: 1.2rem 2rem;
  color: #fff;
  text-decoration: none;
  background-color: #fff;
  transition: background-color 0.3s ease;
}
  /* --- テキストグループ --- */
  .recruit-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 40px; 
    color: #095073;
  }

  /* メインテキスト（問い合わせフォーム） */
  .recruit-main-text {
    font-size: min(6vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  /* サブテキスト（病院名など） */
  .recruit-sub-text {
    font-size: min(3.6vw, 1rem);
    font-weight: normal;
    opacity: 0.9;
  }






/* ------------------ edit ------------------ */

div.edit {
  text-align: center;
  padding: 16px 0;
}




/* ------------------ footer ------------------ */

#global-footer {
  width: 100%;
  background: #F6F6F6;
}

/* ------- footer-banner -------- */

.footer-banner {
  width: 100%;
  background: #fff;
}

.footer-banner .inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 15px;
  gap: 20px;
}
.footer-banner .inner a img {
  width: 300px;
}

/* ------- footer-links -------- */
.footer-links .inner {
  flex-direction: column;
  padding: 30px 15px;
}



/* ------- footer-copyright -------- */

.footer-copyright {
  width: 100%;
  padding: 16px;
  flex-direction: column;
  background: url(https://tsukubakinenqq.com/wp-content/uploads/2025/12/bg-nav.png) repeat;
}

.footer-copyright .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  color: #fff;
}

.footer-copyright a {
  color: #fff;
}




/* ---------- for page ---------- */

body.achievement #wrap,
body.clinical-research #wrap,
body.training-program #wrap,
body.recruitment-flow #wrap,
body.recruitment #wrap,
body.archive #wrap,
body.single #wrap {
  background: #F7F7F6;
}

body .entry {
  background: #fff;
  margin: 40px 0;
  padding: 20px;
}
  body .entry h2 {
    background: #fff;
    margin-bottom: 40px;
  }
  body .entry p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

body .entry-archive {
  margin: 40px 0;
  padding: 20px 0;
}




/* ---------- header for page ---------- */

header#pagetitle {
  display: flex;
  justify-content: center;
  align-items:center;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: 2rem;
  background-size: cover;
  background-repeat: no-repeat;
}

      header#pagetitle h1 {
        display:block;
        width: 100%;
        color: #fff;
        font-size: 1.4rem;
        font-weight: 600;
        letter-spacing: 1px; 
        margin: 0;
        text-shadow: 
           1px  1px 4px rgba(0, 0, 0, 0.46),
          -1px  1px 4px rgba(0, 0, 0, 0.46),
           1px -1px 4px rgba(0, 0, 0, 0.46),
          -1px -1px 4px rgba(0, 0, 0, 0.46),
           1px  0px 4px rgba(0, 0, 0, 0.46),
           0px  1px 4px rgba(0, 0, 0, 0.46),
          -1px  0px 4px rgba(0, 0, 0, 0.46),
           0px -1px 4px rgba(0, 0, 0, 0.46); 
      }

      body header#pagetitle {
        background-image: url('https://tsukubakinenqq.com/wp-content/uploads/2026/01/tit-other-scaled.avif');
      }





/* --- meta --- */
.metadeta {
  margin: 2rem 0 0;
}
.metadeta span {
  display: block; /* 縦並び */
  margin: 0 0 0.5rem 0;
}



/*--------- pagination ----------*/

.pagination {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    margin: 0 5px;
    padding: 0 5px;
    background-color: #e6e6e6;
    color: #2B2B2B;
    text-decoration: none;
    font-size: 16px;
    border-radius: 2px;
    transition: background-color 0.3s;
    box-sizing: border-box;
}

.pagination a.page-numbers:hover {
    background-color: #d4d4d4;
}

.pagination .current {
    background-color: #0088cc;
    color: #fff;
    font-weight: bold;
}

.pagination .dots {
    background-color: transparent;
    border: none;
    color: #2B2B2B;
}

.pagination .prev,
.pagination .next {
    background-color: transparent;
    font-size: 20px;
}
/*--------- prevNext ----------*/

.prev-next {
	width:100%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	/*background: #fcc;*/
}
.prev-next a.prev {
  display: flex;
  justify-content: space-between;
	width: 50%;
	padding: 20px 30px 20px 20px;
	border-top:#efefef 1px solid;
	border-bottom:#efefef 1px solid;
	text-decoration:none;
	position:relative;
}
.prev-next a.next {
  display: flex;
  justify-content: space-between;
	width: 50%;
	padding: 20px 20px 20px 30px;
	border-top:#efefef 1px solid;
	border-bottom:#efefef 1px solid;
	text-decoration:none;
	position:relative;
}

.prev-next a.prev{
  border-right: #efefef 1px dotted;
}

  .prev-next-body {
		width: 80%;
	}

	.prev-next span {
		display: block;
		font-size: 10px;
		line-height:1;
		color: #aaa;
		margin: 4px 0 16px;
	}
	.prev-next p {
		font-size: 12px;
		line-height:1.4;
		margin: 0;
	}

  /* for avif on common post */
	.prev-next img {
		display: none;
	}
  /* for svg on journal-club */
	.prev-next .report-icon-box {
		display: none;
	}




/* ---------------------------------------- */
/* ------------- flex layout -------------- */
/* ---------------------------------------- */

/* スマホでは基本的に縦並びにするユーティリティ */
.flexLayout {
  flex-direction: column; 
}
.flexLayout div img,
.flexLayout figure img {
  width: 100%;
}

/* 幅指定クラスのリセット */
.item100, .item64, .item60, .item48, .item44, .item40, .item34, .item30 {
  width: 100%;
}


/* ---------------------------------------- */
/* ------------ margin padding ------------ */
/* ---------------------------------------- */

.m20 { margin:20px !important;}
.m30 { margin:30px !important;}
.m40 { margin:40px !important;}
.m50 { margin:50px !important;}

.mt20 { margin-top:20px !important;}
.mt30 { margin-top:30px !important;}
.mt40 { margin-top:40px !important;}
.mt50 { margin-top:50px !important;}
.mt80 { margin-top:80px !important;}


.p10 { padding:10px !important;}
.p20 { padding:20px !important;}
.p30 { padding:30px !important;}
.p40 { padding:40px !important;}
.p50 { padding:50px !important;}
.p60 { padding:60px !important;}
.p70 { padding:70px !important;}
.p80 { padding:80px !important;}
.p90 { padding:90px !important;}
.p100 { padding:100px !important;}
.p110 { padding:110px !important;}
.p120 { padding:120px !important;}

/* ---------- color ---------- */

.col-blue { color: #3155a4!important; }
.col-red { color: #cf001b !important; }
.col-orange { color:#FF8139 !important; }
.col-green { color:#ededed !important; }
.col-indblue { color: #2b4e76 !important; }
.col-white { color: #fff !important; }


/* ---------- text ---------- */

.mid { font-size: 2rem!important; }
.mid3rem { font-size: 3rem!important; }



/* ---------- align ---------- */

.tal { text-align:left;}
.tar { text-align:right;}
.tac { text-align:center;}



/* ---------- break ---------- */

    .brsp { display: block; }
		.brpc { display: none; }









/* ------------------------- nav for sp ------------------------- */


/* hamburger */

.hamburger {
  position:fixed;
  right: 2vw;
  top: 12px;
  width: 50px;
  height: 40px;
  cursor: pointer;
  z-index: 9999;
}

  .hamburger__line {
    position: absolute;
    width: 50px;
    height: 1px;
    right: 0;
    background-color: #999;
    transition: all 0.3s;
  }

  .hamburger__line--1 {
    top: 1px;
  }

  .hamburger__line--2 {
    top: 18px;
  }

  .hamburger__line--3 {
    top: 36px;
  }

  /*ハンバーガーがクリックされたら*/
  .open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 18px;
  }

  .open .hamburger__line--2 {
    opacity: 0;
  }

  .open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 18px;
  }


  /* nav menu-container
  =================================== */
  .menu-container {
    position: fixed;
    right: -100%;
    top: 60px;
    width: 100%;
    height: 100vh;
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto;
    padding: 20px 20px 200px;
    background: url(https://tsukubakinenqq.com/wp-content/uploads/2025/12/bg-nav.png);
  }

  .open .menu-container {
    right: 0;
  }


  /* black-bg(ハンバーガーメニュー解除用bg) */
  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    opacity: 0.5;
    visibility: hidden; 
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
  }

  /*ハンバーガーメニューが開いたら表示*/
  .open .black-bg {
    visibility: visible;
    opacity: 0.8;
  }


  /* ------------ nav style ------------ */

  nav#global-nav > ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    padding: 0;
    background: #fff;
    border-radius: 8px;
  }
  nav#global-nav ul li {
    width: 100%;
    height: auto;
    list-style: none;
    font-weight: 300;
    position: relative;
  }

/*
    nav#global-nav ul li:first-child {
      border: none;
    }
    nav#global-nav ul.sub-menu li {
      border: none;
    }
*/
    nav#global-nav ul > li.menu-item-has-children {
      border-top: 1px solid #ccc;
    }
      nav#global-nav ul > li.menu-item-has-children > a {
        font-weight: 600;
        margin-left: 1rem;
      }


    nav#global-nav ul.sub-menu {
      padding: 0 0 0 20px;
    }
    nav#global-nav ul > li.menu-item-home::after,
    nav#global-nav ul > li:not(.menu-item-has-children)::after,
    nav#global-nav ul.sub-menu li::after {
      content: '';
      width: 8px;
      height: 8px;
      border-top: 2px solid #262626;
      border-right: 2px solid #262626;
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%) rotate(45deg);
      transition: all 0.3s ease;
    }




    nav#global-nav ul > li a {
      display: block;
      padding: 20px;
      color: #2B2B2B;
    }
        nav#global-nav ul li ul li a {
          display: flex;
          justify-content: flex-start;
          align-items: center;
        }
        nav#global-nav ul li ul li a img {
          display: block;
          width: 16%;
          margin-right: 12px;
        }
        nav#global-nav ul li ul li a span {
          display: block;
        }




nav#global-nav .sp-contact a.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-size: 1rem;
  font-weight: 400;
  color: #0081C2;
  border: 1px solid #0081C2;
  background: #fff;
  border-radius: 30px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}



/*--- footer-nav ---*/

#global-footer nav {
  display: block;
  width: 100%;
}

#footer-nav a {
  position: relative;
  color: #262626;
  text-decoration: none;
}


#footer-nav ul {
  width: 100%;
  padding: 0;
}


#footer-nav ul li {
  text-align: center;
  position: relative;
  font-size: 1rem;
  padding: 1rem 0;
  list-style: none;
}
#footer-nav ul li a {
  display: block;
}

#menu-footer-nav > .menu-item-has-children > a {
    font-weight: 600;
    margin-left: 1rem;
}

#menu-footer-nav > li:not(.menu-item-has-children)::after,
#footer-nav ul.sub-menu li::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #262626;
  border-right: 2px solid #262626;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}



/* Child */
#footer-nav ul.sub-menu {
  font-size: 0.8rem;
  flex-direction: column;
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  list-style: none;
}

#footer-nav ul.sub-menu {
  margin: 0 0 1rem;
}




/*--- footer-sub-nav ---*/

nav#footer-sub-nav {
  display: block;
  height: auto;
  margin: 0 auto;
}
  nav#footer-sub-nav a {
    color: #fff;
  }
nav#footer-sub-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  padding: 30px 0;
  list-style: none;
}
  #footer-sub-nav ul li a {
    position: relative;
    font-size: 0.8rem;
    text-decoration: none;
  }






/* ==============================================================
記事本文エリア限定のデザイン（表裏共通）
公開画面(.entry) と 編集画面(.wp-block-post-content) の両方を指定
============================================================== */


/* h* */

.entry h2,
.wp-block-post-content h2 {
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0.25rem 1rem;
    border-left: 5px solid #00A0E9;
    margin-top: 40px;
    margin-bottom: 1.2rem;
    border-bottom: none;
}

.entry-journal-club h2 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 1.25rem;
    background: none;
    border-left: none;
    padding: 0;
}


.entry h2:first-child,
.wp-block-post-content h2:first-child {
    margin-top: 0;
}


.entry h3,
.entry h4,
.entry h5,
.entry h6 {
    margin-bottom: 1rem;
}


/* p */

.entry p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.entry figure + p {
    margin-top: 1.25rem;
}



/* list */

.entry ul,
.wp-block-post-content ul,
.entry ol,
.wp-block-post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;         /* 左のインデント */
}

.entry li,
.wp-block-post-content li {
    margin-bottom: 5px;
}



/* a */

.entry a,
.wp-block-post-content a {
    color: #00A0E9;
    text-decoration: none;
}

.entry a:hover,
.wp-block-post-content a:hover {
    text-decoration: underline;
}