@charset "UTF-8";
/* Scss Document */
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;500;600&family=Noto+Sans+JP:wght@400;500&display=swap");
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

em {
  font-style: normal;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img, svg {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
}

a img {
  border: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 400;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* Scss Document */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* General Style
/* --------------------------------------------------- */
html {
  font-size: 62.5%; /* 16pxに625%を掛けると100pxになるよ！ */
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  color: #000;
  background: #fff;
  text-align: center;
  line-height: 1;
  font-size: 1.4em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
}
@media print, screen and (min-width: 769px) {
  body {
    font-size: 1.6em;
  }
}

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

.bvh {
  image-rendering: -webkit-optimize-contrast;
}

/* レスポンシブルimages */
.rpimg {
  width: 100%;
  height: auto;
}

/* レスポンシブルimages */
/* header                                         
/* --------------------------------------------------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1200px) {
  #header.show {
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
  }
  #header.is-in {
    background-color: rgb(255, 255, 255);
  }
}

.header-inner {
  text-align: left;
  position: relative;
  padding: 0 2%;
  height: 60px;
}
@media print, screen and (min-width: 1200px) {
  .header-inner {
    height: 120px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

@media print, screen and (max-width: 1199px) {
  .header-logo {
    width: 180px;
    height: 60px;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
}
@media print, screen and (min-width: 1200px) {
  .header-logo {
    width: 415px;
    height: 120px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media print, screen and (max-width: 1350px) {
  .header-logo {
    width: 180px;
    height: 120px;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
}
@media print, screen and (max-width: 1199px) {
  .header-logo {
    height: 60px;
  }
}
.header-logo img {
  image-rendering: -webkit-optimize-contrast;
}
@media print, screen and (max-width: 1199px) {
  .header-logo img {
    width: 100%;
  }
}

/* contents                                           
/* --------------------------------------------------- */
.main-contents {
  line-height: 1.8;
  position: relative;
  padding-bottom: 5em;
}
#home .main-contents {
  padding-top: 4em;
}
@media print, screen and (min-width: 769px) {
  #home .main-contents {
    padding-top: 6em;
  }
}
.main-contents .inner {
  padding: 3em 4%;
  max-width: 1280px;
}
@media print, screen and (min-width: 769px) {
  .main-contents .inner {
    padding: 3em 2.0833333333%;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 1200px) {
  .main-contents .inner {
    padding: 3em 40px;
  }
}
.main-contents .inner section {
  text-align: left;
}
.main-contents .inner section + section {
  margin-top: 3em;
}
.main-contents .inner p + p, .main-contents .inner p + ul, .main-contents .inner p + dl, .main-contents .inner p + ol, .main-contents .inner ul + p, .main-contents .inner ul + ul, .main-contents .inner ul + dl, .main-contents .inner ol + p, .main-contents .inner ol + ul, .main-contents .inner ol + dl, .main-contents .inner p + h3 {
  margin-top: 1em;
}
.main-contents .inner p + figure, .main-contents .inner ul + figure, .main-contents .inner figure + p {
  margin-top: 1.5em;
}
.main-contents .inner-wide {
  background-color: #eee;
}
.main-contents a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-contents a img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-contents a:hover img {
  opacity: 0.7;
}
.main-contents a, .main-contents a:visited, .main-contents a:active {
  color: #000;
  text-decoration: underline;
}
.main-contents a:hover {
  text-decoration: none;
}

/* ページ内リンク固定ヘッダーズレ解消 */
@media print, screen and (max-width: 1199px) {
  .pl-area {
    margin-top: -50px;
  }
  .pl-area .target {
    padding-top: 50px;
    display: block;
  }
}

/* パンくずナビ */
.breadcrumb {
  padding: 0 2.0833333333%;
}
@media print, screen and (min-width: 769px) {
  .breadcrumb {
    max-width: 1280px;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 1200px) {
  .breadcrumb {
    padding: 0 40px;
  }
}
.breadcrumb p {
  margin: 0 auto;
  text-align: left;
  font-size: calc(12px + 2 * (100vw - 320px) / 1600);
  padding: 1.5em 0 0;
}

/* footer                                           
/* --------------------------------------------------- */
#footer {
  background: #EEEEEE;
  width: 100%;
}
#footer .inner {
  display: -webkit-flex;
  display: flex;
  padding: 30px 4%;
}
@media print, screen and (max-width: 1199px) {
  #footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    align-items: center;
  }
}
@media print, screen and (min-width: 1200px) {
  #footer .inner {
    max-width: 1280px;
    padding: 30px 2.0833333333%;
    margin: 0 auto;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    white-space: nowrap;
  }
}

.foot-add {
  text-align: center;
  line-height: 1.8;
  display: block;
  margin: 20px auto 0;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
}
.foot-add .logo {
  margin: 0 0 1.2em;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .foot-add .logo {
    width: 280px;
  }
}
@media print, screen and (min-width: 1200px) {
  .foot-add .logo {
    text-align: left;
  }
}
.foot-add .logo img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media print, screen and (min-width: 1200px) {
  .foot-add .add {
    margin-left: 90px;
  }
}
.foot-add .url {
  text-align: left;
}
@media print, screen and (min-width: 1200px) {
  .foot-add .url {
    margin-left: 90px;
  }
}
.foot-add .url dt {
  float: left;
}
.foot-add .url dd {
  padding-left: 3.5em;
}
.foot-add a {
  color: #000;
}
@media print, screen and (min-width: 1200px) {
  .foot-add {
    margin: 0;
    width: 40%;
    text-align: left;
  }
}

.foot-nav {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  text-align: left;
  line-height: 1.5;
}
.foot-nav li {
  margin-bottom: 0.5em;
  position: relative;
  text-align: left;
}
.foot-nav > ul > li {
  padding-left: 1em;
}
.foot-nav > ul > li + li {
  margin-top: 1.5em;
}
.foot-nav ul ul {
  margin-top: 0.5em;
}
.foot-nav ul ul li:after {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  content: "- ";
  vertical-align: middle;
}
.foot-nav ul ul > li {
  padding-left: 15px;
}
.foot-nav a {
  color: #000;
  text-decoration: none;
}
.foot-nav a:hover {
  color: #e59;
}
.foot-nav a img {
  width: 12px;
  height: 12px;
  vertical-align: middle;
  margin-left: 5px;
}
.foot-nav .fs {
  display: block;
  text-align: center;
  font-size: 1.2rem;
}
.foot-nav .i-opwn {
  margin-left: 5px;
}
.foot-nav .i-opwn svg {
  vertical-align: top;
}
@media screen and (max-width: 480px) {
  .foot-nav {
    margin: 0 auto;
    display: inline-block;
  }
  .foot-nav > ul > li {
    display: inline-block;
  }
}
@media print, screen and (min-width: 481px) {
  .foot-nav {
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    line-height: 1.4;
  }
  .foot-nav > ul {
    padding-right: 2em;
  }
  .foot-nav > ul:last-child {
    padding-right: 0;
  }
}

#footer small {
  display: block;
  background-color: #C7EB52;
  padding: 1em;
  line-height: 1.5;
}

/* page top */
#page-top {
  display: block;
  position: fixed;
  z-index: 998;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
#page-top.hide {
  opacity: 1;
}

/*==ナビゲーション全体の設定*/
#g-nav {
  text-align: center;
}
@media print, screen and (min-width: 1200px) {
  #g-nav {
    position: absolute;
    right: 0;
    top: 0;
    height: 120px;
  }
}
@media print, screen and (max-width: 1199px) {
  #g-nav {
    background: #fff;
    padding: 0;
    position: fixed;
    z-index: 998;
    top: 60px;
    left: -99.99%;
    width: 100%;
    height: 100vh;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
#g-nav ul {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
#g-nav ul li {
  position: relative;
}
@media print, screen and (max-width: 1199px) {
  #g-nav ul li {
    padding: 0 2%;
  }
}
@media print, screen and (min-width: 1200px) {
  #g-nav ul li.tbnav {
    display: none;
  }
}
#g-nav ul li a, #g-nav ul li .a-tag {
  display: block;
  text-decoration: none;
  color: #000;
  position: relative;
  overflow: hidden;
  font-size: 1.8rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media print, screen and (max-width: 1199px) {
  #g-nav ul li a, #g-nav ul li .a-tag {
    border-bottom: 1px solid #ccc;
    padding: 15px 44px 15px 0.5em;
    text-align: left;
  }
}
@media print, screen and (min-width: 1200px) {
  #g-nav ul li a, #g-nav ul li .a-tag {
    margin: 0 1em;
    padding: 5px 0;
    height: 120px;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
  }
}
#g-nav ul li a .i-home, #g-nav ul li .a-tag .i-home {
  fill: #000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0 5px 0 0;
  display: inline-block;
}
#g-nav ul li a .i-home svg, #g-nav ul li .a-tag .i-home svg {
  vertical-align: top;
}
#g-nav ul li a .i-opwn, #g-nav ul li .a-tag .i-opwn {
  fill: #000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0 0 0 10px;
  display: inline-block;
}
#g-nav ul li a .i-opwn svg, #g-nav ul li .a-tag .i-opwn svg {
  vertical-align: top;
}
#g-nav ul li a.gm-contact, #g-nav ul li .a-tag.gm-contact {
  color: #000;
  line-height: 1.8;
}
@media print, screen and (min-width: 1200px) {
  #g-nav ul li a.gm-contact, #g-nav ul li .a-tag.gm-contact {
    width: 200px;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #g-nav ul li a.gm-contact::before, #g-nav ul li .a-tag.gm-contact::before {
    content: "";
    width: 200px;
    height: 100px;
    background-color: #C7EB52;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 0 10px 10px;
    z-index: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media print, screen and (max-width: 1199px) {
  #g-nav ul li a.gm-contact, #g-nav ul li .a-tag.gm-contact {
    background-color: #C7EB52;
  }
  #g-nav ul li a.gm-contact:hover, #g-nav ul li .a-tag.gm-contact:hover {
    background-color: #e59;
  }
}
@media print, screen and (min-width: 1200px) {
  #g-nav ul li a.gm-contact:hover::before, #g-nav ul li .a-tag.gm-contact:hover::before {
    color: #fff;
    background-color: #e59;
  }
}
#g-nav ul li a.gm-contact .i-key, #g-nav ul li .a-tag.gm-contact .i-key {
  fill: #000;
}
@media print, screen and (max-width: 1199px) {
  #g-nav ul li a.gm-contact .i-key, #g-nav ul li .a-tag.gm-contact .i-key {
    margin-right: 5px;
  }
}
#g-nav ul li a.gm-contact .i-key svg, #g-nav ul li .a-tag.gm-contact .i-key svg {
  vertical-align: middle;
}
#g-nav ul li a.gm-contact .txt-contact, #g-nav ul li a.gm-contact .txt-gakunai, #g-nav ul li a.gm-contact .i-key, #g-nav ul li .a-tag.gm-contact .txt-contact, #g-nav ul li .a-tag.gm-contact .txt-gakunai, #g-nav ul li .a-tag.gm-contact .i-key {
  position: relative;
  z-index: 1;
}
#g-nav ul li a.gm-contact .txt-gakunai, #g-nav ul li .a-tag.gm-contact .txt-gakunai {
  font-size: calc(10px + 2 * (100vw - 320px) / 1600);
  border: 1px solid #000;
  padding: 0.2em 1em;
  margin-right: 10px;
}
#g-nav ul li a.gm-contact::after, #g-nav ul li .a-tag.gm-contact::after {
  display: none;
}
#g-nav ul li a:hover, #g-nav ul li .a-tag:hover {
  color: #e59;
}
#g-nav ul li a:hover .i-home, #g-nav ul li .a-tag:hover .i-home {
  fill: #e59;
}
#g-nav ul li a:hover .i-opwn, #g-nav ul li .a-tag:hover .i-opwn {
  fill: #e59;
}
#g-nav ul li a:hover .i-key, #g-nav ul li .a-tag:hover .i-key {
  fill: #fff;
}
#g-nav ul li a:hover .txt-contact, #g-nav ul li .a-tag:hover .txt-contact {
  color: #fff;
}
#g-nav ul li a:hover .txt-gakunai, #g-nav ul li .a-tag:hover .txt-gakunai {
  color: #fff;
  border: 1px solid #fff;
}
@media print, screen and (min-width: 1200px) {
  #g-nav ul li .a-tag {
    position: relative;
  }
  #g-nav ul li .a-tag::after {
    content: "";
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    bottom: 32px;
    margin-left: -3px;
  }
  #g-nav ul li .a-tag:hover::after {
    border-top: 1px solid #e59;
    border-right: 1px solid #e59;
    bottom: 25px;
  }
}
#g-nav ul li.current > a, #g-nav ul li.current > .a-tag, #g-nav ul li.current2 > a, #g-nav ul li.current2 > .a-tag {
  color: #e59;
}
#g-nav ul li.current > a::after, #g-nav ul li.current > .a-tag::after, #g-nav ul li.current2 > a::after, #g-nav ul li.current2 > .a-tag::after {
  border-top: 1px solid #e59;
  border-right: 1px solid #e59;
  bottom: 25px;
}
#g-nav ul li.current .gm-contact, #g-nav ul li.current2 .gm-contact {
  color: #000;
}
#g-nav ul li.has-child ul {
  position: absolute;
  z-index: 4;
  display: inline-block;
  visibility: hidden;
  opacity: 0;
}
@media print, screen and (min-width: 1200px) {
  #g-nav ul li.has-child ul {
    left: 10px;
    top: 120px;
  }
}
@media print, screen and (min-width: 1200px) and (min-width: 1200px) {
  #g-nav ul li.has-child ul.v2 a {
    min-width: 300px;
  }
}
@media print, screen and (max-width: 1199px) {
  #g-nav ul li.has-child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
    border-bottom: 1px solid #ccc;
  }
  #g-nav ul li.has-child ul ul {
    border-bottom: none;
    display: block;
  }
}
#g-nav ul li.has-child:hover > ul, #g-nav ul li.has-child:active > ul {
  visibility: visible;
  opacity: 1;
}
@media print, screen and (max-width: 1199px) {
  #g-nav ul li.has-child li {
    padding: 0;
  }
}
#g-nav ul li.has-child li a {
  font-weight: 400;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
  line-height: 1.4;
  text-align: left;
  position: relative;
}
.is-in #g-nav ul li.has-child li a {
  background-color: rgb(255, 255, 255);
}
@media print, screen and (max-width: 1199px) {
  #g-nav ul li.has-child li a {
    padding: 15px 4% 15px 1em;
    border-bottom: none;
  }
}
@media print, screen and (min-width: 1200px) {
  #g-nav ul li.has-child li a {
    margin: 0;
    padding: 1em;
    white-space: nowrap;
    display: block;
    height: auto;
    min-width: 280px;
  }
}
#g-nav ul li.has-child li a:hover, #g-nav ul li.has-child li a:active {
  color: #e59;
}
@media print, screen and (max-width: 1199px) {
  #g-nav ul li.has-child li a:hover, #g-nav ul li.has-child li a:active {
    background-color: #fff;
    color: #e59;
  }
}
#g-nav ul li.has-child li a::after {
  content: "";
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  right: 30px;
  top: calc(50% - 3px);
}
#g-nav ul li.has-child li a:hover::after {
  border-top: 1px solid #e59;
  border-right: 1px solid #e59;
  right: 20px;
}
#g-nav ul li.has-child li a.external-link::after {
  display: none;
}
@media print, screen and (max-width: 1199px) {
  #g-nav ul li.has-child li li {
    margin-left: 20px;
    background-color: #fff;
  }
}
@media print, screen and (max-width: 1199px) {
  #g-nav ul li.has-child li li a {
    padding: 10px 4% 10px 1em;
  }
}
@media print, screen and (max-width: 1199px) {
  #g-nav ul li.has-child li:last-of-type ul {
    margin-bottom: 1em;
  }
}
@media print, screen and (max-width: 1199px) {
  #g-nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }
}
#g-nav ul li .close-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: 20px auto;
  position: relative;
  cursor: pointer;
  border-bottom: none;
}
#g-nav ul li .close-btn:before, #g-nav ul li .close-btn:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin: -8% 0 0 -42%;
  background: #333;
}
#g-nav ul li .close-btn:before {
  transform: rotate(-45deg);
}
#g-nav ul li .close-btn:after {
  transform: rotate(45deg);
}
#g-nav ul ul {
  display: block;
}
#g-nav ul ul li a {
  padding: 10px 35px;
}
#g-nav ul ul li.has-child::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media print, screen and (max-width: 1199px) {
  #g-nav ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
  }
}
@media print, screen and (max-width: 1199px) {
  #g-nav ul {
    display: block;
  }
}
@media print, screen and (max-width: 1199px) {
  #g-nav.panelactive {
    opacity: 1;
    left: 0;
  }
  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 60px;
  }
}

.child-open {
  position: absolute;
  top: 0;
  right: 2%;
  height: 56px;
  width: 44px;
  display: block;
  cursor: pointer;
}
.child-open:before, .child-open:after {
  content: "";
  height: 2px;
  width: 16px;
  display: block;
  background: #91979f;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -8px;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.child-open:after {
  height: 16px;
  width: 2px;
  margin: -8px 0 0 -1px;
}
.active .child-open:befor {
  display: none;
}
.active .child-open:after {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
@media print, screen and (min-width: 1200px) {
  .child-open {
    display: none;
  }
}

.active .child-open:befor {
  display: none;
}

.active .child-open:after {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

/* ハンバーガーメニューボタン */
@media print, screen and (max-width: 1199px) {
  .openbtn1 {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 50px;
    height: 60px;
    background-color: #e59;
  }
  .openbtn1 span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 20px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 29px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 37px;
  }
  .openbtn1.active {
    background: #fff;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 16px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background-color: #666;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 28px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background-color: #666;
  }
}
/* 365体育娱乐场 */
/* Key */
.key-img {
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: relative;
}
/* Key common */
.key-common {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.introduction .key-common {
  background-image: url("/usr/pedi/wp/assets/img/introduction/keyv01.jpg");
}
.group .key-common {
  background-image: url("/usr/pedi/wp/assets/img/group/keyv01.jpg");
}
.staff .key-common {
  background-image: url("/usr/pedi/wp/assets/img/staff/keyv.jpg");
}
.publications .key-common {
  background-image: url("/usr/pedi/wp/assets/img/publications/keyv.jpg");
}
.medicalintern .key-common {
  background-image: url("/usr/pedi/wp/assets/img/medicalintern/keyv.jpg");
}
@media print, screen and (max-width: 768px) {
  .key-common {
    height: 180px;
  }
}
@media print, screen and (max-width: 768px) {
  .key-common img {
    display: none;
  }
}
.key-common .ttl {
  position: absolute;
  left: 0;
  bottom: 0;
  height: calc(100% - 60px);
  padding: 0 2.0833333333%;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  font-size: calc(23px + 22 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}
@media print, screen and (min-width: 1200px) {
  .key-common .ttl {
    height: calc(100% - 120px);
    letter-spacing: 0.1em;
  }
}

.inner.NEWS {
  padding: 0 4% 5em;
}
@media print, screen and (min-width: 769px) {
  .inner.NEWS {
    padding: 0 2.0833333333% 6em;
  }
}
.inner.NEWS h2 {
  position: relative;
}
.inner.NEWS h2 a {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  font-weight: 400;
  position: absolute;
  text-decoration: none;
  right: 0;
  top: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.inner.NEWS h2 a:hover {
  color: #ee5599;
}
.inner.NEWS h2 a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #000;
  border-right: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: 1em;
}
.inner.NEWS h2 a:hover::after {
  border-left: 6px solid #ee5599;
}

.top-contents {
  position: relative;
  text-align: left;
  margin-bottom: 6em;
}
@media screen and (max-width: 480px) {
  .top-contents {
    margin-bottom: 4em;
  }
}
.top-contents figure {
  width: 83.3333333333%;
}
@media screen and (max-width: 480px) {
  .top-contents figure {
    width: 96%;
    margin-right: 4%;
  }
}

.top-cate-list {
  width: 92%;
  background-color: #e6ead8;
  margin: -22% 0 0 8%;
  position: relative;
}
@media print, screen and (min-width: 1200px) {
  .top-cate-list {
    width: 66.6666666667%;
    margin-left: 33.3333333333%;
  }
}
@media screen and (max-width: 480px) {
  .top-cate-list {
    width: 96%;
    margin: -8% 0 0 4%;
  }
}
.top-cate-list .top-cate-list-inner {
  width: 79%;
  margin: 0 0 0 4%;
}
@media print, screen and (min-width: 1200px) {
  .top-cate-list .top-cate-list-inner {
    width: 71.09375%;
    margin: 0 0 0 3.90625%;
  }
}
@media screen and (max-width: 480px) {
  .top-cate-list .top-cate-list-inner {
    width: 100%;
    margin: 0;
    padding: 0 1.5em 3%;
  }
}
.top-cate-list h2 {
  font-size: calc(16px + 29 * (100vw - 320px) / 1600);
  font-weight: 400;
  border-bottom: 5px solid #c7eb52;
  margin: 0 0 2.4615384615%;
  padding: 0.7em 0 0 3.90625%;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .top-cate-list h2 {
    padding: 0.7em 1.5em 0.5em;
  }
}
.top-cate-list p {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  margin: 0 0 2.4615384615%;
}
@media screen and (max-width: 480px) {
  .top-cate-list p {
    margin: 0 0 1em;
  }
}
.top-cate-list .top-link {
  width: 93.4065934066%;
  height: 75%;
  display: -webkit-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media print, screen and (min-width: 481px) and (max-width: 768px) {
  .top-cate-list .top-link {
    display: inline-block;
  }
}
@media screen and (max-width: 480px) {
  .top-cate-list .top-link {
    display: inline-block;
    width: 100%;
  }
}
.top-cate-list.v1 .btn01:hover {
  color: #000;
  background-color: #c7eb52;
}
.top-cate-list.v1 .btn01:hover .arrow::after {
  border-bottom: 1px solid #000 !important;
}
.top-cate-list.v1 .btn01:hover .arrow::before {
  border-right: 1px solid #000 !important;
}
.top-cate-list.v2 {
  background-color: #e6eaee;
  margin: -16% 0 0 8%;
}
@media print, screen and (min-width: 1200px) {
  .top-cate-list.v2 {
    margin-left: 33.3333333333%;
  }
}
@media screen and (max-width: 480px) {
  .top-cate-list.v2 {
    margin: -8% 0 0 4%;
  }
}
.top-cate-list.v2 h2 {
  border-bottom: 5px solid #6699dd;
}
.top-cate-list.v2 .btn01::before {
  background-color: #6699dd;
}
.top-cate-list.v2 .btn01:hover {
  color: #fff;
  background-color: #6699dd;
}
.top-cate-list.v2 .arrow::after {
  border-bottom: 1px solid #6699dd !important;
}
.top-cate-list.v2 .arrow::before {
  border-right: 1px solid #6699dd !important;
}
.top-cate-list.v3 {
  background-color: #eee6e6;
  margin: -16% 0 0 8%;
}
@media print, screen and (min-width: 1200px) {
  .top-cate-list.v3 {
    margin-left: 33.3333333333%;
  }
}
@media screen and (max-width: 480px) {
  .top-cate-list.v3 {
    margin: -8% 0 0 4%;
  }
}
.top-cate-list.v3 h2 {
  border-bottom: 5px solid #ee5599;
}
.top-cate-list.v3 .btn01::before {
  background-color: #ee5599;
}
.top-cate-list.v3 .btn01:hover {
  background-color: #ee5599;
}
.top-cate-list.v3 .arrow::after {
  border-bottom: 1px solid #ee5599;
}
.top-cate-list.v3 .arrow::before {
  border-right: 1px solid #ee5599;
}
.top-cate-list.v3 .i-opwn {
  fill: #ee5599;
}
.top-cate-list.v3 .top-link {
  display: inline-block;
}
.top-cate-list .dummy {
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  height: 80px;
  width: 47.0588235294%;
  margin-bottom: 3%;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .top-cate-list .dummy {
    display: none;
  }
}

/*スクロールダウン*/
.scrolldown2 {
  /*position:fixed;*/
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -14px;
  width: 21px;
  height: 90px;
}
.scrolldown2 .text {
  display: block;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 1.3rem;
  padding-left: 5px;
  color: #fff;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media print, screen and (max-width: 1199px) {
  .scrolldown2 {
    display: none;
  }
}

.scrolldown2.is-in {
  position: absolute;
}

.scrollbar {
  position: relative;
  width: 100%;
  height: 100%;
}
.scrollbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  border-left: 2px solid #fff;
  animation: arrowlong01 1.5s ease infinite;
}
.scrollbar::after {
  content: "";
  position: absolute;
  top: 74%;
  left: 1px;
  width: 6px;
  height: 2px;
  border-top: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  animation: arrowlong02 1.5s ease infinite;
}

@-webkit-keyframes arrowlong01 {
  0% {
    height: 80%;
    opacity: 0;
  }
  20% {
    height: 80%;
    opacity: 1;
  }
  80% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 0;
  }
}
@keyframes arrowlong01 {
  0% {
    height: 80%;
    opacity: 0;
  }
  20% {
    height: 80%;
    opacity: 1;
  }
  80% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 0;
  }
}
@-webkit-keyframes arrowlong02 {
  0% {
    top: 74%;
    opacity: 0;
  }
  20% {
    top: 74%;
    opacity: 1;
  }
  80% {
    top: 94%;
    opacity: 1;
  }
  100% {
    top: 94%;
    opacity: 0;
  }
}
@keyframes arrowlong02 {
  0% {
    top: 74%;
    opacity: 0;
  }
  20% {
    top: 74%;
    opacity: 1;
  }
  80% {
    top: 94%;
    opacity: 1;
  }
  100% {
    top: 94%;
    opacity: 0;
  }
}
.top-contents2 {
  margin: 0 auto 6%;
  padding: 0 2%;
}
@media print, screen and (min-width: 901px) {
  .top-contents2 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    max-width: 950px;
    padding: 0;
  }
}

.top-contents2 .top-snsarea {
  width: 56.8421052632%;
  text-align: left;
}
@media print, screen and (max-width: 900px) {
  .top-contents2 .top-snsarea {
    margin: 4em auto 0;
    max-width: 540px;
    width: 100%;
  }
}
.top-contents2 .top-snsarea h2 {
  font-weight: 400;
  border-bottom: 2px solid #000;
  position: relative;
  text-align: center;
  padding-bottom: 0.5em;
}
.top-contents2 .top-snsarea h2::after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  bottom: -6px;
  left: calc(50% - 3px);
}
.top-contents2 .top-snsarea a {
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  text-decoration: none;
  margin-top: 2em;
  width: 100%;
  height: 100px;
  position: relative;
  padding: 0 0 0 50px;
}
@media screen and (max-width: 480px) {
  .top-contents2 .top-snsarea a {
    padding: 0 0 0 4%;
  }
}
.top-contents2 .top-snsarea a::before {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #ccc;
  position: absolute;
  top: 0;
  left: 0;
}
.top-contents2 .top-snsarea a::after {
  content: "";
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 3px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-contents2 .top-snsarea a:hover::after {
  border: 3px solid #3b5998;
}
.top-contents2 .top-snsarea .sns-facebook {
  fill: #3b5998;
}
.top-contents2 .top-snsarea .sns-twitter {
  fill: #55acee;
}
.top-contents2 .top-snsarea .sns-twitter:hover::after {
  border: 3px solid #55acee;
}
.top-contents2 .top-snsarea .i-facebook,
.top-contents2 .top-snsarea .i-twitter {
  margin-right: 20px;
}
@media screen and (max-width: 480px) {
  .top-contents2 .top-snsarea .i-facebook,
  .top-contents2 .top-snsarea .i-twitter {
    margin-right: 4%;
  }
}
.top-contents2 .top-snsarea .i-opwn {
  position: absolute;
  right: 50px;
  top: calc(50% - 8px);
  height: 16px;
}
@media screen and (max-width: 480px) {
  .top-contents2 .top-snsarea .i-opwn {
    right: 4%;
  }
}
.top-contents2 .top-snsarea .i-opwn svg {
  vertical-align: top;
}

@media print, screen and (max-width: 900px) {
  .top-contents2 .pamphlet {
    max-width: 300px;
    margin: 0 auto;
  }
}
.top-contents2 .pamphlet figcaption {
  line-height: 1.4;
  margin-top: 0.5em;
}

.top-contents3 {
  margin: 5em 20px;
}
@media print, screen and (max-width: 768px) {
  .top-contents3 {
    margin: 3em 4%;
  }
}

.top-contents3 .education {
  max-width: 950px;
  width: 100%;
  text-decoration: none;
  text-align: left;
  display: inline-block;
  margin: 0 auto;
  border: 1px solid #aad02f;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .top-contents3 .education {
    height: 250px;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
}
.top-contents3 .education::after {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 5px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-contents3 .education:hover::after {
  border: 5px solid #aad02f;
}
.top-contents3 .education h2 {
  color: #fff;
  background-color: #aad02f;
  font-size: calc(14px + 8 * (100vw - 320px) / 449);
  white-space: nowrap;
  padding: 0.5em 1em;
  line-height: 1;
}
@media print, screen and (min-width: 769px) {
  .top-contents3 .education h2 {
    font-size: 2.2rem;
    padding: 0.3em 1em;
  }
}
.top-contents3 .education > div {
  margin: 30px 16px;
}
@media print, screen and (min-width: 769px) {
  .top-contents3 .education > div {
    margin: 0 0 0 2em;
  }
}
.top-contents3 .education h3 {
  font-size: 4rem;
  line-height: 1;
  font-weight: 400;
}
@media print, screen and (max-width: 768px) {
  .top-contents3 .education h3 {
    font-size: calc(30px + 10 * (100vw - 320px) / 449);
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.top-contents3 .education p {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 2em;
}
.top-contents3 .education .i-key {
  margin-left: auto;
  fill: #aad02f;
  margin-right: 30px;
  vertical-align: middle;
}
@media print, screen and (max-width: 768px) {
  .top-contents3 .education .i-key {
    margin-right: 10px;
  }
}
.top-contents3 .education .i-key svg {
  width: 22.86px;
  height: 30px;
  vertical-align: top;
}

/* News */
#news p.ymd {
  text-align: right;
  margin-bottom: 3.3125em;
}
#news .honbun {
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
}
#news .main-contents p + p {
  margin-top: 2em;
}

.news-common {
  text-decoration: none !important;
  display: block;
  border-bottom: 1px solid #dcdcdc;
  padding: 1em;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-common:last-child {
  border-bottom: 1px solid #a9a9a9;
}
.news-common .ymd {
  display: block;
}
@media print, screen and (min-width: 769px) {
  .news-common .ymd {
    float: left;
  }
}
.news-common .txt {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}
@media print, screen and (min-width: 769px) {
  .news-common .txt {
    padding-left: 2em;
    font-size: 1.8rem;
  }
}
.news-common .txt .arrow01 {
  margin-left: 2em;
  fill: #a9a9a9;
}
@media print, screen and (min-width: 769px) {
  .news-common .ymd-none {
    padding-left: 0;
  }
}
@media print, screen and (min-width: 769px) {
  .news-common.span-txt {
    font-size: 1.8rem;
  }
}

.news-common:hover {
  background-color: #fdffcc;
}
.news-common:hover .arrow01 {
  fill: #bddd6e;
}
#medicalintern .news-common:hover .arrow01, #educationalcontent .news-common:hover .arrow01 {
  fill: #6699dd;
}

.top-bnr {
  max-width: 1100px;
  margin: 0 auto 6em;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0.9259259259%;
}
@media print, screen and (max-width: 768px) {
  .top-bnr {
    margin: 0 auto 4em;
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .top-bnr {
    max-width: 340px;
    gap: 10px;
    padding: 0 10%;
  }
}
.top-bnr a {
  flex: 1;
  min-width: 200px;
  max-width: 200px;
}
@media print, screen and (max-width: 768px) {
  .top-bnr a {
    min-width: 230px;
    max-width: 230px;
  }
}

.video {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  margin: 2em auto 1em;
}

/* Layout                                           
/* --------------------------------------------------- */
.flex {
  display: -webkit-flex;
  display: flex;
}
.flex.col2, .flex.col3, .flex.col4 {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
.flex.col2 > * {
  width: 48%;
  margin-right: 4%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 1em;
}
.flex.col2 > *:nth-child(even) {
  margin-right: 0;
}
.flex.col2 > *:last-child {
  margin: 0 auto 1em;
}
.flex.col2 > .v2 {
  margin-bottom: 0;
}
.flex.col2 > .v2 ol,
.flex.col2 > .v2 ul {
  margin-bottom: 3em !important;
}
.flex.col3 > * {
  width: 32%;
  margin-right: 2%;
}
.flex.col3 > *:nth-child(3n) {
  margin-right: 0;
}
.flex.col4 > * {
  width: 24.25%;
  margin-right: 1%;
}
.flex.col4 > *:nth-child(4n) {
  margin-right: 0;
}
.flex > .txt {
  -webkit-box-flex: 1;
  flex: 1;
  margin: 0 0 0 3em;
}
.flex.rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.flex.rr > .txt {
  margin: 0 3em 0 0;
}
.flex.imgR > .txt {
  margin: 0 3em 0 0;
}
.flex.tac {
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.flex.tac figure {
  margin: 0 0 10px;
}
@media print, screen and (min-width: 769px) {
  .flex.tac figure {
    margin: 0 5px;
  }
}
.flex.tac figure:last-of-type {
  margin: 0;
}
.flex.tac p {
  text-align: center;
  font-size: 1.3rem;
}
@media print, screen and (min-width: 769px) {
  .flex.tac p {
    font-size: 1.4rem;
  }
}
@media print, screen and (max-width: 768px) {
  .flex.spb {
    display: block;
  }
  .flex.spb > .img,
  .flex.spb > figure {
    text-align: center;
    margin-bottom: 2em;
  }
  .flex.spb > .txt {
    text-align: left;
    margin: 0;
  }
  .flex.spb > .txt.rr {
    margin: 0;
  }
}
@media print, screen and (max-width: 768px) {
  .flex.spb1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
  }
  .flex.spb1 > * {
    width: 100%;
    margin: 0 auto 1em;
    text-align: center;
  }
  .flex.spb1 > *:nth-child(odd) {
    margin-right: 0 !important;
  }
}
@media print, screen and (max-width: 768px) {
  .flex.spb2 > * {
    width: 48%;
    margin-right: 0;
    text-align: center;
  }
  .flex.spb2 > *:nth-child(odd) {
    margin-right: 4%;
  }
}
@media print, screen and (max-width: 768px) {
  .flex.spb3 > * {
    width: 32%;
    margin-right: 2%;
    text-align: center;
  }
  .flex.spb3 > *:nth-child(3n) {
    margin-right: 0;
  }
  .flex.spb3 > *:nth-child(4n) {
    margin-right: 2%;
  }
}

/* ごあいさつ */
.introduction-01 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 480px) {
  .introduction-01 {
    display: block;
  }
}
.introduction-01 figure {
  width: 20.8333333333%;
}
.introduction-01 figure figcaption {
  text-align: right;
  line-height: 1.5;
  margin-top: 1em;
  font-size: calc(14px + 6 * (100vw - 320px) / 1600);
}
.introduction-01 figure figcaption em {
  font-size: calc(18px + 6 * (100vw - 320px) / 1600);
}
@media screen and (max-width: 480px) {
  .introduction-01 figure {
    width: 50%;
    margin: 0 auto 10%;
  }
}
.introduction-01 .txt {
  width: 75%;
}
@media screen and (max-width: 480px) {
  .introduction-01 .txt {
    width: 100%;
  }
}

/* 診療グループ */
.relatedfacilities-01 figure {
  max-width: 1000px;
  padding: 24px;
  border: 1px solid #ccc;
  margin: 0 auto;
}

.relatedfacilities-02 {
  max-width: 1000px;
  margin: 3em auto 0;
}
@media print, screen and (min-width: 481px) {
  .relatedfacilities-02 {
    display: -webkit-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.relatedfacilities-02 a {
  margin-bottom: 10px !important;
}
@media print, screen and (min-width: 769px) {
  .relatedfacilities-02 a {
    margin-bottom: 30px !important;
  }
}

/* 診療グループ */
.group-index {
  display: -webkit-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
.group-index a {
  width: 50%;
}
@media print, screen and (min-width: 481px) and (max-width: 768px) {
  .group-index a {
    width: 33.33%;
  }
}
@media print, screen and (min-width: 769px) {
  .group-index a {
    width: 25%;
  }
}

.cardiology-graph {
  text-align: center;
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  margin: 3em 0;
}
.cardiology-graph figure {
  max-width: 900px;
  margin: 0 auto;
}
.cardiology-graph figure + figure {
  margin-top: 2em;
}
.cardiology-graph figcaption {
  text-align: left;
  margin-bottom: 0.5em;
}
.cardiology-graph .coment {
  margin: 1em 0 0;
  font-size: calc(12px + 2 * (100vw - 320px) / 1600);
}

.img-layout01 {
  text-align: center;
}
@media print, screen and (min-width: 481px) {
  .img-layout01 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media screen and (max-width: 480px) {
  .img-layout01 .col:not(:first-child) {
    margin-top: 10px;
  }
}
@media print, screen and (min-width: 481px) {
  .img-layout01 .col {
    width: 48.3333333333%;
  }
}
@media screen and (max-width: 480px) {
  .img-layout01 .col3:not(:first-child) {
    margin-top: 10px;
  }
}
@media print, screen and (min-width: 481px) {
  .img-layout01 .col3 {
    width: 31.6666666667%;
  }
}

@media print, screen and (min-width: 481px) {
  .img-layout02 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media print, screen and (min-width: 481px) {
  .img-layout02 .img {
    width: 75%;
  }
}
@media screen and (max-width: 480px) {
  .img-layout02 .txt {
    margin-top: 1em;
  }
}
@media print, screen and (min-width: 481px) {
  .img-layout02 .txt {
    width: 22.5%;
  }
}

/* スタッフ紹介 */
.page-link {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  margin-bottom: 6em;
}
.page-link span {
  display: inline-block;
  width: 23.3333333333%;
}
@media print, screen and (max-width: 768px) {
  .page-link span {
    width: 100%;
  }
}

@media print, screen and (min-width: 769px) {
  .page-link + .page-link {
    margin-top: 30px;
  }
}

.staff-block {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  margin-bottom: 3em;
  padding-top: 3em;
}
.staff-block:not(:first-child) {
  border-top: 1px solid #dcdcdc;
}
.staff-block figure {
  width: 29.1666666667%;
}
.staff-block .data {
  width: 65%;
}
.staff-block h2 {
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  margin-bottom: 1.7777777778em;
  border-bottom: 3px solid #999;
  position: relative;
  line-height: 1.4;
}
.staff-block h2 em {
  font-size: calc(28px + 10 * (100vw - 320px) / 1600);
  display: block;
  margin-right: 0.8em;
}
@media print, screen and (min-width: 769px) {
  .staff-block h2 em {
    display: inline-block;
  }
}
.staff-block h2 .home {
  font-size: calc(13px + 3 * (100vw - 320px) / 1600);
  display: block;
  margin: 0.5em 0;
}
@media print, screen and (min-width: 481px) {
  .staff-block h2 .home {
    margin: 0;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
.staff-block h3 {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  font-weight: 500;
}
.staff-block h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 5px;
  background-color: #999;
}
.staff-block h3 + p {
  margin-bottom: 2.1875em;
}
.staff-block.general h2 {
  border-bottom: 3px solid #b4df5a;
}
.staff-block.general h3::after {
  background-color: #b4df5a;
}
.staff-block.neurology h2 {
  border-bottom: 3px solid #20b5eb;
}
.staff-block.neurology h3::after {
  background-color: #20b5eb;
}
.staff-block.neonatology h2 {
  border-bottom: 3px solid #fd8e8e;
}
.staff-block.neonatology h3::after {
  background-color: #fd8e8e;
}
.staff-block.cardiology h2 {
  border-bottom: 3px solid #6873c5;
}
.staff-block.cardiology h3::after {
  background-color: #6873c5;
}
.staff-block.gastroenterology h2 {
  border-bottom: 3px solid #daa271;
}
.staff-block.gastroenterology h3::after {
  background-color: #daa271;
}
.staff-block.hematology_oncology h2 {
  border-bottom: 3px solid #aa76c6;
}
.staff-block.hematology_oncology h3::after {
  background-color: #aa76c6;
}
.staff-block.allergy h2 {
  border-bottom: 3px solid #00b0aa;
}
.staff-block.allergy h3::after {
  background-color: #00b0aa;
}
.staff-block.nephrology h2 {
  border-bottom: 3px solid #d7c447;
}
.staff-block.nephrology h3::after {
  background-color: #d7c447;
}
.staff-block.endocrinology h2 {
  border-bottom: 3px solid #3b8cec;
}
.staff-block.endocrinology h3::after {
  background-color: #3b8cec;
}
.staff-block.genetics h2 {
  border-bottom: 3px solid #ff9200;
}
.staff-block.genetics h3::after {
  background-color: #ff9200;
}
.staff-block.infectious_diseases h2 {
  border-bottom: 3px solid #fd8ec6;
}
.staff-block.infectious_diseases h3::after {
  background-color: #fd8ec6;
}

.staff-block2 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
.staff-block2 article {
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 3.125em;
  width: 32%;
}
@media screen and (max-width: 480px) {
  .staff-block2 article {
    width: 100%;
  }
}
@media print, screen and (min-width: 481px) and (max-width: 768px) {
  .staff-block2 article {
    width: 48.75%;
  }
}
@media print, screen and (min-width: 960px) {
  .staff-block2 article {
    width: 23.3333333333%;
  }
}
.staff-block2 figure {
  margin-bottom: 1.25em;
  text-align: center;
}
.staff-block2 figure img {
  width: 100%;
}
.staff-block2 dl {
  border: 1px solid #999;
  border-radius: 3px;
  -webkit-box-flex: 1;
  flex: 1;
}
.staff-block2 dt {
  color: #fff;
  background-color: #999;
  padding: 0.8em 1em;
}
.staff-block2 dd {
  padding: 0.8em 1em 0;
}
.staff-block2 h2 {
  font-size: calc(12px + 2 * (100vw - 320px) / 1600);
  position: relative;
}
.staff-block2 h2 em {
  font-size: calc(20px + 6 * (100vw - 320px) / 1600);
  font-weight: 500;
  display: block;
  line-height: 1.4;
}
.staff-block2 h2 .home {
  font-size: 1.2rem;
  display: block;
  margin: 0.5em 0;
}
@media print, screen and (min-width: 481px) {
  .staff-block2 h2 .home {
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.staff-block2 h3 {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 0.3em;
  font-weight: 500;
  border-bottom: 1px solid #dcdcdc;
}
.staff-block2 h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #999;
}
.staff-block2 h3 + p {
  margin-bottom: 1em;
}
.staff-block2 article.general dl {
  border: 1px solid #b4df5a;
}
.staff-block2 article.general dt {
  background-color: #b4df5a;
}
.staff-block2 article.general h3::after {
  background-color: #b4df5a;
}
.staff-block2 article.neurology dl {
  border: 1px solid #20b5eb;
}
.staff-block2 article.neurology dt {
  background-color: #20b5eb;
}
.staff-block2 article.neurology h3::after {
  background-color: #20b5eb;
}
.staff-block2 article.neonatology dl {
  border: 1px solid #fd8e8e;
}
.staff-block2 article.neonatology dt {
  background-color: #fd8e8e;
}
.staff-block2 article.neonatology h3::after {
  background-color: #fd8e8e;
}
.staff-block2 article.cardiology dl {
  border: 1px solid #6873c5;
}
.staff-block2 article.cardiology dt {
  background-color: #6873c5;
}
.staff-block2 article.cardiology h3::after {
  background-color: #6873c5;
}
.staff-block2 article.gastroenterology dl {
  border: 1px solid #daa271;
}
.staff-block2 article.gastroenterology dt {
  background-color: #daa271;
}
.staff-block2 article.gastroenterology h3::after {
  background-color: #daa271;
}
.staff-block2 article.hematology_oncology dl {
  border: 1px solid #aa76c6;
}
.staff-block2 article.hematology_oncology dt {
  background-color: #aa76c6;
}
.staff-block2 article.hematology_oncology h3::after {
  background-color: #aa76c6;
}
.staff-block2 article.allergy dl {
  border: 1px solid #00b0aa;
}
.staff-block2 article.allergy dt {
  background-color: #00b0aa;
}
.staff-block2 article.allergy h3::after {
  background-color: #00b0aa;
}
.staff-block2 article.nephrology dl {
  border: 1px solid #d7c447;
}
.staff-block2 article.nephrology dt {
  background-color: #d7c447;
}
.staff-block2 article.nephrology h3::after {
  background-color: #d7c447;
}
.staff-block2 article.endocrinology dl {
  border: 1px solid #3b8cec;
}
.staff-block2 article.endocrinology dt {
  background-color: #3b8cec;
}
.staff-block2 article.endocrinology h3::after {
  background-color: #3b8cec;
}
.staff-block2 article.genetics dl {
  border: 1px solid #ff9200;
}
.staff-block2 article.genetics dt {
  background-color: #ff9200;
}
.staff-block2 article.genetics h3::after {
  background-color: #ff9200;
}
.staff-block2 article.infectious_diseases dl {
  border: 1px solid #fd8ec6;
}
.staff-block2 article.infectious_diseases dt {
  background-color: #fd8ec6;
}
.staff-block2 article.infectious_diseases h3::after {
  background-color: #fd8ec6;
}

/* 研究業績 */
.toc_list li + li {
  margin-top: 0.5em;
}
.toc_list a {
  color: #0075c2;
}

/* 研修医?学生の方へ */
.flex-medicalintern {
  padding: 1em 0 2em;
}
@media print, screen and (min-width: 481px) {
  .flex-medicalintern {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    flex-wrap: wrap;
  }
}
@media print, screen and (min-width: 769px) {
  .flex-medicalintern .btn01,
  .flex-medicalintern .dummy {
    width: 31.6666666667%;
  }
  .flex-medicalintern .btn01:nth-child(n+4),
  .flex-medicalintern .dummy:nth-child(n+4) {
    margin-top: 30px !important;
  }
}
@media print, screen and (min-width: 481px) and (max-width: 768px) {
  .flex-medicalintern .btn01,
  .flex-medicalintern .dummy {
    width: 48%;
  }
  .flex-medicalintern .btn01:nth-child(n+3),
  .flex-medicalintern .dummy:nth-child(n+3) {
    margin-top: 20px !important;
  }
}
@media screen and (max-width: 480px) {
  .flex-medicalintern .btn01 + .btn01 {
    margin-top: 10px !important;
  }
}

.flex-medicalintern2 {
  margin: 0 auto;
  text-align: left;
}
@media print, screen and (min-width: 769px) {
  .flex-medicalintern2 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    flex-wrap: wrap;
    max-width: 900px;
  }
}
@media print, screen and (min-width: 769px) {
  .flex-medicalintern2 > div {
    width: 46.6666666667%;
  }
}
.flex-medicalintern2 h4 {
  font-size: calc(20px + 6 * (100vw - 320px) / 1600);
  font-weight: 500;
  color: #fff;
  background-color: #b4df5a;
  text-align: center;
  padding: 0.2em;
}
.flex-medicalintern2 ul {
  margin-bottom: 1em;
}
.flex-medicalintern2 li {
  position: relative;
  padding: 0.5em 0.5em 0.5em 1.5em;
}
.flex-medicalintern2 li:before {
  display: block;
  content: "";
  background-color: #b4df5a;
  position: absolute;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  top: 1.2em;
  left: 0.8em;
}
.flex-medicalintern2 li + li {
  border-top: 1px solid #dcdcdc;
}
.flex-medicalintern2 .neurology h4 {
  background-color: #20b5eb;
}
.flex-medicalintern2 .neurology li:before {
  background-color: #20b5eb;
}
.flex-medicalintern2 .neonatology h4 {
  background-color: #fd8e8e;
}
.flex-medicalintern2 .neonatology li:before {
  background-color: #fd8e8e;
}
.flex-medicalintern2 .cardiology h4 {
  background-color: #6b74bf;
}
.flex-medicalintern2 .cardiology li:before {
  background-color: #6b74bf;
}
.flex-medicalintern2 .hematology_oncology h4 {
  background-color: #aa76c6;
}
.flex-medicalintern2 .hematology_oncology li:before {
  background-color: #aa76c6;
}
.flex-medicalintern2 .endocrinology h4 {
  background-color: #548be5;
}
.flex-medicalintern2 .endocrinology li:before {
  background-color: #548be5;
}
.flex-medicalintern2 .allergy h4 {
  background-color: #00b0aa;
}
.flex-medicalintern2 .allergy li:before {
  background-color: #00b0aa;
}

.flex-medicalintern3 {
  display: -webkit-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 769px) {
  .flex-medicalintern3 {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media screen and (max-width: 480px) {
  .flex-medicalintern3 {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.flex-medicalintern3 dl {
  text-align: center;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
.flex-medicalintern3 dl dt {
  border-bottom: 1px solid #ccc;
  background-color: #ffdc00;
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
}
.flex-medicalintern3 dl dt.c1 {
  background-color: #f39800;
  color: #fff;
}
.flex-medicalintern3 dl dt.c2 {
  background-color: #9cbb1c;
  color: #fff;
}
.flex-medicalintern3 dl dd {
  padding: 1em;
  line-height: 1.5;
}
@media print, screen and (min-width: 769px) {
  .flex-medicalintern3 dl {
    width: 18.3333333333%;
  }
}
@media print, screen and (min-width: 481px) and (max-width: 768px) {
  .flex-medicalintern3 dl {
    width: 31.6666666667%;
    margin-right: 2.5%;
  }
  .flex-medicalintern3 dl:nth-child(3) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .flex-medicalintern3 dl {
    width: 48%;
  }
}

dl.recruitmentprogram-contact {
  font-size: calc(18px + 4 * (100vw - 320px) / 1600);
  line-height: 1.2;
}
@media print, screen and (min-width: 769px) {
  dl.recruitmentprogram-contact dt {
    float: left;
  }
  dl.recruitmentprogram-contact dt.block {
    float: none;
  }
}
@media print, screen and (min-width: 769px) {
  dl.recruitmentprogram-contact dd {
    padding-left: 7em;
    margin-bottom: 1em;
  }
  dl.recruitmentprogram-contact dd.block {
    padding-left: 0;
    margin-bottom: 1.5em;
  }
}
dl.recruitmentprogram-contact a {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  text-decoration: none;
}
dl.recruitmentprogram-contact a:hover {
  text-decoration: underline;
}

ul.childrearingsupport {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  margin-top: 3.75em !important;
}
ul.childrearingsupport li {
  border: 3px solid #20b5eb;
  border-radius: 6px;
  padding: 1.75em 1.875em 2.375em;
  margin-bottom: 1.875em;
  position: relative;
}
@media screen and (max-width: 480px) {
  ul.childrearingsupport li {
    padding: 1.75em 4% 2.375em;
  }
}
@media print, screen and (min-width: 769px) {
  ul.childrearingsupport li {
    width: 48.3333333333%;
  }
}
ul.childrearingsupport h4 {
  font-size: calc(16px + 6 * (100vw - 320px) / 1600);
  color: #20b5eb;
  margin-bottom: 1em;
}
ul.childrearingsupport h4 em {
  font-size: calc(20px + 10 * (100vw - 320px) / 1600);
}
ul.childrearingsupport h4 span {
  font-size: calc(16px + 6 * (100vw - 320px) / 1600);
  color: #fcf200;
  background-color: #20b5eb;
  padding: 0 1em;
  margin: 0 1em 0 -1.6em;
  display: inline-block;
}
@media screen and (max-width: 480px) {
  ul.childrearingsupport h4 span {
    margin: 0 -4.3%;
  }
}
ul.childrearingsupport h5 {
  font-size: calc(14px + 6 * (100vw - 320px) / 1600);
  background-color: #20b5eb;
  color: #fff;
  padding: 0 1.5em;
  position: absolute;
  right: 0;
  top: 25px;
}
ul.childrearingsupport > li > div:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  line-height: 0;
  visibility: hidden;
  font-size: 0;
}
ul.childrearingsupport figure {
  margin: 0 0 2em;
  text-align: center;
}
@media print, screen and (min-width: 481px) {
  ul.childrearingsupport figure {
    margin: 0 1.5em 1em 0;
    float: left;
  }
}
@media print, screen and (min-width: 481px) {
  ul.childrearingsupport p {
    -webkit-box-flex: 1;
    flex: 1;
  }
}
@media print, screen and (min-width: 769px) {
  ul.childrearingsupport li.v2 {
    width: 100%;
  }
}
@media print, screen and (min-width: 481px) {
  ul.childrearingsupport li.v2 figure {
    float: right;
    margin: 0 0 1em 1.5em;
  }
}
ul.childrearingsupport li.general {
  border: 3px solid #bddd6e;
}
ul.childrearingsupport li.neurology {
  border: 3px solid #20b5eb;
}
ul.childrearingsupport li.neonatology {
  border: 3px solid #fd8e8e;
}
ul.childrearingsupport li.cardiology {
  border: 3px solid #8f76d6;
}
ul.childrearingsupport li.gastroenterology {
  border: 3px solid #d0a478;
}
ul.childrearingsupport li.hematology_oncology {
  border: 3px solid #aa76c6;
}
ul.childrearingsupport li.allergy {
  border: 3px solid #f39702;
}
ul.childrearingsupport li.nephrology {
  border: 3px solid #d7c447;
}
ul.childrearingsupport li.endocrinology {
  border: 3px solid #3d6fbf;
}
ul.childrearingsupport li.genetics {
  border: 3px solid #1dada9;
}
ul.childrearingsupport li.infectious_diseases {
  border: 3px solid #fd8ec6;
}
ul.childrearingsupport .general h4 {
  color: #bddd6e;
}
ul.childrearingsupport .neurology h4 {
  color: #20b5eb;
}
ul.childrearingsupport .neonatology h4 {
  color: #fd8e8e;
}
ul.childrearingsupport .cardiology h4 {
  color: #8f76d6;
}
ul.childrearingsupport .gastroenterology h4 {
  color: #d0a478;
}
ul.childrearingsupport .hematology_oncology h4 {
  color: #aa76c6;
}
ul.childrearingsupport .allergy h4 {
  color: #f39702;
}
ul.childrearingsupport .nephrology h4 {
  color: #d7c447;
}
ul.childrearingsupport .endocrinology h4 {
  color: #3d6fbf;
}
ul.childrearingsupport .genetics h4 {
  color: #1dada9;
}
ul.childrearingsupport .infectious_diseases h4 {
  color: #fd8ec6;
}
ul.childrearingsupport .general h5 {
  background-color: #bddd6e;
}
ul.childrearingsupport .neurology h5 {
  background-color: #20b5eb;
}
ul.childrearingsupport .neonatology h5 {
  background-color: #fd8e8e;
}
ul.childrearingsupport .cardiology h5 {
  background-color: #8f76d6;
}
ul.childrearingsupport .gastroenterology h5 {
  background-color: #d0a478;
}
ul.childrearingsupport .hematology_oncology h5 {
  background-color: #aa76c6;
}
ul.childrearingsupport .allergy h5 {
  background-color: #f39702;
}
ul.childrearingsupport .nephrology h5 {
  background-color: #d7c447;
}
ul.childrearingsupport .endocrinology h5 {
  color: #3d6fbf;
}
ul.childrearingsupport .genetics h5 {
  color: #1dada9;
}
ul.childrearingsupport .infectious_diseases h5 {
  background-color: #fd8ec6;
}

.contact-tel {
  font-size: calc(12px + 2 * (100vw - 320px) / 1600);
  display: block;
}
.contact-tel em {
  font-size: calc(30px + 10 * (100vw - 320px) / 1600);
  font-weight: 600;
}

.contact-tel2 {
  font-size: calc(20px + 10 * (100vw - 320px) / 1600);
  display: block;
}

.contact-tel3 {
  font-size: calc(12px + 2 * (100vw - 320px) / 1600);
  display: block;
}
.contact-tel3 em {
  font-size: calc(20px + 6 * (100vw - 320px) / 1600);
}

.contact-add {
  font-size: calc(18px + 4 * (100vw - 320px) / 1600);
}

.contact-h4 {
  font-size: calc(18px + 4 * (100vw - 320px) / 1600);
  font-weight: 400;
  margin-top: 1em;
}

/* 教育コンテンツ */
#educationalcontent p.ymd {
  text-align: right;
  margin-bottom: 3.3125em;
}
#educationalcontent .ta-c {
  padding-top: 5em;
}
#educationalcontent .ta-c .btn01 {
  max-width: 400px;
  margin: 0 auto !important;
}

/* 本学卒業生の方へ */
.graduate-info {
  background-color: #f2f8e0;
  max-width: 480px;
  text-align: center;
  margin: 0 auto;
  padding: 1em;
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}
.graduate-info em {
  display: block;
  margin: 1em 0;
  font-size: calc(20px + 2 * (100vw - 320px) / 1600);
}

/* Parts                                         
/* --------------------------------------------------- */
/* タイトル */
.h01 {
  color: #000;
  margin-bottom: 3em;
  text-align: center;
  line-height: 1;
}
.h01 .jp {
  font-size: calc(30px + 15 * (100vw - 320px) / 1600);
  font-weight: 500;
}
.h01 .jp::after {
  content: "";
  width: 30px;
  height: 3px;
  display: block;
  margin: 0 auto;
  background-color: #A9A9A9;
  margin-top: 0.5em;
}
@media print, screen and (min-width: 769px) {
  .h01 .jp {
    font-size: 4.5rem;
  }
}
.h01 .en {
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  font-weight: 400;
  color: #A9A9A9;
}
@media print, screen and (min-width: 769px) {
  .h01 .en {
    font-size: 1.6rem;
  }
}
#general .h01 {
  color: #B4DF5A;
}
#neurology .h01 {
  color: #20B5EB;
}
#neonatology .h01 {
  color: #FD8E8E;
}
#cardiology .h01 {
  color: #6873C5;
}
#gastroenterology .h01 {
  color: #DAA271;
}
#hematology_oncology .h01 {
  color: #AA76C6;
}
#allergy .h01 {
  color: #00B0AA;
}
#nephrology .h01 {
  color: #D7C447;
}
#endocrinology .h01 {
  color: #3B8CEC;
}
#genetics .h01 {
  color: #FF9200;
}
#infectious_diseases .h01 {
  color: #FD8EC6;
}

.h02 {
  font-size: calc(16px + 6 * (100vw - 320px) / 1600);
  font-weight: 500;
  border-bottom: 1px solid #A9A9A9;
  margin-bottom: 0.75em;
  position: relative;
  text-align: left;
}
@media print, screen and (min-width: 769px) {
  .h02 {
    font-size: 2.2rem;
  }
}
.h02::after {
  content: "";
  width: 100px;
  height: 3px;
  display: block;
  background-color: #C7EB52;
  margin-top: 0.5em;
  position: absolute;
  bottom: -1px;
  left: 0;
}
#general .h02::after {
  background-color: #B4DF5A;
}
#neurology .h02::after {
  background-color: #20B5EB;
}
#neonatology .h02::after {
  background-color: #FD8E8E;
}
#cardiology .h02::after {
  background-color: #6873C5;
}
#gastroenterology .h02::after {
  background-color: #DAA271;
}
#hematology_oncology .h02::after {
  background-color: #AA76C6;
}
#allergy .h02::after {
  background-color: #00B0AA;
}
#nephrology .h02::after {
  background-color: #D7C447;
}
#endocrinology .h02::after {
  background-color: #3B8CEC;
}
#genetics .h02::after {
  background-color: #FF9200;
}
#infectious_diseases .h02::after {
  background-color: #FD8EC6;
}
#medicalintern .h02::after, .medicalintern .h02::after, #educationalcontent .h02::after {
  background-color: #6699DD;
}
#publications .h02::after {
  background-color: #AAD02F;
}

.h03 {
  font-size: calc(16px + 6 * (100vw - 320px) / 1600);
  margin-bottom: 0.3em;
  text-align: left;
}
@media print, screen and (min-width: 769px) {
  .h03 {
    font-size: 2.2rem;
  }
}

/* Other */
.mt0 {
  margin-top: 0em !important;
}

.mt1 {
  margin-top: 1em !important;
}

.mt2 {
  margin-top: 2em !important;
}

.mt3 {
  margin-top: 3em !important;
}

.mb00 {
  margin-bottom: 0 !important;
}

.mb05 {
  margin-bottom: 0.5em !important;
}

.mb10 {
  margin-bottom: 1em !important;
}

.mb15 {
  margin-bottom: 1.5em !important;
}

.mb20 {
  margin-bottom: 2em !important;
}

.mb25 {
  margin-bottom: 2.5em !important;
}

.mb30 {
  margin-bottom: 3em !important;
}

.mb40 {
  margin-bottom: 4em !important;
}

.mb50 {
  margin-bottom: 5em !important;
}

.ml1 {
  margin-left: 1em !important;
}

.ml2 {
  margin-left: 2em !important;
}

.ml3 {
  margin-left: 3em !important;
}

.mr1 {
  margin-right: 1em !important;
}

.mr2 {
  margin-right: 2em !important;
}

.mr3 {
  margin-right: 3em !important;
}

.pt6 {
  padding-top: 6em !important;
}

.font-bold {
  font-weight: 500 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.fs-italic {
  font-style: italic !important;
}

.float-left {
  float: left !important;
}

.ml4ps {
  margin-left: 4% !important;
}

.mr4ps {
  margin-right: 4% !important;
}

.ta-l {
  text-align: left !important;
}

.ta-r {
  text-align: right !important;
}

.ta-c {
  text-align: center !important;
}

.fs13 {
  font-size: 1.3rem !important;
}

.fsL {
  font-size: 118% !important;
}

.fs2L {
  font-size: 138% !important;
}

.bts {
  border-top: 1px solid #ccc;
}

.bbs {
  border-bottom: 1px solid #ccc;
}

.fc01 {
  color: #FF0004 !important;
}

.fc02 {
  color: #339900 !important;
}

.fc03 {
  color: #e59 !important;
}

strong {
  font-weight: 500;
}

.nowrap {
  white-space: nowrap !important;
}

.fs14 {
  font-size: 1.2rem !important;
}
@media print, screen and (min-width: 769px) {
  .fs14 {
    font-size: 1.4rem !important;
  }
}

.ff01 {
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

/* table */
@media print, screen and (max-width: 768px) {
  .tableScroll {
    overflow: auto;
    white-space: nowrap;
  }
  .tableScroll table {
    width: 100%;
  }
}
.tableScroll::-webkit-scrollbar {
  height: 10px;
}
.tableScroll::-webkit-scrollbar-track {
  background: #F1F1F1;
}
.tableScroll::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}
@media screen and (max-width: 480px) {
  .tableScroll .table-medicalintern {
    width: 600px;
  }
}

@media print, screen and (max-width: 1000px) {
  .tableScroll2 {
    overflow: auto;
    white-space: nowrap;
  }
  .tableScroll2 table {
    width: 100%;
  }
}
.tableScroll2::-webkit-scrollbar {
  height: 10px;
}
.tableScroll2::-webkit-scrollbar-track {
  background: #F1F1F1;
}
.tableScroll2::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}
@media print, screen and (max-width: 1000px) {
  .tableScroll2 .table-graduate {
    width: 1200px;
  }
}
@media screen and (max-width: 480px) {
  .tableScroll2 .table-graduate {
    width: 800px;
  }
}

.table-medicalintern {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
}
.table-medicalintern caption {
  font-weight: 400;
  text-align: left;
}
.table-medicalintern th, .table-medicalintern td {
  text-align: center;
  padding: 0 0.5em;
  font-size: 1.2rem;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
}
@media print, screen and (min-width: 769px) {
  .table-medicalintern th, .table-medicalintern td {
    font-size: 1.4rem;
  }
}
.table-medicalintern th {
  font-weight: 400;
  font-size: calc(12px + 2 * (100vw - 320px) / 1600);
}
.table-medicalintern td {
  background: #fff;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.table-medicalintern .head {
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}
.table-medicalintern .c1 {
  background-color: #6873C5;
  color: #fff;
}
.table-medicalintern .c2 {
  background-color: #A7E13B;
}
.table-medicalintern .c3 {
  background-color: #FF7D87;
  color: #fff;
}
.table-medicalintern .c4 {
  background-color: #B375D0;
  color: #fff;
}
.table-medicalintern .c5 {
  background-color: #FF9300;
  color: #fff;
}
.table-medicalintern .c6 {
  background-color: #FFDB00;
}
.table-medicalintern .c7 {
  background-color: #00BBF7;
  color: #fff;
}

.table-graduate {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
}
.table-graduate th, .table-graduate td {
  text-align: center;
  padding: 0.5em;
  font-weight: 400;
  line-height: 1.6;
}
.table-graduate th {
  border-left: 1px solid #999;
  border-bottom: 1px solid #999;
  font-size: calc(12px + 2 * (100vw - 320px) / 1600);
}
.table-graduate td {
  border-left: 1px solid #fff;
  color: #fff;
  background-color: #6873C5;
  font-size: calc(12px + 4 * (100vw - 320px) / 1600);
  vertical-align: top;
}
.table-graduate .head {
  width: 2em;
  font-size: calc(13px + 2 * (100vw - 320px) / 1600);
  background-color: #CCCCCC;
  color: #fff;
  border-left: none;
  border-bottom: none;
  vertical-align: middle;
}
@media print, screen and (max-width: 1000px) {
  .table-graduate .head {
    width: 3em;
  }
}
.table-graduate em {
  display: block;
  margin-bottom: 0.5em;
}
.table-graduate em.cate01 {
  color: #fff;
  background-color: #AAD02F;
}
.table-graduate em.cate02 {
  color: #fff;
  background-color: #FD8E8E;
}
.table-graduate em:first-child {
  height: 3em;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.table-graduate.v2 td {
  background-color: #A17CC6;
}
.table-graduate.v3 td {
  background-color: #21BBF7;
}
.table-graduate.v4 td {
  background-color: #D0A478;
}

/* ボタン */
.btn01 {
  /*@include btnV1() ;*/
  background: #fff;
  overflow: hidden;
  text-decoration: none !important;
  position: relative;
  line-height: 1.4;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  width: 47.0588235294%;
  border-radius: 50px;
  padding: 4.45% 4% 4.45% 6%;
  margin-bottom: 3%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.btn01:hover {
  text-decoration: none;
  color: #fff;
  background-color: #C7EB52;
}
@media print, screen and (max-width: 768px) {
  .btn01 {
    width: 100%;
  }
}
.btn01::after {
  display: none;
}
.btn01 .arrow {
  display: block;
  width: 24px;
  height: 5px;
  position: relative;
  z-index: 1;
}
.btn01 .arrow::after {
  content: "";
  border-bottom: 1px solid #C7EB52;
  width: 24px;
  height: 2px;
  display: block;
}
.btn01 .arrow::before {
  content: "";
  border-right: 1px solid #C7EB52;
  width: 1px;
  height: 6px;
  display: block;
  position: absolute;
  top: -3px;
  right: 2px;
  transform: rotate(-45deg);
}
.btn01:hover .arrow::after {
  border-bottom: 1px solid #fff !important;
}
.btn01:hover .arrow::before {
  border-right: 1px solid #fff !important;
}
.btn01.p2 {
  padding: 2.9% 4% 2.9% 6%;
}
.btn01.p2 em {
  display: block;
  font-size: calc(12px + 4 * (100vw - 320px) / 960);
}
.btn01 .i-opwn {
  fill: #6699DD;
  height: 16px;
}
.btn01 .i-opwn svg {
  vertical-align: top;
}
.btn01:hover .i-opwn {
  fill: #fff;
}
#medicalintern .btn01, #childrearingsupport .btn01, #relatedfacilities .btn01, #contact .btn01, #educationalcontent .btn01 {
  font-size: calc(16px + 6 * (100vw - 320px) / 1600);
  height: 100px;
  padding: 0 2em;
  margin: 0;
  border: 2px solid #6699DD;
}
@media print, screen and (max-width: 768px) {
  #medicalintern .btn01, #childrearingsupport .btn01, #relatedfacilities .btn01, #contact .btn01, #educationalcontent .btn01 {
    height: 80px;
  }
}
@media screen and (max-width: 480px) {
  #medicalintern .btn01, #childrearingsupport .btn01, #relatedfacilities .btn01, #contact .btn01, #educationalcontent .btn01 {
    width: 100%;
    height: 60px;
    font-size: 1.4rem;
  }
}
#medicalintern .btn01:hover, #childrearingsupport .btn01:hover, #relatedfacilities .btn01:hover, #contact .btn01:hover, #educationalcontent .btn01:hover {
  color: #fff;
  background-color: #6699DD;
}
#medicalintern .btn01::before, #childrearingsupport .btn01::before, #relatedfacilities .btn01::before, #contact .btn01::before, #educationalcontent .btn01::before {
  background-color: #6699DD;
}
#medicalintern .btn01 .arrow::after, #childrearingsupport .btn01 .arrow::after, #relatedfacilities .btn01 .arrow::after, #contact .btn01 .arrow::after, #educationalcontent .btn01 .arrow::after {
  border-bottom: 1px solid #6699DD;
}
#medicalintern .btn01 .arrow::before, #childrearingsupport .btn01 .arrow::before, #relatedfacilities .btn01 .arrow::before, #contact .btn01 .arrow::before, #educationalcontent .btn01 .arrow::before {
  border-right: 1px solid #6699DD;
}
#medicalintern .btn01:hover .arrow::after, #childrearingsupport .btn01:hover .arrow::after, #relatedfacilities .btn01:hover .arrow::after, #contact .btn01:hover .arrow::after, #educationalcontent .btn01:hover .arrow::after {
  border-bottom: 1px solid #fff;
}
#medicalintern .btn01:hover .arrow::before, #childrearingsupport .btn01:hover .arrow::before, #relatedfacilities .btn01:hover .arrow::before, #contact .btn01:hover .arrow::before, #educationalcontent .btn01:hover .arrow::before {
  border-right: 1px solid #fff;
}
#medicalintern .btn01 .i-opwn svg, #childrearingsupport .btn01 .i-opwn svg, #relatedfacilities .btn01 .i-opwn svg, #contact .btn01 .i-opwn svg, #educationalcontent .btn01 .i-opwn svg {
  vertical-align: text-top;
}
#relatedfacilities .btn01 {
  color: #6699DD;
  width: 48%;
}
#relatedfacilities .btn01 .i-opwn {
  fill: #6699DD;
}
#relatedfacilities .btn01:hover .i-opwn {
  fill: #fff;
}
#staff .btn01 {
  font-size: calc(16px + 6 * (100vw - 320px) / 1600);
  height: 100px;
  width: 100%;
  max-width: 450px;
  padding: 0 2em;
  margin: 0 auto;
  border: 2px solid #C7EB52;
}
@media print, screen and (max-width: 768px) {
  #staff .btn01 {
    height: 60px;
  }
}
#staff .btn01:hover {
  color: #000;
  background-color: #C7EB52;
}
#staff .btn01 .arrow::after {
  border-bottom: 1px solid #000;
}
#staff .btn01 .arrow::before {
  border-right: 1px solid #000;
}
#staff .btn01:hover .arrow::after {
  border-bottom: 1px solid #000 !important;
}
#staff .btn01:hover .arrow::before {
  border-right: 1px solid #000 !important;
}
#contact .btn01 {
  border: 2px solid #C7EB52;
}
#contact .btn01:hover {
  color: #000;
  background-color: #C7EB52;
}
#contact .btn01::before {
  background-color: #C7EB52;
}
#contact .btn01 .i-opwn {
  fill: #C7EB52;
}
#contact .btn01:hover .i-opwn {
  fill: #000;
}

.btn02, .btn02:active, .btn02:visited {
  background: #fff;
  overflow: hidden;
  text-decoration: none !important;
  position: relative;
  line-height: 1.4;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  height: 70px;
  width: 23.3333333333%;
  color: #6699DD !important;
  border: 3px solid #6699DD;
  background-color: #fff;
  padding: 0 1em;
  text-align: left;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.btn02::after, .btn02:active::after, .btn02:visited::after {
  content: "";
  margin-left: 5px;
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border-top: 2px solid #e59;
  border-right: 2px solid #e59;
}
.btn02:hover::after, .btn02:active:hover::after, .btn02:visited:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.btn02::before, .btn02:active::before, .btn02:visited::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn02::before, .btn02:active::before, .btn02:visited::before {
  background: #C7EB52;
}
.btn02:hover, .btn02:focus, .btn02:active, .btn02:active:hover, .btn02:active:focus, .btn02:active:active, .btn02:visited:hover, .btn02:visited:focus, .btn02:visited:active {
  text-decoration: none;
  color: #fff;
}
.btn02:hover:before, .btn02:focus:before, .btn02:active:before, .btn02:active:hover:before, .btn02:active:focus:before, .btn02:active:active:before, .btn02:visited:hover:before, .btn02:visited:focus:before, .btn02:visited:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
@media print, screen and (max-width: 768px) {
  .btn02, .btn02:active, .btn02:visited {
    height: 60px;
    width: 100%;
    margin-bottom: 5px;
  }
}
.btn02 em, .btn02:active em, .btn02:visited em {
  display: inline-block;
  margin-right: 1em;
}
.btn02::before, .btn02:active::before, .btn02:visited::before {
  background-color: #6699DD;
}
.btn02:hover, .btn02:focus, .btn02:active, .btn02:active:hover, .btn02:active:focus, .btn02:active:active, .btn02:visited:hover, .btn02:visited:focus, .btn02:visited:active {
  color: #fff !important;
}
.btn02::after, .btn02:active::after, .btn02:visited::after {
  content: "";
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border-top: 2px solid #6699DD;
  border-right: 2px solid #6699DD;
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -4px;
}
.btn02:hover::after, .btn02:active:hover::after, .btn02:visited:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.btn02.current, .btn02:active.current, .btn02:visited.current {
  background-color: #6699DD;
  color: #fff !important;
  pointer-events: none;
}
.btn02.current::after, .btn02:active.current::after, .btn02:visited.current::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}

.pdf-download {
  text-decoration: none !important;
  line-height: 1;
}
.pdf-download span {
  display: inline-block;
  margin: 0 5px;
  vertical-align: middle;
}
.pdf-download:hover {
  color: #e59;
}
.pdf-download .i-pdf, .pdf-download .i-download {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pdf-download:hover .i-pdf, .pdf-download:hover .i-download {
  fill: #e59;
}
.pdf-download svg {
  vertical-align: top;
}

/* ul */
.ul-flex.w1 {
  max-width: 400px;
}

.ul-flex > li {
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  line-height: 1.2;
  white-space: nowrap;
}
.ul-flex > li:not(:first-child) {
  margin-top: 10px;
}
.ul-flex > li .arrow02 {
  display: inline-block;
  height: 13px;
  margin-right: 5px;
}
.ul-flex > li .arrow02 svg {
  vertical-align: top;
}
.ul-flex > li .line {
  width: 100%;
  height: 1px;
  border-top: 1px dotted #000;
  display: inline-block;
  margin: 0 5px;
  min-width: 2em;
}
@media screen and (max-width: 480px) {
  .ul-flex > li .line {
    min-width: 0;
  }
}
.ul-flex > li .ken {
  margin-left: auto;
}

.ul01 > li {
  position: relative;
  padding-left: 1em;
}
.ul01 > li:not(:first-child) {
  margin-top: 1em;
}
.ul01 > li:before {
  display: block;
  content: "";
  background-color: #000;
  position: absolute;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  top: 0.8em;
  left: 0.3em;
}

.ul01.v2 li:not(:first-child) {
  margin-top: 0;
}

.ul01.sq > li:before {
  border-radius: 0;
  top: 0.5em;
}
.ul01.sq > li.fc01:before {
  background-color: #2552c2;
}
.ul01.sq > li.fc01 .cb {
  color: #000;
}

.ul02 > li {
  text-indent: -1em;
  padding-left: 1em;
}

ol {
  counter-reset: number 0;
}
ol > li {
  padding-left: 1.5em;
  position: relative;
}
ol > li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  position: absolute;
  top: 0;
  left: 0;
}
ol > li:not(:first-child) {
  margin-top: 1em;
}
ol > li:nth-child(n+100) {
  padding-left: 2.1em;
}
ol ul {
  margin-top: 5px;
}
@media print, screen and (min-width: 769px) {
  ol.ol-flex {
    display: -webkit-flex;
    display: flex;
  }
}
@media print, screen and (min-width: 769px) {
  ol.ol-flex > li {
    margin-top: 0;
  }
  ol.ol-flex > li:first-child {
    margin-right: 3em;
  }
}
@media screen and (max-width: 480px) {
  ol.ol-flex > li .ul-flex {
    margin-left: -1.5em;
  }
}
ol.large > li {
  font-size: calc(16px + 6 * (100vw - 320px) / 1600);
}
ol.large > li + li {
  margin-top: 2em;
}
ol.large > li p {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  margin-top: 0.5em;
}
ol.v2 li:not(:first-child) {
  margin-top: 0;
}

ol.num {
  counter-reset: number 0;
}
ol.num li {
  padding-left: 2.5em;
  margin: 0 0 2em;
  position: relative;
}
ol.num li::before {
  counter-increment: number 1;
  content: counter(number) "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2em;
  height: 2em;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  color: #fff;
  background-color: #e59;
}
ol.num.imgIn li::after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  visibility: hidden;
  line-height: 0;
  font-size: 0;
}
ol.num.imgIn figure {
  margin-bottom: 1em;
}
@media print, screen and (min-width: 769px) {
  ol.num.imgIn figure {
    float: right;
    margin: 0 0 0 2em;
  }
}
#support ol.num li::before {
  background-color: #339900;
}

/* dl */
@media print, screen and (min-width: 769px) {
  .dl01 dt {
    float: left;
  }
}
@media print, screen and (min-width: 769px) {
  .dl01 dd {
    padding-left: 4em;
  }
}

/* iframe */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.googleMap iframe {
  width: 100%;
  height: 500px;
}
@media print, screen and (min-width: 769px) {
  .googleMap iframe {
    height: 600px;
  }
}

/* get General Style */
.getAdobeReader {
  background-color: #E9EBEF;
  padding: 5px;
}
@media print, screen and (max-width: 768px) {
  .getAdobeReader {
    text-align: center;
  }
}
@media print, screen and (max-width: 768px) {
  .getAdobeReader img {
    margin-bottom: 10px;
  }
}
@media print, screen and (min-width: 769px) {
  .getAdobeReader img {
    float: left;
    width: 158px;
    display: block;
  }
}
@media print, screen and (max-width: 768px) {
  .getAdobeReader p {
    text-align: left;
  }
}
@media print, screen and (min-width: 769px) {
  .getAdobeReader p {
    margin-left: 168px;
  }
}

.sp-display {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp-display {
    display: block;
  }
}

.tb-display {
  display: block;
}
@media print, screen and (min-width: 769px) {
  .tb-display {
    display: none;
  }
}

.tbpc-display {
  display: none;
}
@media print, screen and (min-width: 481px) and (max-width: 768px) {
  .tbpc-display {
    display: block;
  }
}
@media print, screen and (min-width: 769px) {
  .tbpc-display {
    display: block;
  }
}

.pc-display {
  display: none;
}
@media print, screen and (min-width: 769px) {
  .pc-display {
    display: block;
  }
}

.tel-link, .mail-link {
  text-decoration: none !important;
  color: #000 !important;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* clearfix */
.inner section:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  line-height: 0;
  visibility: hidden;
  font-size: 0;
}/*# sourceMappingURL=style.css.map */