/* -------------------------
  全体設定 
----------------------------*/
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: var(--main-font);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img {
  width: 100%;
  height: auto;
}
#wrapper {
  display: block;
  width: 100%;
  height: 100%;
  z-index: -6;
}

/* -------------------------
  装飾設定 背景
----------------------------*/
.bg-transparent {
  background: transparent;
}
.bg-navy {
  background: var(--main-color);
}
.bg-white {
  background: #fff;
}

/* -------------------------
  ヘッダー  メニューの帯部分 
----------------------------*/
#header {
  position: relative;
  top: 0;
  display: block;
  width: 100%;
  height: 60px;
  background-color: #fff;
  z-index: 3;
}
.header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
}
a.logo {
  color: var(--main-color);
  line-height: 1.3;
  font-weight: 700;
  text-decoration: none;
}
.logomark {
  width: 50px;
  height: 50px;
  margin: 5px;
  padding: 5px;
  background-color: var(--main-color);
}

/* -------------------------
  ナビメニュー 
----------------------------*/
.header-inner .nav {
  display: block;
  font-size: 15px;
}
.sp-nav {
  display: none;
}
.nav ul {
  display: flex;
}
.nav ul li {
  list-style: none;
  color: var(--main-color);
  font-weight: 500;
  margin-left: 20px;
}
.ss {
  display: inline-flex;
  font-size: 50%;
  vertical-align: middle;
  padding: 0 4px;
}
.nav ul li a,
.ss a {
  color: var(--main-color);
  text-decoration: none;
}
.nav ul li a:hover,
.ss a:hover {
  color: var(--secondary);
}

/* -------------------------
ナビメニューのサブメニュー ドロップダウン 
----------------------------*/

/* -------------------- */
/* ▼メニューバーの装飾 */
/* -------------------- */
ul.menu-parent {
  margin: 0px; /* メニューバー外側の余白(ゼロ) */
  padding-left: 15px; /* メニューバー内側の余白(左に15px) */
}

/* -------------------------- */
/* ▼メインメニュー項目の装飾 */
/* -------------------------- */
ul.menu-parent li {
  /*width: 125px;  メニュー項目の横幅(125px) */
  display: inline-block; /* ★1:横並びに配置する */
  list-style-type: none; /* ★2:リストの先頭記号を消す */
  position: relative; /* ★3:サブメニュー表示の基準位置にする */
}
ul.menu-parent a {
  background-color: #fff; /* メニュー項目の背景色(濃い赤色) */
  color: var(--main-font); /* メニュー項目の文字色(白色) */
  line-height: 60px; /*メニュー項目のリンクの高さ(40px) */
  text-align: center; /* メインメニューの文字列の配置(中央寄せ) */
  text-decoration: none; /* メニュー項目の装飾(下線を消す) */
  font-weight: bold; /* 太字にする */
  display: block; /* ★4:項目内全域をリンク可能にする */
}
ul.menu-parent a:hover {
  background-color: #fff; /* メニュー項目にマウスが載ったときの背景色(淡いピンク) */
  color: var(--secondary); /* メニュー項目にマウスが載ったときの文字色(濃い赤色) */
}
/* 「準備中」表示 */
.jyunbi {
  padding: 0.1em 0 !important;
  font-size: 0.86em;
  color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  margin-left: 0.8em;
}
/* ▼サブメニューは、とりあえず非表示にしておく */
ul.menu-parent ul {
  display: none; /* ★5:非表示にする */
}
/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */ /* ※サブメニューが1階層しか存在しない場合の記述 */
/* ---------------------------------- */
ul.menu-parent li:hover ul {
  display: block; /* ★マウスポインタが載っている項目の内部にあるリストを表示する */
}

/* -------------------- */
/* ▼subメニューの装飾 */
/* -------------------- */
ul.menu-parent ul {
  display: none; /* ★1:標準では非表示にする */
  margin: 0px; /* ★2:サブメニュー外側の余白(ゼロ) */
  padding: 0px; /* ★3:サブメニュー内側の余白(ゼロ) */
  position: absolute; /* ★4:絶対配置にする */
  background: #fff;
  border: 1px solid rgb(194, 209, 224);
}
/* ------------------------ */
/* ▼subメニュー項目の装飾 */
/* ------------------------ */
ul.menu-parent ul li {
  width: 24em; /* サブメニュー1項目の横幅(135px) */
  max-width: 28em; /* サブメニュー1項目の横幅(135px) */
  border-top: 1px solid rgb(194, 209, 224); /* 項目上側の枠線(ピンク色で1pxの実線) */
  background-color: #fff;
  margin-left: -30px;
  padding-left: 20px;
}
ul.menu-parent ul li:first-child {
  border: 0;
}
ul.menu-parent ul li a {
  /*line-height: 35px;  サブメニュー1項目の高さ(35px) */
  line-height: 1.4;
  padding: 16px 0;
  text-align: left; /* 文字列の配置(左寄せ) */
  padding-left: 5px; /* 文字列前方の余白(5px) */
  font-weight: normal; /* 太字にはしない */
}
ul.menu-parent ul li a:hover {
  color: var(--secondary);
  /*color: #0fabcb;  サブメニュー項目にマウスが載ったときの文字色(濃い緑色) */
}
ul.menu-parent ul li a .lh12 {
  line-height: 1.2;
}
ul.nav-child {
  padding-left: 30px;
}

/* -------------------------
  スマホメニュー break-point=874 
----------------------------*/
@media screen and (max-width: 958px) {
  .header-inner .nav {
    display: none;
  }
  .sp-nav {
    display: block;
  }

  /* -------------------------
  スマホメニュー 表示装飾 
----------------------------*/
  .header-inner-sp {
    display: flex;
    justify-content: space-between;
  }
  /*　ハンバーガーメニューボタン　*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 20px;
    top: 8px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 3px;
    left: 6px;
    background: var(--main-color);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }

  /* スマホメニューを開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /* メニュー背景　*/
  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    color: #fff;
    background: rgba(var(--main-color-rgb), 0.86);
    width: 76%;
    height: 100%;
    overflow: scroll;
    transform: translateX(100%);
    transition: all 0.6s;
  }

  nav.globalMenuSp ul {
    margin: 40px auto 0;
    padding: 0;
    width: 100%;
  }

  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0.4s all;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  nav.globalMenuSp ul li:hover {
    /* background: #ddd; */
    background: #fff;
  }
  nav.globalMenuSp ul li.nn:hover {
    background: transparent;
  }
  .nn {
    line-height: 1.4;
    margin-left: 1.5em;
  }
  .nn2 {
    margin: 0 0 0 -1.5em !important;
    padding: 0 1em;
  }
  .nn3 {
    padding-left: 1em !important;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 1.5em;
    text-decoration: none;
  }
  nav.globalMenuSp ul li a:hover {
    color: var(--secondary);
  }

  /* クリックでjQueryで追加・削除 */
  nav.globalMenuSp.active {
    opacity: 100;
    display: block;
    transform: translateX(0%);
  }
}

/* -------------------------
  全幅スライドショー
----------------------------*/
.slide-wrapp {
  display: block;
  width: 100%;
  position: relative;
  z-index: -3;
}
/* スライドショーの設定 */

.slide {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 72s linear infinite;
}

.slide-image:nth-child(1) {
  background-image: url(../img/slide/1-2.jpg);
  animation-delay: -1s;
}
.slide-image:nth-child(2) {
  background-image: url(../img/slide/2.jpg);
  animation-delay: 3s;
}
.slide-image:nth-child(3) {
  background-image: url(../img/slide/3.jpg);
  animation-delay: 7s;
}
.slide-image:nth-child(4) {
  background-image: url(../img/slide/4.jpg);
  animation-delay: 11s;
}
.slide-image:nth-child(5) {
  background-image: url(../img/slide/4CPO.jpg);
  animation-delay: 15s;
}
.slide-image:nth-child(6) {
  background-image: url(../img/slide/5.jpg);
  animation-delay: 19s;
}
.slide-image:nth-child(7) {
  background-image: url(../img/slide/6.jpg);
  animation-delay: 23s;
}
.slide-image:nth-child(8) {
  background-image: url(../img/slide/7.jpg);
  animation-delay: 27s;
}
.slide-image:nth-child(9) {
  background-image: url(../img/slide/8.jpg);
  animation-delay: 31s;
}
.slide-image:nth-child(10) {
  background-image: url(../img/slide/8CORI.jpg);
  animation-delay: 35s;
}
.slide-image:nth-child(11) {
  background-image: url(../img/slide/9.jpg);
  animation-delay: 39s;
}
.slide-image:nth-child(12) {
  background-image: url(../img/slide/10.jpg);
  animation-delay: 43s;
}
.slide-image:nth-child(13) {
  background-image: url(../img/slide/11.jpg);
  animation-delay: 47s;
}
.slide-image:nth-child(14) {
  background-image: url(../img/slide/12.jpg);
  animation-delay: 51s;
}
.slide-image:nth-child(15) {
  background-image: url(../img/slide/13.jpg);
  animation-delay: 55s;
}
.slide-image:nth-child(16) {
  background-image: url(../img/slide/14.jpg);
  animation-delay: 59s;
}
.slide-image:nth-child(17) {
  background-image: url(../img/slide/15.jpg);
  animation-delay: 63s;
}
.slide-image:nth-child(18) {
  background-image: url(../img/slide/16.jpg);
  animation-delay: 67s;
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  1.8% {
    opacity: 1;
  }
  4.68% {
    opacity: 1;
  }
  9% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
/* スライド下 scroll 部分 */
.msg {
  padding-top: 1em;
  font-size: 20px;
  text-align: center;
  color: rgba(var(--color-w-rgb), 0.65);
  line-height: 1.1;
  z-index: -3;
}

/* -------------------------
  top コンテンツ 
----------------------------*/
.items {
  position: relative;
  z-index: 2;
  min-height: 14vh;
  display: flex; /*flexはテキスト中央表示用なので不要なら消してOK*/
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.items p.summary {
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0px 0px 5px rgba(var(--main-color-rgb), 0.8);
  font-size: 1.5rem;
  line-height: 2;
}

/* -------------------------
  ボタンデザイン
----------------------------*/
.btn-read {
  display: inline-block;
  margin-top: 0.3em;
  padding: 0.1em 0.4em;
  font-size: 0.9em;
  color: var(--secondary);
  text-decoration: none;
  border: 1px solid var(--secondary);
  background-color: #fff;
}
.btn-read:hover {
  color: #fff;
  background-color: var(--secondary);
}

.btn-line,
.btn-line-wide {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-inline: auto;
  margin-block: auto;
  padding: 1rem 2rem;
  font-size: 1.15em;
  font-weight: bold;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  transition: 0.5s;
}
.btn-line:hover,
.btn-line-wide:hover {
  color: #fff;
  background: var(--main-color);
}
.btn-line {
  width: 50%;
}
.btn-line-wide {
  width: 100%;
}
.btn-line-s {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  margin-inline: auto;
  margin-block: auto;
  padding: 1rem 2rem;
  font-size: 1.35em;
  font-weight: bold;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  transition: 0.5s;
  position: relative;
  background-color: #fff;
  box-shadow: 0px 5px 2px -2px #bebebe;
}
.btn-line-ss {
  display: block;
  width: 86%;
  text-align: center;
  text-decoration: none;
  margin: 26px auto;
  /* margin-inline: auto;
  margin-block: auto; */
  padding: 0.5rem 2rem;
  font-size: 0.8em;
  font-weight: bold;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  transition: 0.5s;
  position: relative;
  background-color: #fff;
  box-shadow: 0px 5px 2px -2px #bebebe;
}
.btn-line-s:after,
.btn-line-ss:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 0;
  height: 0;
  margin-top: -5px;
  border: 5px solid transparent; /*top right bottom を透明化 */
  border-left: 5px solid var(--main-color);
}
.btn-line-s:hover,
.btn-line-ss:hover {
  color: #fff;
  background: var(--main-color);
}
.btn-line-s:hover:after,
.btn-line-ss:hover:after {
  border-left: 5px solid #fff;
}

/* -------------------------
  top  概要テキスト
----------------------------*/

/* -------------------------
  top  新着ニュース
----------------------------*/
.news-photo-box,
.news-photo-box4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 1em 0;
}
.news-photo-box2 {
  width: 50%;
  margin: 1em 0;
}
.news-photo-box3 {
  width: 30%;
  margin: 1em 0;
}
.news-photo-box img,
.news-photo-box2 img,
.news-photo-box3 img {
  width: 100% !important;
  object-fit: contain;
}
.news-photo-box4 img {
  height: 100%;
  object-fit: cover;
}
.news-list-wrapp .date {
  font-weight: bold;
}
/* -------------------------
  top  フッター
----------------------------*/
#footer {
  color: var(--color-w);
  background: var(--main-color);
}
.QR-insta {
  width: 160px;
  margin: 1em;
}

/* -------------------------
  topページ レスポンシブ設定
----------------------------*/
@media screen and (max-width: 500px) {
  .img-frame {
    height: 64vh;
  }
  .items {
    min-height: 40vh;
  }
  .items p.summary {
    padding: 0 2em;
    font-size: 1.1rem;
  }
  .items p.summary br {
    display: none;
  }
}

/* -------------------------
  上部へ戻るボタン　CSSのみで実装
----------------------------*/
/* html {
  scroll-behavior: smooth;
} */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px var(--main-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid var(--main-color);
  border-right: 3px solid var(--main-color);
  transform: translateY(20%) rotate(-45deg);
}

/* -------------------------
  外部リンクにアイコンをつける
----------------------------*/
/* navメニュー内 */
.outlink {
  font-size: 1em;
  font-weight: 400;
  color: var(--secondary);
  text-decoration: none;
}
.outlink:after {
  font-family: "FontAwesome";
  line-height: 1;
  content: "\f08e";
  font-size: 0.75em;
}
.outlink:hover {
  color: var(--sub-color-tint);
  text-decoration: underline;
}
/* リンク先URLを本文より小さく */
.outlink-s {
  font-size: 0.9em;
  font-weight: 400;
  color: var(--secondary);
  text-decoration: none;
}
.outlink-s:after {
  font-family: "FontAwesome";
  line-height: 1;
  content: "\f08e";
  font-size: 0.75em;
}
.outlink-span {
  color: var(--sub-color-tint);
  text-decoration: underline;
}

/* -------------------------
  font読み込み
----------------------------*/

/* -------------------------
  装飾設定 文字
  テキスト設定
----------------------------*/
.ss08 {
  font-size: 0.8rem;
}
.f-size-3 {
  font-size: 3em;
  line-height: 1;
}
.indent {
  text-indent: 1em;
}

/* -------------------------
  見出しデザイン
----------------------------*/
/* 上下グラデライン */
.mida01 {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 3em;
  font-weight: bold;
  padding: 0.3em 0;
  line-height: 1.2;
}
.mida02 {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 2em;
  font-weight: bold;
  padding: 0.3em 0;
  line-height: 1.2;
  margin-bottom: 0.35em;
}
.mida01:before,
.mida01:after,
.mida02:before,
.mida02:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background-image: -webkit-gradient(linear, right top, left top, from(#009efd), to(#5cf2af));
  background-image: -webkit-linear-gradient(right, #009efd 0%, #5cf2af 100%);
  background-image: linear-gradient(to left, #009efd 0%, #5cf2af 100%);
}
.mida01:before,
.mida02:before {
  top: 0;
}
.mida01:after,
.mida02:after {
  bottom: 0;
}

/* -------------------------
  下階層-コンテンツページ
----------------------------*/
.content-box {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0.5rem auto 2rem;
  padding: 3%;
}

/* -------------------------
  下階層
  -診療研究班の紹介
  -研修プログラム
  -人工関節センター
----------------------------*/
/* ボタンデザイン */
.btn-area-shinryo {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin: 2.5em 1.5em;
}

.btn-area-shinryo3 {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 2.5em 1.5em;
}

.btn-area-rinshokenkyu {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin: 2.5em auto;
  width: 80%;
}

/* ページレイアウト */
.shinryo img {
  width: 55%;
  height: auto;
  margin: 20px 0.5em;
}
.shinryo img.tate {
  width: auto;
  height: 25%;
  max-height: 500px;
}
.shinryo img.yoko1 {
  width: 100%;
  height: auto;
  margin: 0;
}
.shinryo img.yoko2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
.shinryo p,
.trainees p,
.jishu {
  margin: 0.5em;
  line-height: 2;
}
/* 蛍光マーカー */
.shinryo p span,
.line-marker {
  background: linear-gradient(transparent 30%, #fafaae 70%);
  font-weight: bold;
}

/* h2設定 */
.han-title,
.main-title {
  font-size: 3.125em;
  font-weight: 800;
  background-color: #001950;
  color: #fff;
  line-height: 1;
  padding: 0.1em 0.3em;
  margin: 30px 0 0.1em;
}

/* h3設定 */
.han-sub-title,
.main-sub-title {
  color: #001950;
  font-size: 2.2em;
  line-height: 1.2;
  border-bottom: 8px solid #001950;
  margin: 30px 0 0.3em;
}

/* h4設定 */
.han-komidashi,
.main-komidashi {
  padding: 0.5em;
  margin: 2.5em 0.25em 0.7em;
  font-weight: 700;
  letter-spacing: 0.08em;
  background-color: #e5f4ff;
}
.han-komidashi-bold,
.main-komidashi-bold {
  font-size: 1.15rem;
  font-weight: bold;
  margin: 1.5em 0 0 0.5em;
}

/* h5設定 */
.shinryo h5 {
  font-size: 1rem;
  margin: 0.65rem 0.5rem;
}

.cap {
  display: block;
  font-size: 0.85em;
  margin-left: 3em;
  margin-top: -1.6em;
}
.cap2 {
  display: block;
  font-size: 0.85em;
  margin-left: 0.5em;
  margin-top: -0.3em;
}
.cap3 {
  display: block;
  font-size: 0.85em;
  margin-left: 0.5em;
  margin-top: 0.6em;
}
p.cap-box {
  border: 1px solid #cbcbcb;
  padding: 0.5em 1em;
  line-height: 1.2;
  width: 80%;
}
.list-tx p {
  line-height: 1.7;
}
.trainees ul {
  list-style: none;
  line-height: 2;
}
/* 診療グループ */
/* .photo-set1 {
  display: grid;
  width: 80%;
  height: auto;
  grid-template-columns: 1fr 1.4fr 1.8fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 1px 16px;
  grid-template-areas:
    "areaA areaB areaC"
    "areaD areaB areaC"
    "areaE areaB areaC";
}
.itemAkan {
  grid-area: areaA;
}
.itemBkan {
  grid-area: areaB;
}
.itemCkan {
  grid-area: areaC;
}
.itemDkan {
  grid-area: areaD;
}
.itemEkan {
  grid-area: areaE;
} */
.photo-set1-2 {
  display: grid;
  width: 80%;
  margin-left: 8px;
  height: auto;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto ;
  gap:8px;
  grid-template-areas:
    "areaA areaA"
    "areaB areaC";
}
.photo-set1-2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.itemAkan {
  grid-area: areaA;
}
.itemBkan {
  grid-area: areaB;
}
.itemCkan {
  grid-area: areaC;
}
.photo-set1-2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0;

}
.photo-set2 {
  display: grid;
  width: 80%;
  height: auto;
  margin: 0.5em;
  grid-template-columns: 1fr 1fr;
}
.photo-set3 {
  display: grid;
  width: 80%;
  height: auto;
  margin: 0.5em;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
}
.photo-set4 {
  display: grid;
  height: auto;
  margin: 0.5em;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.photo-set4-65 {
  width: 65%;
}
.photo-set4-70 {
  width: 70%;
}
.photo-set4-80 {
  width: 80%;
}
.photo-set5 {
  display: grid;
  width: 80%;
  height: auto;
  margin: 0.5em;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.photo-set6 {
  display: grid;
  width: 80%;
  height: auto;
  margin: 0.5em;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 8px;
}
.photo-set7 {
  display: grid;
  width: 80%;
  height: auto;
  margin: 0.5em;
  grid-template-columns: 1fr 1fr 1.2fr 1.2fr 1fr;
  gap: 8px;
}
.photo-set8 {
  display: grid;
  width: 80%;
  height: auto;
  margin: 0.5em;
  grid-template-columns: 1fr 1.5fr;
  gap: 8px;
}
.photo-set9 {
  display: grid;
  width: 80%;
  height: auto;
  margin: 0.5em;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.itemFkan {
  grid-column: 1/2;
}
.itemGkan {
  grid-column: 2/3;
}
.itemHkan {
  grid-column: 1/3;
  grid-row: 2/3;
}
/* 文責 */
.bun {
  text-align: right;
}
@media screen and (max-width: 745px) {
  .btn-area-shinryo {
    grid-template-columns: 1fr 1fr;
  }
  .shinryo img {
    width: 70%;
  }
  .photo-set1-2 img {
    width: 100%;
  }
}

/* -------------------------
  研修プログラムページ設定
----------------------------*/
/* h2 */
.program-title {
  font-size: 2em;
  font-weight: 800;
  background-color: #001950;
  color: #fff;
  line-height: 1.26;
  padding: 0.1em 0.3em;
  margin: 30px 0 0.1em;
}
.pro-indent-3 {
  text-indent: -3em;
  padding-left: 3em;
}
/* h3 */
.program-sub-title {
  color: #001950;
  font-size: 1.8em;
  line-height: 1.2;
  border-bottom: 8px solid #001950;
  margin: 30px 0 0.3em;
}
/* -------------------------
  研修プログラムページ設定
  和歌山
----------------------------*/

/* -------------------------
  レイアウトパーツ｜マージン設定
----------------------------*/
.ml30 {
  margin-left: 3em !important;
}
.ml16 {
  margin-left: 1.6em !important;
}
.ml05 {
  margin-left: 0.5em !important;
}
.mgt05 {
  margin-top: 0.5rem !important;
}
.mgt10 {
  margin-top: 1rem !important;
}
.mgt20 {
  margin-top: 2rem !important;
}
.mgt30 {
  margin-top: 3rem !important;
}
.mgt40 {
  margin-top: 4rem !important;
}
.mgt-06 {
  margin-top: -0.6em !important;
}
.mgb05 {
  margin-bottom: 0.5rem !important;
}
.mgb10 {
  margin-bottom: 1rem !important;
}
.mgb20 {
  margin-bottom: 2rem !important;
}
.mgb30 {
  margin-bottom: 3rem !important;
}
.mgb40 {
  margin-bottom: 4rem !important;
}
.pdt07 {
  padding-top: 0.7em !important;
}
