@charset "UTF-8";
/* ==============================================================
*  BASE
* ============================================================ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* IE11だけに適応 */
_:lang(x)::-ms-backdrop, .selector {
  font-family: "Segoe UI", "メイリオ", Meiryo, sans-serif;
}

/*
*  font
* ----------------------------------------*/
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 200;
  src: url("/common/css/fonts/NotoSansCJKjp-Light.woff2") format("woff2"), url("/common/css/fonts/NotoSansCJKjp-Light.woff") format("woff"), url("/common/css/fonts/NotoSansCJKjp-Light.ttf") format("truetype"), url("/common/css/fonts/NotoSansCJKjp-Light.eot") format("embedded-opentype");
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 400;
  src: url("/common/css/fonts/NotoSansCJKjp-Regular.woff2") format("woff2"), url("/common/css/fonts/NotoSansCJKjp-Regular.woff") format("woff"), url("/common/css/fonts/NotoSansCJKjp-Regular.ttf") format("truetype"), url("/common/css/fonts/NotoSansCJKjp-Regular.eot") format("embedded-opentype");
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 500;
  src: url("/common/css/fonts/NotoSansCJKjp-Medium.woff2") format("woff2"), url("/common/css/fonts/NotoSansCJKjp-Medium.woff") format("woff"), url("/common/css/fonts/NotoSansCJKjp-Medium.ttf") format("truetype"), url("/common/css/fonts/NotoSansCJKjp-Medium.eot") format("embedded-opentype");
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 700;
  src: url("/common/css/fonts/NotoSansCJKjp-Bold.woff2") format("woff2"), url("/common/css/fonts/NotoSansCJKjp-Bold.woff") format("woff"), url("/common/css/fonts/NotoSansCJKjp-Bold.ttf") format("truetype"), url("/common/css/fonts/NotoSansCJKjp-Bold.eot") format("embedded-opentype");
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-size: 1.5rem;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: calc(1px - 0.0625em);
  -webkit-text-size-adjust: none;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

_:-ms-lang(x)::-ms-backdrop, body {
  font-family: "Segoe UI", "メイリオ", Meiryo, sans-serif;
}

a {
  color: #000;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a, button, input[type=button], input[type=reset], input[type=submit] {
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.inner {
  max-width: 1000px;
}

.inner-l {
  max-width: 1200px;
}

.inner, .inner-l {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.clear {
  content: "";
  display: block;
  clear: both;
}

/* ==============================================================
*  LAYOUT
* ============================================================ */
/*
*  header
* ----------------------------------------*/
header {
  width: 100%;
  border-top: 6px solid #7fbe26;
  padding: 8px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #fff;
}
header .inner-l {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 98%;
}
header .header_logo {
  max-width: 140px;
  width: 40%;
}
header .top_header_btn_area {
  display: none;
}
@media screen and (min-width: 769px) {
  header {
    height: 100px;
    padding: 25px 0 0;
    position: static;
  }
  header .sp_sticky {
    display: none;
  }
  header .header_logo {
    max-width: 240px;
    width: 25%;
  }
  header .top_header_btn_area {
    display: block;
  }
  header .btn_contact {
    margin-right: 20px;
  }
}
header _::-webkit-full-page-media, header _:future, header :root .btn_contact {
  display: inline-block;
}
header _::-webkit-full-page-media, header _:future, header :root .btn_tel {
  display: inline-block;
}

/*
*  navigation
* ----------------------------------------*/
.nav-btn {
  display: block;
  height: 60px;
  width: 60px;
  background-color: #7fbe26;
  position: fixed;
  top: 3px;
  right: 0;
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.nav-btn span {
  position: absolute;
  left: 17px;
  top: 50%;
  width: 26px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease-out;
}
.nav-btn span:nth-child(1) {
  transform: translateY(-7px);
  animation-delay: 100ms;
}
.nav-btn span:nth-child(3) {
  transform: translateY(7px);
  animation-delay: 250ms;
}

nav {
  background-color: #fff;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease-out;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  padding-top: 10px;
}
nav ul {
  width: 100%;
}
nav li + li {
  margin-top: 5px;
}
nav li a {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  padding: 10px;
}

.open #overlay {
  visibility: visible;
  background: rgba(0, 0, 0, 0.75);
}
.open .nav-btn span {
  background-color: #fff;
}
.open .nav-btn span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.open .nav-btn span:nth-child(2) {
  opacity: 0;
}
.open .nav-btn span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.open nav {
  opacity: 1;
  width: 100%;
  right: 0;
  overflow: auto;
  margin-top: 60px;
}

#overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: all 0.3s ease-out;
  z-index: 1;
}

.g_nav .pc_navi {
  display: none;
}
.g_nav .sp_navi .top_header_btn_area {
  text-align: center;
}
.g_nav .sp_navi .top_header_btn_area div {
  margin-bottom: 20px;
}
.g_nav .sp_navi .sp_navi_list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}
.g_nav .sp_navi .sp_navi_list li {
  width: 48.6%;
  border: 1px solid #d3d3d3;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin: 0 0 9px 0;
}
.g_nav .sp_navi .sp_navi_list li a {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #2d2d2d;
  font-size: 1.6rem;
  text-decoration: none;
  padding: 14px;
  line-height: 1.4;
}
.g_nav .sp_navi .sp_navi_list li a img {
  margin-bottom: 5px;
}
.g_nav .sp_navi .sp_navi_list li a small {
  color: #979797;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: normal;
}
@media screen and (min-width: 769px) {
  .g_nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .g_nav .nav-btn {
    display: none;
  }
  .g_nav .pc_navi {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .g_nav .pc_navi ul {
    width: 98%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    padding: 25px 0 25px;
  }
  .g_nav .pc_navi ul li {
    width: calc(100% / 7);
    border-right: 1px solid #d8d8d8;
    margin-bottom: 8px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .g_nav .pc_navi ul li:first-child {
    border-left: 1px solid #d8d8d8;
  }
  .g_nav .pc_navi ul li:hover {
    opacity: 0.7;
  }
  .g_nav .pc_navi ul li a {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #2d2d2d;
  }
  .g_nav .pc_navi ul li a img {
    margin-bottom: 5px;
  }
  .g_nav .pc_navi ul li a span {
    font-size: 1.8rem;
    display: block;
    line-height: 1.4;
  }
  .g_nav .pc_navi ul li a small {
    display: block;
    font-size: 1.2rem;
    color: #979797;
    line-height: 1;
    font-weight: normal;
  }
  .g_nav .pc_navi.pc_navi_fix ul {
    padding: 12px 0 12px;
  }
  .g_nav .pc_navi.pc_navi_fix ul li {
    margin-bottom: 0;
  }
  .g_nav .pc_navi.pc_navi_fix ul li a img {
    height: 30px;
    margin-bottom: 3px;
  }
}

/*
*  footer
* ----------------------------------------*/
.footer {
  background-color: #f4faee;
  margin-top: 40px;
}
.footer .logo_area {
  margin-bottom: 20px;
}
.footer .logo_area .footer_logo {
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}
.footer .logo_area .footer_logo img {
  width: auto;
  max-width: 180px;
}
.footer .logo_area .footer_logo p {
  font-size: 1.3rem;
  margin-top: 8px;
  color: #5b5b5b;
  font-weight: bold;
}
.footer .footer_btn_area {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.footer .footer_btn_area .btn_contact {
  margin-right: 10px;
}
.footer .copy_area .footer_add {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #5b5b5b;
}
.footer .copy_area .footer_copy {
  font-size: 1.2rem;
  color: #5b5b5b;
}
.footer .arrow_list_footer li {
  margin-bottom: 5px;
}
.footer .arrow_list_footer .arrow_list_ico {
  position: relative;
  padding-left: 15px;
}
.footer .arrow_list_footer .arrow_list_ico:before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #7fbe26;
  border-right: solid 2px #7fbe26;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 11px;
  left: 0;
  margin-top: -3px;
}
.footer .arrow_list_footer .ico_no {
  font-weight: bold;
}
.footer .arrow_list_footer .list_disc li:after {
  top: 7px;
}
@media screen and (min-width: 769px) {
  .footer {
    margin-top: 80px;
  }
  .footer .logo_area {
    margin-bottom: 10px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
  .footer .logo_area .footer_logo {
    margin-bottom: 0;
    width: 100%;
    max-width: 239px;
    text-align: left;
  }
  .footer .logo_area .footer_logo img {
    width: 100%;
    max-width: 240px;
  }
  .footer .footer_btn_area {
    display: block;
  }
  .footer .footer_btn_area .btn_contact {
    margin-right: 15px;
  }
  .footer .copy_area {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
  .footer .copy_area .footer_add {
    margin-bottom: 0;
  }
}

.l-footer {
  background-color: #979797;
}
.l-footer__inner {
  min-width: 1040px;
  width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    min-width: inherit;
    width: 92%;
  }
}
@media only screen and (min-width: 768px) {
  .l-footer__inner {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__inner {
    padding: 25px 0 15px;
  }
}
.l-footer__logo {
  width: 180px;
}
.l-footer__logo span {
  display: block;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .l-footer__logo {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
  }
  .l-footer__logo img {
    width: 120px;
    vertical-align: middle;
  }
  .l-footer__logo span {
    display: inline-block;
    margin-left: 5px;
    font-size: 1.3rem;
  }
}
.l-footer__menu {
  width: calc(100% - 200px);
}
.l-footer__menu ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.l-footer__menu li {
  line-height: 1.666;
}
.l-footer__menu b {
  color: #7fbe26;
  display: block;
}
.l-footer__menu b + b {
  margin-top: 11px;
}
.l-footer__menu b a {
  margin-top: 0;
  color: #7fbe26;
  font-size: 1.6rem;
}
.l-footer__menu a {
  color: #000;
  font-size: 1.2rem;
  display: block;
  margin-top: 7px;
}
@media only screen and (min-width: 769px) {
  .l-footer__menu a:hover {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 768px) {
  .l-footer__menu li + li {
    border-left: 1px solid #dadada;
    margin-left: 30px;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__menu {
    width: 100%;
  }
  .l-footer__menu ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .l-footer__menu li {
    width: 48%;
    margin-bottom: 12px;
  }
  .l-footer__menu b + b {
    margin-top: 12px;
  }
  .l-footer__menu b a {
    font-size: 1.4rem;
  }
  .l-footer__menu a {
    margin-top: 2px;
    padding: 3px 0;
  }
}
.l-footer__copy {
  background-color: #7fbe26;
  color: #fff;
  font-size: 1.2rem;
  padding: 38px 0 34px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 1.1rem;
    padding: 20px 0 40px;
  }
}

/*----- ページトップへ */
.page-top {
  width: 42px;
  height: 42px;
  background: url(../img/btn_gotop.png) no-repeat center/cover;
  cursor: pointer;
  position: fixed;
  right: 32px;
  bottom: 20px;
  z-index: 5;
  opacity: 0.8;
}
@media only screen and (min-width: 769px) {
  .page-top:hover {
    opacity: 0.5;
  }
}
@media only screen and (max-width: 767px) {
  .page-top {
    width: 32px;
    height: 32px;
    right: 4vw !important;
    bottom: 15px;
  }
}

/* ============================================================
footer
============================================================ */
.footer_accordion-container.footer_sp .footer_accordion-content {
  display: none;
}
.footer_accordion-container.footer_sp .footer_accordion-title_sp {
  padding: 5px 0;
  background-color: #064738;
  font-size: 1.25em;
  color: #fff;
  text-align: center;
}
.footer_accordion-container.footer_sp .footer_accordion-title_sp span {
  position: relative;
}
.footer_accordion-container.footer_sp .footer_accordion-title_sp span:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  width: 15px;
  height: 2px;
  transform: rotate(90deg);
  background: #fff;
  transition: all .3s ease-in-out;
}
.footer_accordion-container.footer_sp .footer_accordion-title_sp span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  width: 15px;
  height: 2px;
  background: #fff;
  transition: all .2s ease-in-out;
}
.footer_accordion-container.footer_sp .footer_accordion-title_sp.open span:before {
  transform: rotate(180deg);
}
.footer_accordion-container.footer_sp .footer_accordion-title_sp.open span:after {
  opacity: 0;
}
.footer_accordion-container.footer_sp .footer_accordion-title_sp:active, .footer_accordion-container.footer_sp .footer_accordion-title_sp.open {
  background-color: #064738;
}
.footer_accordion-container.footer_sp .footer_nav .sp_2col {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.footer_accordion-container.footer_sp .footer_nav .sp_2col ul.arrow_list_footer {
  width: 49%;
}

@media only screen and (min-width: 768px) {
  .footer_accordion-container {
    margin: 0 auto;
  }
  .footer_accordion-container .footer_accordion-title {
    margin: 0;
    padding: 9px 0;
    background-color: #064738;
    font-size: 1.25em;
    font-weight: normal;
    color: #fff;
    cursor: pointer;
    text-align: center;
  }
  .footer_accordion-container .footer_accordion-title span {
    position: relative;
  }
  .footer_accordion-container .footer_accordion-title span:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -40px;
    width: 15px;
    height: 2px;
    transform: rotate(90deg);
    background: #fff;
    transition: all .3s ease-in-out;
  }
  .footer_accordion-container .footer_accordion-title span:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -40px;
    width: 15px;
    height: 2px;
    background: #fff;
    transition: all .2s ease-in-out;
  }
  .footer_accordion-container .footer_accordion-title.open span:before {
    transform: rotate(180deg);
  }
  .footer_accordion-container .footer_accordion-title.open span:after {
    opacity: 0;
  }
  .footer_accordion-container .footer_accordion-title:hover {
    opacity: 0.75;
  }
  .footer_accordion-container .footer_accordion-title:active, .footer_accordion-container .footer_accordion-title.open {
    background-color: #064738;
  }

  .footer_accordion-container .footer_accordion-content:not(:first-of-type) {
    display: none;
  }
  .footer_accordion-container .footer_accordion-content:first-of-type {
    display: block;
  }
}
footer .f1 {
  margin: 0 auto;
  padding: 6vw 4vw 4vw;
}
footer .f1 aside {
  margin-bottom: 30px;
}
footer .f1 aside .outline dt {
  text-align: center;
  margin-bottom: 10px;
}
footer .f1 aside .outline_table_time div {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
footer .f1 aside .outline_table_time div dt {
  background-color: #7fbe26;
  padding: 0px 4px;
  margin-right: 4px;
  color: #fff;
  font-size: 1.2rem;
}
footer .f1 aside .address {
  margin-bottom: 6px;
  line-height: 1.6;
  font-size: 1.5rem;
}
footer .f1 aside .f_btn_area {
  text-align: center;
}
footer .f1 aside .btn_contact {
  margin-right: 15px;
}
footer .f1 aside table {
  width: 100%;
  margin-bottom: 30px;
}
footer .f1 th, footer .f1 td {
  padding: 5px 5px 4px;
  border: solid 1px #064738;
  line-height: 1.6;
}
footer .f1 th {
  font-size: 1.2rem;
  font-weight: bold;
}
footer .f1 td {
  font-size: 1.4rem;
}
footer .f1 td small {
  display: inline-block;
  line-height: 1.6;
  font-size: 1rem;
}
footer .f1 .footer_nav dl {
  margin-bottom: 20px;
}
footer .f1 .footer_nav dl dt {
  margin-bottom: 20px;
}
footer .f1 .footer_nav dl dt a {
  display: block;
  padding: 0 0 5px 0px;
  border-bottom: solid 2px #7fbe26;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
}
footer .f1 .footer_nav dl dd {
  margin-bottom: 20px;
}
footer .f1 .footer_nav dl dd a {
  display: block;
  color: #222;
  text-decoration: none;
  font-size: 1.4rem;
}
footer .f1 .footer_nav .arrow_list li {
  margin-bottom: 5px;
}
footer .f1 .footer_nav .arrow_list li:before {
  border-top: solid 2px #7fbe26;
  border-right: solid 2px #7fbe26;
  top: 11px;
}
footer .f1 .footer_nav .arrow_list li.ico_no {
  position: static;
  padding-left: 0;
  font-weight: bold;
}
footer .f1 .footer_nav .arrow_list li .list_disc li {
  padding-left: 0;
}
footer .f1 .footer_nav .arrow_list li .list_disc li:before {
  border-top: none;
  border-right: none;
}
footer .f2 {
  width: 100%;
  background: #7fbe26;
  color: #fff;
}
footer .f2 ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  margin: 0 auto;
  padding: 35px 0 30px;
}
footer .f2 ul a {
  display: block;
  margin-right: 30px;
  padding: 0 0 0 14px;
  color: #fff;
  font-size: 1.4rem;
}
footer .f2 aside {
  position: relative;
  margin: 0 auto;
  padding: 16px 0 15px;
  text-align: center;
  font-size: 1.2rem;
}

@media only screen and (max-width: 767px) {
  footer .f1 aside .btn_contact {
    display: block;
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 15px;
  }
  footer .f1 aside .btn_tel {
    display: block;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media only screen and (min-width: 768px) {
  footer .f1 {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 0 0 0;
  }
  footer .f1 aside {
    color: #222;
    width: 21%;
    margin-bottom: 0;
  }
  footer .f1 aside dt {
    margin-bottom: 12px;
    font-size: 2.3rem;
    font-weight: bold;
  }
  footer .f1 aside .address {
    margin-bottom: 6px;
    line-height: 1.6;
    font-size: 1.5rem;
  }
  footer .f1 aside .tel {
    margin-bottom: 10px;
    padding: 3px 0 10px 24px;
    background: url(../img/icon_freedial.png) no-repeat left 0 top 0.15em;
    font-size: 1.8rem;
    font-weight: bold;
  }
  footer .f1 aside .info {
    margin-bottom: 20px;
  }
  footer .f1 aside .f_btn_area a {
    display: block;
  }
  footer .f1 aside .f_btn_area .btn_contact {
    margin-bottom: 15px;
    margin-right: 0;
    padding: 4px 13px 3px 14px;
    text-align: center;
  }
  footer .f1 aside .f_btn_area .btn_contact span {
    display: inline-block;
    padding: 5px 0px 5px 0px;
    width: 100%;
  }
  footer .f1 aside .f_btn_area .btn_contact span:before {
    left: 4px;
    top: 6px;
  }
  footer .f1 aside .f_btn_area .btn_tel {
    padding: 4px 11px 3px 11px;
    text-align: center;
  }
  footer .f1 aside .f_btn_area .btn_tel span {
    display: inline-block;
    width: 100%;
    padding: 5px 0px 5px 0px;
  }
  footer .f1 aside .f_btn_area .btn_tel span:before {
    left: 7px;
    top: 3;
  }
  footer .f1 aside th, footer .f1 aside td {
    padding: 10px 10px 8px;
    border: solid 1px #064738;
    line-height: 1.6;
  }
  footer .f1 aside th {
    font-size: 1.2rem;
    font-weight: bold;
  }
  footer .f1 aside td {
    font-size: 1.4rem;
  }
  footer .f1 aside td small {
    display: inline-block;
    line-height: 1.6;
    font-size: 1rem;
  }
  footer .f1 .footer_nav {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 76%;
  }
  footer .f1 .footer_nav dl:first-child {
    width: 22%;
  }
  footer .f1 .footer_nav dl:nth-child(2) {
    margin: 0;
    width: 26%;
  }
  footer .f1 .footer_nav dl:nth-child(2) dd {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  footer .f1 .footer_nav dl:nth-child(2) dd ul:first-child {
    margin-right: 20px;
  }
  footer .f1 .footer_nav dl:nth-child(3) {
    width: 20%;
  }
  footer .f1 .footer_nav dl:nth-child(4) {
    width: 20%;
  }
  footer .f1 .footer_nav dt + dd {
    margin: 17px 0 35px;
  }
  footer .f1 .footer_nav dt + dt {
    margin-top: 20px;
  }
  footer .f1 .footer_nav dt a {
    display: block;
    padding: 0 0 5px 0px;
    border-bottom: solid 2px #7fbe26;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
  }
  footer .f1 .footer_nav dt a:hover {
    opacity: 0.7;
  }
  footer .f1 .footer_nav dd a {
    display: block;
    color: #222;
    text-decoration: none;
    font-size: 1.4rem;
  }
  footer .f1 .footer_nav dd a:hover {
    opacity: 0.7;
  }
  footer .f1 .footer_nav .arrow_list li {
    margin-bottom: 5px;
  }
  footer .f1 .footer_nav .arrow_list li:before {
    border-top: solid 2px #7fbe26;
    border-right: solid 2px #7fbe26;
    top: 11px;
  }
}
/* ==============================================================
*  MODULE（汎用的に使用できるスタイル）
* ============================================================ */
/*----- インライン要素化、ブロック要素化 */
.ib {
  display: inline-block !important;
}

.db {
  display: block !important;
}

/*----- ブロック要素の位置 */
.f-l {
  float: left !important;
}

.f-r {
  float: right !important;
}

/*----- 文字位置：横 */
.t-c {
  text-align: center !important;
}

.t-r {
  text-align: right !important;
}

.t-l {
  text-align: left !important;
}

/*----- 文字位置：縦 */
.va-t {
  vertical-align: top !important;
}

.va-m {
  vertical-align: middle !important;
}

.va-b {
  vertical-align: bottom !important;
}

/*----- 文字の太さ */
.fw-n {
  font-weight: normal !important;
}

.fw-b {
  font-weight: bold !important;
}

/*----- コンテンツの中心に配置 */
.t-center {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*----- 文字の色 */
.fc_red {
  color: #e04c4c;
}

.fc_blue {
  color: #0070E0;
}

/*----- 下線 */
.td_under {
  text-decoration: underline;
}

/*----- TELリンクSPのみ */
@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*----- リスト */
.ol, .ul {
  padding-left: 20px;
}
.ol li, .ul li {
  line-height: 1.4666;
}
.ol li + li, .ul li + li {
  margin-top: 8px;
}
.ol.size-m li, .ul.size-m li {
  line-height: 1.7333;
}
.ol.size-m li + li, .ul.size-m li + li {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .ol, .ul {
    padding-left: 16px;
  }
  .ol li, .ul li {
    line-height: 1.3;
  }
  .ol li + li, .ul li + li {
    margin-top: 5px;
  }
  .ol.size-m li, .ul.size-m li {
    line-height: 1.5;
  }
  .ol.size-m li + li, .ul.size-m li + li {
    margin-top: 6px;
  }
}

.ol {
  list-style: decimal;
}
.ol__kakko li {
  position: relative;
  padding-left: 38px;
}
.ol__kakko li + li {
  margin-top: 8px;
}
.ol__kakko li span {
  position: absolute;
  top: 0;
  left: -8px;
}
@media only screen and (max-width: 767px) {
  .ol__kakko li {
    padding-left: 34px;
  }
  .ol__kakko li + li {
    margin-top: 5px;
  }
}

.ul {
  list-style: disc;
}

.list_disc {
  margin-left: 1em;
}
.list_disc li {
  position: relative;
  margin-bottom: 8px;
}
.list_disc li:after {
  display: block;
  content: '';
  position: absolute;
  top: 10px;
  left: -1em;
  width: 8px;
  height: 8px;
  background-color: #7fbe26;
  border-radius: 100%;
}
.list_disc li ol li:after {
  position: static;
  content: normal;
}
@media only screen and (min-width: 768px) {
  .list_disc li {
    margin-bottom: 3px;
  }
}

.list_disc {
  margin-left: 1em;
}
.list_disc li {
  position: relative;
  margin-bottom: 8px;
}
.list_disc li:after {
  display: block;
  content: '';
  position: absolute;
  top: 10px;
  left: -1em;
  width: 8px;
  height: 8px;
  background-color: #7fbe26;
  border-radius: 100%;
}

.list_notes li {
  padding-left: 1.3em;
  text-indent: -1.3em;
  font-size: 1.4rem;
}

.arrow_list li {
  position: relative;
  padding-left: 15px;
}
.arrow_list li:before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #697b91;
  border-right: solid 2px #697b91;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  left: 0;
  margin-top: -3px;
}

.ol {
  list-style-type: decimal !important;
  margin: 0 0 0 1em;
}
.ol li {
  margin: 5px 0;
}

.ol2 {
  position: relative;
  margin: 0;
  padding: 0;
}
.ol2 li {
  list-style: none;
  list-style-position: outside;
  margin-bottom: 5px;
  padding-left: 1.25em;
}
.ol2 li span {
  position: absolute;
  left: 0;
  margin: 0;
}
.ol2 li .list_disc li {
  padding-left: 0;
}
@media only screen and (min-width: 768px) {
  .ol2 li {
    margin-bottom: 8px;
  }
}

/*----- 画像 */
.img-full {
  width: 100% !important;
}

/*----- 改行 */
@media only screen and (min-width: 768px) {
  .pc {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .sp {
    display: none;
  }
}

/*----- リンク */
a.a {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}
a.a__blue {
  color: #7fbe26;
  text-decoration: underline;
}
@media only screen and (min-width: 769px) {
  a.a:hover, a.a__blue:hover {
    text-decoration: none;
  }
}

a.pdf_link {
  color: #7fbe26;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a.pdf_link:after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 21px;
  background: url(../../common/img/ico_pdf.png) 95% center no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  a.pdf_link:hover {
    border-bottom: none;
    text-decoration: none;
  }
}

a.new_link {
  color: #7fbe26;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a.new_link:after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../../common/img/ico_new.png) 95% center no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  a.new_link:hover {
    border-bottom: none;
    text-decoration: none;
  }
}

a.txt_link {
  color: #7fbe26;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media only screen and (min-width: 769px) {
  a.txt_link:hover {
    border-bottom: none;
    text-decoration: none;
  }
}

a.no_link {
  pointer-events: none;
}

.pn {
  padding: 0 !important;
}

.ptn {
  padding-top: 0 !important;
}

.prn {
  padding-right: 0 !important;
}

.pbn {
  padding-bottom: 0 !important;
}

.pln {
  padding-left: 0 !important;
}

.mn {
  margin: 0 !important;
}

.mtn {
  margin-top: 0 !important;
}

.mrn {
  margin-right: 0 !important;
}

.mbn {
  margin-bottom: 0 !important;
}

.mln {
  margin-left: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

/*
*  breadcrumb
* ----------------------------------------*/
.breadcrumb {
  font-size: 0;
  margin: 20px 0 50px;
}
.breadcrumb li {
  display: inline;
  line-height: 1.4;
  font-size: 1.5rem;
}
.breadcrumb li + li {
  padding-left: 26px;
  position: relative;
}
.breadcrumb li + li::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 8px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.breadcrumb a {
  color: #000;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .breadcrumb {
    margin: 15px 0 30px;
  }
  .breadcrumb li {
    font-size: 1.2rem;
  }
  .breadcrumb li + li::before {
    width: 5px;
    height: 5px;
  }
}

/*
*  button
* ----------------------------------------*/
.com_btn {
  line-height: 1;
  transition: ease-in-out 0.3s;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  text-decoration: none;
}

.btn_contact {
  color: #7fbe26;
  font-size: 1.6rem;
  padding: 4px 13px 4px 14px;
  border: 2px solid #7fbe26;
}
.btn_contact span {
  position: relative;
  padding: 5px 0px 5px 25px;
}
.btn_contact span:before {
  position: absolute;
  content: url("../img/ico_mail.png");
  margin-right: 20px;
  top: 9px;
  left: 0;
}
@media only screen and (min-width: 769px) {
  .btn_contact:hover {
    background-color: #7fbe26;
    color: #fff;
  }
  .btn_contact:hover span:before {
    content: url("../img/ico_mail_w.png");
  }
}
@media screen and (min-width: 769px) {
  .btn_contact {
    padding: 7px 13px 6px 14px;
    display: inline-block;
  }
  .btn_contact .btn_contact {
    font-size: 1.8rem;
    padding: 7px 13px 6px 14px;
    display: inline-block;
  }
  .btn_contact .btn_contact span {
    padding: 5px 0px 5px 27px;
  }
}

.btn_tel {
  color: #fff;
  background-color: #7fbe26;
  font-size: 1.6rem;
  padding: 4px 11px 4px 11px;
  border: 2px solid #7fbe26;
}
.btn_tel span {
  position: relative;
  padding: 5px 0px 5px 24px;
}
.btn_tel span:before {
  position: absolute;
  content: url("../img/ico_tel_w.png");
  margin-right: 20px;
  top: 6px;
  left: 0;
}
@media only screen and (min-width: 769px) {
  .btn_tel:hover {
    background-color: #fff;
    color: #7fbe26;
    border: 2px solid #7fbe26;
  }
  .btn_tel:hover span:before {
    content: url("../img/ico_tel.png");
  }
}
@media screen and (min-width: 769px) {
  .btn_tel {
    padding: 7px 13px 6px 14px;
    display: inline-block;
  }
  .btn_tel .btn_tel {
    font-size: 1.8rem;
  }
  .btn_tel .btn_tel span {
    padding: 5px 0px 5px 27px;
  }
  .btn_tel .btn_tel span:before {
    top: 9px;
  }
}

.box01_btn {
  background-color: #7fbe26;
  color: #fff;
  text-decoration: none;
  padding: 5px 15px;
  text-align: center;
  font-size: 1.3rem;
  border: 2px solid #7fbe26;
}
.box01_btn span {
  position: relative;
  padding-right: 13px;
}
.box01_btn span:after {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 0;
  margin-top: -4px;
}
@media only screen and (min-width: 769px) {
  .box01_btn:hover {
    background-color: #fff;
    color: #7fbe26;
  }
  .box01_btn:hover span:after {
    border-top: solid 2px #7fbe26;
    border-right: solid 2px #7fbe26;
  }
}
@media screen and (min-width: 769px) {
  .box01_btn {
    padding: 5px 18px;
  }
}

.blank_link {
  position: relative;
}
.blank_link:before {
  position: absolute;
  background-image: url(../img/ico_blank_link.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .blank_link:before {
    width: 16px;
    height: 16px;
  }
}

.com_btn01 li {
  border: 2px solid #d3d3d3;
  background-color: #fff;
}
.com_btn01 li a {
  display: block;
  position: relative;
  padding: 20px 18px;
  font-size: 1.8rem;
  text-align: center;
  color: #000;
  text-decoration: none;
  line-height: 1.5;
}
.com_btn01 li a:after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 3px solid #7fbe26;
  border-right: 3px solid #7fbe26;
  transform: rotate(45deg);
  right: 18px;
  top: 40%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 769px) {
  .com_btn01 li a:after {
    right: 20px;
    width: 10px;
    height: 10px;
  }
  .com_btn01 li a:hover {
    background-color: #f4faee;
  }
  .com_btn01 li a:hover:after {
    right: 10px;
  }
}

.com_btn02 li {
  border: 2px solid #7fbe26;
  background-color: #fff;
}
.com_btn02 li a {
  display: block;
  position: relative;
  padding: 10px 12px;
  font-size: 1.6rem;
  text-align: center;
  color: #000;
  text-decoration: none;
  line-height: 1.5;
}
.com_btn02 li a:after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 3px solid #7fbe26;
  border-right: 3px solid #7fbe26;
  transform: rotate(45deg);
  right: 18px;
  top: 40%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 769px) {
  .com_btn02 li a {
    padding: 15px 18px;
    font-size: 1.8rem;
  }
  .com_btn02 li a:after {
    right: 20px;
    width: 10px;
    height: 10px;
  }
  .com_btn02 li a:hover {
    background-color: #7fbe26;
    color: #fff;
  }
  .com_btn02 li a:hover:after {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
}

.page_btn_area ul li {
  border: 2px solid #7fbe26;
}
.page_btn_area ul li a {
  background-color: #fff;
  color: #000;
  display: block;
  position: relative;
  padding: 8px 18px;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
}
.page_btn_area ul li a:after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 3px solid #7fbe26;
  border-right: 3px solid #7fbe26;
  transform: rotate(45deg);
  right: 7px;
  top: 40%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.page_btn_area ul li.active a {
  color: #fff;
  background-color: #7fbe26;
}
.page_btn_area ul li.active a:after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
@media screen and (min-width: 769px) {
  .page_btn_area ul li a {
    padding: 17px 12px 16px;
    font-size: 1.8rem;
  }
  .page_btn_area ul li a:after {
    right: 18px;
  }
  .page_btn_area ul li:hover a {
    background-color: #7fbe26;
    color: #fff;
  }
  .page_btn_area ul li:hover a:after {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  .page_btn_area ul li.active:hover a {
    color: #000;
    background-color: #fff;
  }
  .page_btn_area ul li.active:hover a:after {
    border-top: 3px solid #7fbe26;
    border-right: 3px solid #7fbe26;
  }
}

.btn {
  border: 2px solid transparent;
  display: block;
  font-weight: bold;
  text-align: left;
  padding: 30px 50px 30px 20px;
  position: relative;
  width: 100%;
}
.btn::before, .btn::after {
  content: '';
  position: absolute;
  top: 50%;
}
.btn::before {
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn::after {
  top: calc(50% - 1px);
  right: 35px;
  width: 9px;
  height: 9px;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.btn__form {
  padding: 0;
}
.btn__form input {
  background-color: transparent;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "メイリオ", Meiryo, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif;
  padding: 30px 50px 30px 20px;
}
.btn__form input::-webkit-search-decoration {
  display: none;
}
.btn__form input::focus {
  outline-offset: -2px;
}
.btn__main {
  color: #7fbe26;
  border-color: #7fbe26;
}
.btn__main::before {
  background-color: #7fbe26;
}
.btn__main::after {
  border-color: #fff;
}
.btn__main input {
  color: #7fbe26;
}
@media only screen and (min-width: 769px) {
  .btn__main:hover {
    background-color: rgba(127, 190, 38, 0.125);
  }
}
.btn__main-solid {
  color: #fff;
  background-color: #7fbe26;
}
.btn__main-solid::before {
  background-color: #fff;
}
.btn__main-solid::after {
  border-color: #7fbe26;
}
@media only screen and (min-width: 769px) {
  .btn__main-solid:hover {
    background-color: rgba(127, 190, 38, 0.8);
  }
}
.btn__white {
  color: #fff;
  border-color: #fff;
}
.btn__white::before {
  background-color: #fff;
}
.btn__white::after {
  border-color: #7fbe26;
}
@media only screen and (min-width: 769px) {
  .btn__white:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.btn__back {
  color: #888;
  border-color: #dadada;
}
.btn__back::before, .btn__back::after {
  display: none;
}
.btn__back input {
  color: #888;
  text-align: center;
  padding: 30px 20px;
}
@media only screen and (min-width: 769px) {
  .btn__back:hover {
    background-color: rgba(218, 218, 218, 0.3);
  }
}
.btn__big {
  font-size: 1.6rem;
  padding: 50px 65px 50px 30px;
}
.btn__big::before {
  right: 30px;
  width: 36px;
  height: 36px;
}
.btn__big::after {
  right: 48px;
  width: 11px;
  height: 11px;
}
@media only screen and (max-width: 767px) {
  .btn {
    padding: 25px 40px 25px 15px;
  }
  .btn::before {
    right: 15px;
    width: 26px;
    height: 26px;
  }
  .btn::after {
    right: 28px;
    width: 7px;
    height: 7px;
  }
  .btn__form {
    padding: 0;
  }
  .btn__form input {
    padding: 25px 40px 25px 15px;
    font-size: 1.4rem;
  }
  .btn__back input {
    padding: 12px 10px;
  }
  .btn__big {
    font-size: 1.5rem;
    padding: 30px 40px 30px 15px;
  }
}

/*
*  form
* ----------------------------------------*/
.form__parts {
  width: 100%;
  padding: 5px 8px;
  margin: 5px 0;
  border: 1px solid #dadada;
  border-radius: 4px;
  color: #000;
  font-size: 1.5rem;
  font-family: "メイリオ", Meiryo, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.7;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form__parts.w-l {
  max-width: 680px;
}
.form__parts.w-m {
  max-width: 640px;
}
.form__parts.w-s {
  max-width: 340px;
}
.form__parts::placeholder {
  color: #BFBFBF;
}
.form__parts:-ms-input-placeholder {
  color: #BFBFBF;
}
.form__parts::-ms-input-placeholder {
  color: #BFBFBF;
}
@media only screen and (max-width: 767px) {
  .form__parts {
    padding: 10px 12px;
    font-size: 1.4rem;
  }
  .form__parts.w-l, .form__parts.w-m, .form__parts.w-s {
    max-width: 100%;
  }
}
.form__select-wrap {
  position: relative;
}
.form__select-wrap:before {
  content: '';
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #dadada;
  border-right: 2px solid #dadada;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 23px;
  right: 16px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .form__select-wrap {
    max-width: 400px;
  }
}
.form__select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  padding: 8px 10px 12px 10px;
}
@media only screen and (max-width: 767px) {
  .form__select {
    padding: 10px 12px;
  }
}
.form__check {
  display: none;
}
.form__check:checked + .form__check-parts {
  color: #7fbe26;
}
.form__check:checked + .form__check-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 12px;
  transform: rotate(40deg);
  border-bottom: 2px solid #7fbe26;
  border-right: 2px solid #7fbe26;
}
@media only screen and (max-width: 767px) {
  .form__check:checked + .form__check-parts::after {
    top: 0;
  }
}
.form__check-parts {
  padding-left: 24px;
  position: relative;
  margin-right: 10px;
}
.form__check-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #dadada;
  border-radius: 2px;
}
@media only screen and (max-width: 767px) {
  .form__check-parts::before {
    top: -4px;
  }
}
.form__required {
  width: 40px;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 22px;
  background-color: #e04c4c;
  padding: 0 5px;
}
@media only screen and (max-width: 767px) {
  .form__required {
    font-size: 1.1rem;
    line-height: 18px;
    padding: 1px 5px 0;
  }
}
.form__error {
  display: block;
  color: #e04c4c;
  font-size: 1.3rem;
}
@media only screen and (max-width: 767px) {
  .form__error {
    font-size: 1.2rem;
  }
}

/*
*  grid
* ----------------------------------------*/
@media only screen and (min-width: 768px) {
  .row {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .col-6 {
    max-width: 500px;
    width: 100%;
  }

  .col-6-s {
    width: calc(50% - 10px);
  }

  .col-4-s {
    width: calc(33.3333% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .col-6 + .col-6 {
    margin-top: 20px;
  }

  .col-6-s + .col-6-s,
  .col-4-s + .col-4-s {
    margin-top: 10px;
  }
}
/*
*  table
* ----------------------------------------*/
.table01 table {
  width: 100%;
  border: 2px solid #dbdddc;
  border-collapse: collapse;
  border-spacing: 0;
}
.table01 table th, .table01 table td {
  border: 2px solid #dbdddc;
  vertical-align: top;
  padding: 10px 5px;
  line-height: 1.4666;
  font-size: 1.5rem;
}
.table01 table th {
  font-weight: bold;
  background-color: #f4faee;
  text-align: center;
}
.table01 table td {
  vertical-align: middle;
  text-align: left;
}
.table01 table .w-s {
  width: 17%;
}
.table01 table .w-m {
  width: 22%;
}
.table01 table .w-l {
  width: 60%;
}
@media screen and (min-width: 769px) {
  .table01 table th, .table01 table td {
    padding: 10px;
    font-size: 1.6rem;
  }
  .table01 table th {
    font-weight: bold;
    background-color: #f4faee;
  }
}

.table_time .table_time_th {
  border: 2px solid #dbdddc;
  border-bottom: none;
  font-weight: bold;
  background-color: #f4faee;
  text-align: center;
  padding: 10px;
  line-height: 1.5;
}
.table_time table {
  width: 100%;
  border: 2px solid #dbdddc;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-word;
}
.table_time table th, .table_time table td {
  vertical-align: top;
  text-align: center;
  padding: 10px;
  line-height: 1.4666;
  border-bottom: 2px solid #dbdddc;
  border-left: 1px dotted #dbdddc;
}
.table_time table th {
  font-weight: bold;
  background-color: #f4faee;
}
.table_time table td {
  vertical-align: middle;
  font-size: 1.6rem;
}
.table_time table .time_cell {
  width: 28.5%;
}
.table_time table .day_cell {
  width: calc(71.5% / 8);
  border-left: 1px dotted #dbdddc;
}
.table_time table .color_G {
  color: #7fbe26;
  font-size: 3.0rem;
  line-height: 1;
  padding: 0;
}
.table_time table .color_Gray {
  color: #dbdddc;
}
@media screen and (min-width: 769px) {
  .table_time table th, .table_time table td {
    padding: 5px;
  }
  .table_time table td {
    font-size: 1.8rem;
  }
  .table_time table .color_G {
    padding: 5px;
  }
}

.table02 table {
  width: 100%;
  border: 2px solid #dbdddc;
  border-collapse: collapse;
  border-spacing: 0;
}
.table02 table th, .table02 table td {
  border: 2px solid #dbdddc;
  vertical-align: top;
  padding: 10px 5px;
  line-height: 1.4666;
  font-size: 1.5rem;
}
.table02 table th {
  font-weight: bold;
  background-color: #f4faee;
  text-align: left;
  width: 50%;
}
.table02 table td {
  vertical-align: middle;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .table02 table th, .table02 table td {
    padding: 10px;
    font-size: 1.6rem;
  }
}

.boder_no_table table .w-m {
  width: 25%;
}

.table_achv table {
  width: 100%;
  border: 2px solid #dbdddc;
  border-collapse: collapse;
  border-spacing: 0;
}
.table_achv table th, .table_achv table td {
  border: 2px solid #dbdddc;
  vertical-align: top;
  padding: 8px 5px;
  line-height: 1.4666;
  font-size: 1.4rem;
  line-height: 1.3;
}
.table_achv table th {
  font-weight: bold;
  background-color: #f4faee;
  text-align: left;
}
.table_achv table td {
  vertical-align: middle;
  text-align: center;
}
.table_achv table .w-s {
  width: 17%;
}
.table_achv table .w-m {
  width: 22%;
}
.table_achv table .w-l {
  width: 60%;
}
@media screen and (min-width: 769px) {
  .table_achv table th, .table_achv table td {
    padding: 10px;
  }
  .table_achv table th {
    font-weight: bold;
    background-color: #f4faee;
    font-size: 1.6rem;
  }
  .table_achv table td {
    font-size: 1.4rem;
    padding: 10px 5px;
  }
}

.table {
  width: 100%;
  border-top: 1px solid #dadada;
}
.table tr {
  border-bottom: 1px solid #dadada;
}
.table th, .table td {
  vertical-align: top;
  padding: 14px 15px;
  line-height: 1.4666;
}
.table th {
  width: 180px;
  background-color: #979797;
  font-weight: normal;
  text-align: left;
}
.table__center th, .table__center td {
  vertical-align: middle;
}
.table__center th {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .table th, .table td {
    padding: 12px 13px;
  }
  .table th {
    width: 90px;
  }
  .table__block th, .table__block td {
    display: block;
    width: 100%;
  }
  .table__block td + td {
    padding-top: 0;
  }
}

.openlecture table, .news table {
  border: 2px solid #dbdddc;
  border-collapse: collapse;
  border-spacing: 0;
}
.openlecture table th, .openlecture table td, .news table th, .news table td {
  border: 2px solid #dbdddc;
  padding: 10px 5px;
  line-height: 1.4;
}
.openlecture table th, .news table th {
  font-weight: bold;
  background-color: #f4faee;
}
@media screen and (min-width: 769px) {
  .openlecture table th, .openlecture table td, .news table th, .news table td {
    padding: 10px;
  }
}

/*
*  title
* ----------------------------------------*/
.title-head {
  height: 170px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.title-head .inner {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.title-head h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 10px;
  font-size: 2.0rem;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  line-height: 1.5;
}
.title-head h2 span {
  display: block;
  font-size: 1.6rem;
  color: #979797;
  font-weight: normal;
}
@media screen and (min-width: 769px) {
  .title-head {
    height: 260px;
  }
  .title-head h2 {
    font-size: 3.5rem;
    padding: 15px;
  }
  .title-head h2 span {
    font-size: 2.0rem;
  }
}

.index_h3 {
  background-color: #7fbe26;
  font-size: 2.0rem;
  line-height: 1.45;
  color: #fff;
  font-weight: bold;
  padding: 9px 12px;
  margin-bottom: 20px;
  margin-top: 0;
  text-align: center;
}

.index_h4_min {
  color: #7fbe26;
  font-size: 2.0rem;
  font-family: Century, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: bold;
  border-bottom: 2px solid #7fbe26;
  margin-bottom: 15px;
  padding-bottom: 2px;
  line-height: 1.55;
}

.main_area_h3 {
  background-color: #7fbe26;
  font-size: 2.0rem;
  line-height: 1.45;
  color: #fff;
  font-weight: bold;
  padding: 5px 12px;
  margin-bottom: 20px;
  margin-top: 0;
}

.main_area_h4 {
  color: #7fbe26;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 2px solid #dbdddc;
  margin-bottom: 15px;
  padding-bottom: 2px;
  line-height: 1.55;
}

.main_area_h5 {
  padding-left: 6px;
  border-left: 5px solid #7fbe26;
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.4;
  margin: 0 0 10px;
}

.main_area_h6 {
  position: relative;
  display: inline-block;
  padding: 0 3px;
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0;
}
.main_area_h6:before {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #7fbe26;
}
.main_area_h6 span {
  padding-left: 22px;
}

@media screen and (min-width: 769px) {
  .index_h3 {
    font-size: 2.4rem;
    padding: 8px 18px;
    margin-bottom: 30px;
  }

  .index_h4_min {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }

  .main_area_h3 {
    font-size: 2.4rem;
    padding: 5px 18px;
    margin-bottom: 25px;
  }

  .main_area_h4 {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }

  .main_area_h5 {
    padding-left: 8px;
    font-size: 1.8rem;
  }

  .main_area_h6 {
    margin-bottom: 10px;
  }
  .main_area_h6:before {
    width: 18px;
  }
}
.title-l {
  font-size: 3.2rem;
  color: #7fbe26;
  letter-spacing: 0.15rem;
  line-height: 1.3125;
  padding-bottom: 15px;
  border-bottom: 1px solid #dadada;
  margin-bottom: 30px;
}
.title-l.size-s {
  font-size: 2.0rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .title-l {
    font-size: 1.8rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .title-l.size-s {
    font-size: 1.6rem;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
}

.title-m {
  text-align: center;
  margin-bottom: 50px;
}
.title-m b {
  color: #7fbe26;
  font-family: 'Roboto', sans-serif;
  font-size: 3.5rem;
}
.title-m span {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .title-m {
    margin-bottom: 30px;
  }
  .title-m b {
    font-size: 2.6rem;
  }
  .title-m span {
    font-size: 1.2rem;
  }
}

.title-s {
  background-color: #f5faee;
  color: #7fbe26;
  font-size: 1.8rem;
  line-height: 1.222;
  padding: 18px 15px 17px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .title-s {
    font-size: 1.5rem;
    padding: 16px 12px 15px;
    margin-bottom: 15px;
  }
}

.title-b {
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 30px 0;
}
@media only screen and (max-width: 767px) {
  .title-b {
    font-size: 1.4rem;
    margin: 15px 0;
  }
}

/*
*  modal
* ----------------------------------------*/
.modal__open {
  cursor: pointer;
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
}
.modal__wrap input {
  display: none;
}
.modal__wrap input:checked ~ .modal__overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}
.modal__overlay {
  display: flex;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}
.modal__trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}
.modal__content {
  position: relative;
  align-self: center;
  width: 60%;
  max-width: 800px;
  padding: 35px 30px 30px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
  margin: 30px 0;
}
@media only screen and (max-width: 767px) {
  .modal__content {
    width: 92%;
    padding: 35px 20px 20px;
    margin: 20px 0;
  }
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #fff;
}
.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #b93d0c;
}
.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  transform: rotate(-45deg);
}
.modaal-close:after {
  transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
}
.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }

  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }

  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }

  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }

  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}

@-ms-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .12s;
  -moz-animation-delay: .12s;
  -webkit-animation-delay: .12s;
  -o-animation-delay: .12s;
  animation-delay: .12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .25s;
  -moz-animation-delay: .25s;
  -webkit-animation-delay: .25s;
  -o-animation-delay: .25s;
  animation-delay: .25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .37s;
  -moz-animation-delay: .37s;
  -webkit-animation-delay: .37s;
  -o-animation-delay: .37s;
  animation-delay: .37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .5s;
  -moz-animation-delay: .5s;
  -webkit-animation-delay: .5s;
  -o-animation-delay: .5s;
  animation-delay: .5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .62s;
  -moz-animation-delay: .62s;
  -webkit-animation-delay: .62s;
  -o-animation-delay: .62s;
  animation-delay: .62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .75s;
  -moz-animation-delay: .75s;
  -webkit-animation-delay: .75s;
  -o-animation-delay: .75s;
  animation-delay: .75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: .87s;
  -moz-animation-delay: .87s;
  -webkit-animation-delay: .87s;
  -o-animation-delay: .87s;
  animation-delay: .87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

.accordion-container {
  position: relative;
  width: 100%;
  outline: 0;
}
.accordion-container .article-title {
  display: block;
  position: relative;
  margin-bottom: 20px;
  padding: 8px 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #7fbe26;
  border: 2px solid #dbdbdb;
  cursor: pointer;
}
.accordion-container .article-title .i_box {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: absolute;
  top: 20%;
  right: 2%;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  transform-origin: center center;
  transition-duration: 0.2s;
  background-color: #7fbe26;
}
.accordion-container .article-title .i_box .one_i {
  display: block;
  position: relative;
  width: 15px;
  height: 15px;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
  transform-origin: center center;
}
.accordion-container .article-title .i_box .one_i:before, .accordion-container .article-title .i_box .one_i:after {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #fff;
}
.accordion-container .article-title .i_box .one_i:before {
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
.accordion-container .article-title .i_box .one_i:after {
  transition: all .2s ease-in-out;
}
.accordion-container .article-title.open .i_box .one_i:after {
  transform: rotate(180deg);
}
.accordion-container .article-title.open .i_box .one_i:after {
  opacity: 0;
}
.accordion-container .accordion-content {
  display: none;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .accordion-container .article-title:hover {
    background-color: #f4faee;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-slide:focus {
  outline: none;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*----- 3列デフォルトスライダー */
.default_slider .slick-slide {
  margin: 0 5px;
}
.default_slider .slick-arrow {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
}
.default_slider .slick-arrow:before {
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.default_slider .slick-prev {
  left: 0;
}
.default_slider .slick-prev:before {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}
.default_slider .slick-next {
  right: 0;
}
.default_slider .slick-next:before {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
@media only screen and (min-width: 768px) {
  .default_slider .slick-slide {
    margin: 0 20px;
  }
  .default_slider .slick-arrow {
    width: 100px;
  }
  .default_slider .slick-arrow:before {
    width: 18px;
    height: 18px;
  }
}

/* ==============================================================
*  PAGE（各ページ固有のスタイル）
* ============================================================ */
/*
*  top
* ----------------------------------------*/
.top {
  font-size: 1.6rem;
}
.top .l-header {
  position: absolute;
  top: 0;
  left: 0;
}
.top .section + .section {
  margin-top: 70px;
}
.top .wrapper .l-footer {
  margin-top: 0;
}
.top main {
  min-height: 0%;
}
@media only screen and (max-width: 767px) {
  .top {
    font-size: 1.4rem;
  }
  .top .section + .section {
    margin-top: 40px;
  }
}

.top-slide {
  height: 100%;
}
.top-slide a {
  text-decoration: none;
}
.top-slide .slick-list {
  height: 100%;
}
.top-slide .slick-track {
  height: 100%;
}
.top-slide .slick-slide {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 350px;
  max-height: 640px;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}
.top-slide .slick-slide.slide4 {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.top-slide .slick-slide.slide4 .catch {
  font-size: 2.6rem;
}
.top-slide .slick-slide.slide4 .catch small {
  font-size: 1.8rem;
}
.top-slide .slick-slide.slide7 {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.top-slide .slick-slide.slide7 .catch span {
  background: linear-gradient(rgba(0, 0, 0, 0) 75%, #a5d167 75%);
  color: #5b5b5b;
  padding: 0 5px;
}
.top-slide .slide1 {
  background-image: url(../../img/kv_img01_sp.jpg);
}
.top-slide .slide2 {
  background-image: url(../../img/kv_img02_sp.jpg);
}
.top-slide .slide3 {
  background-image: url(../../img/kv_img03_sp.jpg);
}
.top-slide .slide4 {
  background-image: url(../../img/kv_img04_sp.jpg);
}
.top-slide .slide5 {
  background-image: url(../../img/kv_img08_sp.jpg);
}
.top-slide .slide6 {
  background-image: url(../../img/kv_img06_sp.jpg);
}
.top-slide .slide7 {
  background-image: url(../../img/kv_img07_sp.png);
}
.top-slide .catch {
  font-size: 2.8rem;
  color: #5b5b5b;
  -moz-text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
  -webkit-text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
  -ms-text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
  text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
  margin-left: 15px;
}
.top-slide .catch span {
  color: #7fbe26;
}
.top-slide .catch small {
  font-size: 2.0rem;
  line-height: 1.3;
  display: block;
}
@media only screen and (max-width: 767px) {
  .top-slide .slick-slide.slide3 {
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .top-slide .slick-slide.slide3 .catch {
    margin-bottom: 25px;
    margin-left: 15px;
  }
  .top-slide .slick-slide.slide4 .catch {
    margin-bottom: 25px;
    margin-left: 15px;
  }
  .top-slide .slick-slide.slide5 {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .top-slide .slick-slide.slide5 .catch {
    font-size: 2.6rem;
    margin-bottom: 12px;
    margin-left: 15px;
  }
  .top-slide .slick-slide.slide7 .catch {
    margin-bottom: 12px;
    margin-left: 15px;
    font-size: 2.4rem;
  }
  .top-slide .catch {
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) {
  .top-slide .slick-slide {
    height: 640px;
    max-height: 640px;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .top-slide .slick-slide.slide4 .catch {
    font-size: 4.3rem;
    margin-bottom: 30px;
    margin-left: 15px;
  }
  .top-slide .slick-slide.slide4 .catch small {
    font-size: 2.8rem;
  }
  .top-slide .slick-slide.slide7 .catch {
    padding-left: 30px;
    margin-bottom: 15px;
  }
  .top-slide .slide1 {
    background-image: url(../../img/kv_img01.jpg);
  }
  .top-slide .slide2 {
    background-image: url(../../img/kv_img02.jpg);
  }
  .top-slide .slide3 {
    background-image: url(../../img/kv_img03.jpg);
  }
  .top-slide .slide4 {
    background-image: url(../../img/kv_img04.jpg);
  }
  .top-slide .slide5 {
    background-image: url(../../img/kv_img08.jpg);
  }
  .top-slide .slide6 {
    background-image: url(../../img/kv_img06.jpg);
  }
  .top-slide .slide7 {
    background-image: url(../../img/kv_img07.png);
  }
  .top-slide .catch {
    font-size: 4.3rem;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
  }
  .top-slide .catch small {
    font-size: 2.8rem;
  }
}

.top_bnr {
  margin: 30px auto 0;
  text-align: center;
}
.top_bnr a.box01_btn {
  font-weight: bold;
  font-size: 1.6rem;
}
.top_bnr .t-r {
  margin-top: 15px;
}
@media screen and (min-width: 769px) {
  .top_bnr {
    max-width: 600px;
    margin: 40px auto 0;
  }
  .top_bnr a.box01_btn {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .top_bnr a:hover {
    opacity: 0.7;
  }
  .top_bnr .t-r {
    margin-top: 15px;
  }
}

#top_imp .top_imp_box {
  background-color: #faeff2;
  border: 2px solid #ecb2c0;
  padding: 10px 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
#top_imp .top_imp_box .top_imp_inner .top_imp_ttl {
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  color: #e04c4c;
  margin-bottom: 10px;
}
#top_imp .top_imp_box .top_imp_inner .top_imp_ttl span {
  background: url(../img/ico_note.png) left top 3px no-repeat;
  background-size: 20px;
  padding: 0 0 5px 28px;
}
#top_imp .top_imp_box .top_imp_inner .top_imp_list {
  width: 100%;
  padding: 0px 0 0px 0px;
  font-size: 1.5rem;
  color: #5b5b5b;
  border-top: 1px solid #ecb2c0;
}
#top_imp .top_imp_box .top_imp_inner .top_imp_list dl div {
  border-bottom: 1px dotted #d2d2d2;
  padding: 7px  0px 7px 0px;
}
#top_imp .top_imp_box .top_imp_inner .top_imp_list dl div dt {
  line-height: 1.5;
}
#top_imp .top_imp_box .top_imp_inner .top_imp_list dl div dd {
  line-height: 1.5;
}
#top_imp .top_imp_box .top_imp_inner .top_imp_list dl div a {
  color: #5b5b5b;
}
#top_imp .top_imp_box .top_imp_inner .top_imp_list dl div a.pdf_link, #top_imp .top_imp_box .top_imp_inner .top_imp_list dl div a.new_link {
  color: #5b5b5b;
}
@media screen and (min-width: 769px) {
  #top_imp .top_imp_box {
    padding: 18px 23px;
  }
  #top_imp .top_imp_box .top_imp_inner {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
  #top_imp .top_imp_box .top_imp_inner .top_imp_ttl {
    width: 19%;
    font-size: 2.2rem;
  }
  #top_imp .top_imp_box .top_imp_inner .top_imp_ttl span {
    background: url(../img/ico_note.png) left top 2px no-repeat;
    background-size: auto;
    padding: 0 0 5px 35px;
  }
  #top_imp .top_imp_box .top_imp_inner .top_imp_list {
    width: 80%;
    padding: 12px 0 12px 23px;
    font-size: 1.5rem;
    border-left: 1px solid #ecb2c0;
    border-top: none;
  }
  #top_imp .top_imp_box .top_imp_inner .top_imp_list dl div {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    border-bottom: 1px dotted #d2d2d2;
    padding: 7px  0px 7px 20px;
  }
  #top_imp .top_imp_box .top_imp_inner .top_imp_list dl div:first-child {
    border-top: 1px dotted #d2d2d2;
  }
  #top_imp .top_imp_box .top_imp_inner .top_imp_list dl div dt {
    padding-right: 20px;
    line-height: 1.5;
  }
  #top_imp .top_imp_box .top_imp_inner .top_imp_list dl div dd {
    line-height: 1.5;
  }
}

#top_sec2 {
  background-color: #f5faee;
  padding: 30px 0;
}
#top_sec2 .top_sec2_ico_pc {
  display: none;
}
#top_sec2 .top_sec2_ico {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#top_sec2 .top_sec2_ico li {
  width: 50%;
}
#top_sec2 .top_sec2_ico li:nth-of-type(2n) {
  border-left: 1px solid #cbcbcb;
}
#top_sec2 .top_sec2_ico li:nth-of-type(2n) a {
  padding: 10px 0 10px 10px;
}
#top_sec2 .top_sec2_ico li:first-child {
  border-bottom: 1px solid #cbcbcb;
}
#top_sec2 .top_sec2_ico li:nth-child(2) {
  border-bottom: 1px solid #cbcbcb;
}
#top_sec2 .top_sec2_ico li:nth-of-type(odd) a {
  padding: 10px 10px 10px 0;
}
#top_sec2 .top_sec2_ico li a {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  color: #5b5b5b;
  font-weight: bold;
  font-size: 1.6rem;
  text-decoration: none;
}
#top_sec2 .top_sec2_ico li a div {
  width: 33%;
  margin-right: 10px;
}
#top_sec2 .top_sec2_ico li a p {
  width: 62%;
  line-height: 1.3;
}
#top_sec2 .top_sec2_ico li .box01_doctors_sp {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding: 10px 10px 10px 0;
}
#top_sec2 .top_sec2_ico li .box01_doctors_sp .box01_doctors_sp_ico {
  width: 33%;
  margin-right: 10px;
}
#top_sec2 .top_sec2_ico li .box01_doctors_sp .box01_doctors_sp_link {
  width: 62%;
  line-height: 1.3;
}
#top_sec2 .top_sec2_ico li .box01_doctors_sp a {
  padding: 0;
  margin-bottom: 8px;
}
#top_sec2 .top_sec2_ico li .box01_doctors_sp a:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  #top_sec2 {
    padding: 60px 0;
  }
  #top_sec2 .top_sec2_ico_pc {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-direction: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  #top_sec2 .top_sec2_ico_pc li {
    width: calc(calc(100% - 90px) / 4);
    margin-bottom: 0;
  }
  #top_sec2 .top_sec2_ico_pc li .box01 {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-direction: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    -moz-border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
    -moz-box-shadow: 0px 5px 0px 0px #eaefe6;
    -webkit-box-shadow: 0px 5px 0px 0px #eaefe6;
    -ms-box-shadow: 0px 5px 0px 0px #eaefe6;
    box-shadow: 0px 5px 0px 0px #eaefe6;
    padding: 12px 0 20px;
    text-align: center;
  }
  #top_sec2 .top_sec2_ico_pc li .box01 p {
    color: #5b5b5b;
    margin-bottom: 8px;
    font-size: 2.0rem;
    line-height: 1.3;
    letter-spacing: -0.04em;
  }
  #top_sec2 .top_sec2_ico_pc li .box01 p a {
    text-decoration: none;
    color: #5b5b5b;
  }
  #top_sec2 .top_sec2_ico_pc li .box01 p a:hover {
    opacity: 0.7;
  }
  #top_sec2 .top_sec2_ico_pc li .box01.box01_doctors {
    padding: 19px 0 16px;
  }
  #top_sec2 .top_sec2_ico_pc li .box01 .top_sec2_doctors {
    margin-bottom: 4px;
    line-height: 1.2;
  }
  #top_sec2 .top_sec2_ico_pc li .box01 .top_sec2_doctors a {
    width: 100%;
  }
  #top_sec2 .top_sec2_ico_pc li .box01 .top_sec2_doctors a:after {
    content: '';
    display: inline-block;
    position: relative;
    top: 2px;
    width: 18px;
    height: 18px;
    margin-left: 8px;
    background: url(../../common/img/right_ico.png) no-repeat;
    background-size: contain;
  }
  #top_sec2 .top_sec2_ico {
    display: none;
  }
}
@media all and (-ms-high-contrast: none) {
  #top_sec2 ul li {
    width: 262px;
  }
}

#top_sec3 {
  background-image: url(../../img/top_bg01.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0;
}
#top_sec3 .top_sec3_box_area .top_sec3_box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 15px;
  width: 100%;
  -moz-box-shadow: 0px 6px 3px 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 6px 3px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0px 6px 3px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 6px 3px 1px rgba(0, 0, 0, 0.05);
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_sec3_ttl_area h2 {
  background: url(../../img/ico_info.png) left top 1px no-repeat;
  background-size: auto;
  padding: 0 0 0px 34px;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_table {
  width: 100%;
  border: 2px solid #cbcbcb;
  margin-bottom: 15px;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_table td, #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_table th {
  border: 1px solid #cbcbcb;
  text-align: center;
  vertical-align: middle;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_table th {
  background-color: #f6f6f6;
  color: #7fbe26;
  padding: 7px 8px;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_table td {
  color: #5b5b5b;
  background-color: #fff;
  padding: 12px 6px;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_table td small {
  font-size: 1.2rem;
  font-weight: normal;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_table td span {
  font-weight: normal;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .tel {
  margin-bottom: 3px;
  line-height: 1.4;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .tel b {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8rem;
  background: url(../../img/ico_telB.png) left top 6px no-repeat;
  background-size: 13px;
  padding: 2px 0 5px 15px;
  margin-left: 10px;
  color: #5b5b5b;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .info_box_G {
  background-color: #f5faee;
  border: 1px solid #7fbe26;
  padding: 10px 18px 18px;
  font-weight: bold;
  font-size: 1.4rem;
  color: #5b5b5b;
  text-align: center;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .info_box_G p {
  margin-bottom: 10px;
  line-height: 1.45;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .info_box_G .box01_btn {
  font-weight: normal;
  padding: 3px 12px;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_btnarea {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 10px;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_btnarea .info_btn {
  background-color: #7fbe26;
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  text-align: center;
  font-size: 1.3rem;
  border: 2px solid #7fbe26;
  font-weight: bold;
  display: block;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_btnarea .info_btn:first-of-type {
  margin-right: 10px;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_btnarea .info_btn span {
  position: relative;
  padding-right: 12px;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_btnarea .info_btn span:after {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 0;
  margin-top: -4px;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.map_box .top_sec3_ttl_area {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.map_box .top_sec3_ttl_area h2 {
  background: url(../../img/ico_access.png) left top 1px no-repeat;
  background-size: auto;
  padding: 0 0 5px 30px;
  margin-bottom: 5px;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.map_box .top_sec3_ttl_area .box01_btn {
  display: block;
  width: 48%;
  padding: 5px 8px;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.map_box .top_sec3_ttl_area .box01_btn span {
  padding-right: 10px;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.map_box .map_area {
  /*border: 2px solid #cbcbcb;*/
}
#top_sec3 .top_sec3_box_area .top_sec3_box.map_box .map_inner {
  position: relative;
  padding-top: 30px;
  padding-bottom: 240px;
  height: 0;
  overflow: hidden;
}
#top_sec3 .top_sec3_box_area .top_sec3_box.map_box .map_inner iframe {
  border: 2px solid #cbcbcb;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#top_sec3 .top_sec3_box_area .top_sec3_box .top_sec3_ttl_area {
  margin-bottom: 5px;
}
#top_sec3 .top_sec3_box_area .top_sec3_box .top_sec3_ttl_area h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #5b5b5b;
}
#top_sec3 .top_sec3_box_area .top_sec3_box .top_sec3_ttl_area h2 span {
  color: #979797;
  font-size: 1.4rem;
  margin-left: 8px;
  font-weight: normal;
}
@media screen and (min-width: 769px) {
  #top_sec3 {
    padding: 60px 0;
  }
  #top_sec3 .top_sec3_box_area {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box {
    padding: 10px 18px 15px;
    width: calc(calc(100% - 20px) / 2);
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box .top_sec3_ttl_area h2 {
    font-size: 2.2rem;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box .top_sec3_ttl_area h2 span {
    font-size: 1.6rem;
    margin-left: 10px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_sec3_ttl_area h2 {
    background: url(../../img/ico_info.png) left top 7px no-repeat;
    padding: 0 0 0px 37px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_sec3_ttl_area .box01_btn {
    display: block;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_table td, #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_table th {
    font-size: 1.8rem;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_table th {
    padding: 7px 10px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_table td {
    padding: 14px 10px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_table td small {
    font-size: 1.4rem;
    font-weight: normal;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_table td span {
    font-weight: normal;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .tel b {
    font-size: 2.0rem;
    background: url(../../img/ico_telB.png) left top 7px no-repeat;
    background-size: auto;
    margin-left: 15px;
    padding: 2px 0 5px 18px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .info_box_G {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 20px;
    padding: 11px 8px 10px;
    font-size: 1.6rem;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .info_box_G p {
    margin-bottom: 0;
    line-height: normal;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .info_box_G .box01_btn {
    padding: 5px 6px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .info_box_G .box01_btn span {
    padding-right: 10px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_btnarea {
    margin-bottom: 15px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_btnarea .info_btn {
    padding: 5px 18px;
    font-size: 1.6rem;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_btnarea .info_btn:first-of-type {
    margin-right: 25px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_btnarea .info_btn:hover {
    background-color: #fff;
    color: #7fbe26;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box .top_info_btnarea .info_btn:hover span:after {
    border-top: solid 2px #7fbe26;
    border-right: solid 2px #7fbe26;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.map_box .top_sec3_ttl_area {
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 0px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.map_box .top_sec3_ttl_area h2 {
    background: url(../../img/ico_access.png) left top 5px no-repeat;
    padding: 0 0 0px 32px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.map_box .top_sec3_ttl_area .box01_btn {
    display: block;
    width: auto;
    padding: 5px 15px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.map_box .top_sec3_ttl_area .box01_btn span {
    padding-right: 13px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.map_box .map_inner {
    padding-bottom: 60.25%;
    max-height: 363px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.map_box .map_inner iframe {
    margin-top: -150px;
  }
}
@media all and (-ms-high-contrast: none) {
  #top_sec3 .top_sec3_box_area .top_sec3_box {
    width: 560px;
  }
  #top_sec3 .top_sec3_box_area .top_sec3_box.info_box {
    margin-right: 20px;
  }
}

#top_sec4 {
  padding: 30px 0;
}
#top_sec4 .top_sec4_box_area {
  width: 100%;
}
#top_sec4 .top_sec4_box_area .top_sec3_ttl_area {
  margin-bottom: 5px;
}
#top_sec4 .top_sec4_box_area .top_sec3_ttl_area h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #5b5b5b;
}
#top_sec4 .top_sec4_box_area .top_sec3_ttl_area h2 span {
  color: #979797;
  font-size: 1.4rem;
  margin-left: 8px;
  font-weight: normal;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box {
  margin-bottom: 30px;
  /* アクティブなタブ */
  /* ラジオボタン非表示 */
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .top_sec3_ttl_area {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .top_sec3_ttl_area h2 {
  background: url(../../img/ico_news.png) left top 1px no-repeat;
  background-size: auto;
  padding: 0 0 5px 36px;
  margin-bottom: 5px;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .top_sec3_ttl_area .box01_btn {
  display: inline-block;
  width: auto;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .tab-wrap:after {
  content: '';
  width: 100%;
  background: #eadaab;
  display: block;
  order: -1;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .tab-label {
  width: 33%;
  background-color: #fff;
  font-size: 1.5rem;
  line-height: 1.35;
  color: #5b5b5b;
  border: 1px solid #eadaab;
  white-space: nowrap;
  text-align: center;
  padding: 10px 5px;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  flex: 1;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .tab-label:not(:last-of-type) {
  margin-right: 0px;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: #faf7ee;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .tab-switch:checked + .tab-label {
  background-color: #f6e7bc;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: .5s opacity;
  border: 2px solid #eadaab;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .tab-switch {
  display: none;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .news-area {
  width: 100%;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .news-area dl {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #5b5b5b;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .news-area dl div {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-bottom: 1px dotted #d2d2d2;
  padding: 11px 0 12px 0px;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .news-area dl div:first-child {
  border-top: 1px dotted #d2d2d2;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .news-area dl dd a {
  text-decoration: underline;
  color: #5b5b5b;
  font-weight: normal;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .news-area dl dt {
  margin-right: 25px;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .news-area .pdf_link:after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 21px;
  background: url(../../common/img/ico_pdf.png) 95% center no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.news_box .news-area .new_link:after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../../common/img/ico_new.png) 95% center no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box {
  background-color: #f5faee;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 20px 20px 25px;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box .top_sec3_ttl_area h2 {
  background: url(../../img/ico_recruit.png) left top -10px no-repeat;
  background-size: auto;
  padding: 0 0 0px 42px;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: calc(calc(100% - 10px) / 2);
}
#top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li:first-child, #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li:nth-child(2) {
  margin-bottom: 10px;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li:nth-of-type(3) .sub_ttl {
  min-height: 46px;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li:last-of-type .sub_ttl {
  min-height: 46px;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li a {
  text-decoration: none;
  color: #fff;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li .sub_ttl {
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  background-color: #7fbe26;
  padding: 5px 10px;
  text-align: center;
  line-height: 1.2;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: -0.06em;
}
#top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li .sub_ttl:before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 12px;
  margin-top: -5px;
}
#top_sec4 .top_sec4_btn_area {
  padding: 30px 0 0px;
}
#top_sec4 .top_sec4_btn_area ul li {
  width: 100%;
  border: 1px solid #dadada;
  margin-bottom: 20px;
  position: relative;
  -moz-box-shadow: 0px 4px 0px 1px #f2f3f3;
  -webkit-box-shadow: 0px 4px 0px 1px #f2f3f3;
  -ms-box-shadow: 0px 4px 0px 1px #f2f3f3;
  box-shadow: 0px 4px 0px 1px #f2f3f3;
}
#top_sec4 .top_sec4_btn_area ul li:before {
  position: absolute;
  content: '';
  border-left: 17px solid transparent;
  bottom: 8px;
  right: 8px;
}
#top_sec4 .top_sec4_btn_area ul li.link_01:before {
  border-bottom: 14px solid #f284bd;
}
#top_sec4 .top_sec4_btn_area ul li.link_02:before {
  border-bottom: 14px solid #56a2e8;
}
#top_sec4 .top_sec4_btn_area ul li.link_03:before {
  border-bottom: 14px solid #efb54f;
}
#top_sec4 .top_sec4_btn_area ul li.link_04:before {
  border-bottom: 14px solid #29be6e;
}
#top_sec4 .top_sec4_btn_area ul li.link_05:before {
  border-bottom: 14px solid #cd6bd1;
}
#top_sec4 .top_sec4_btn_area ul li.link_06:before {
  border-bottom: 14px solid #db585b;
}
#top_sec4 .top_sec4_btn_area ul li.link_07:before {
  border-bottom: 14px solid #8587f2;
}
#top_sec4 .top_sec4_btn_area ul li a {
  display: block;
  background-color: #fff;
  text-decoration: none;
  font-weight: bold;
  color: #5b5b5b;
  font-size: 1.6rem;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
#top_sec4 .top_sec4_btn_area ul li a span {
  width: calc(100% - 78px);
  text-align: center;
}
@media screen and (min-width: 769px) {
  #top_sec4 {
    padding: 60px 0;
  }
  #top_sec4 .top_sec4_box_area {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_ttl_area h2 {
    font-size: 2.2rem;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_ttl_area h2 span {
    font-size: 1.6rem;
    margin-left: 10px;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box {
    /*padding: 10px 18px 15px;*/
    width: calc(calc(100% - 20px) / 2);
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.news_box {
    margin-bottom: 0;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.news_box .top_sec3_ttl_area {
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 20px;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.news_box .top_sec3_ttl_area h2 {
    background: url(../../img/ico_news.png) left top 8px no-repeat;
    padding: 0 0 0px 39px;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.news_box .top_sec3_ttl_area .box01_btn {
    display: block;
    width: auto;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.news_box .tab-switch:checked + .tab-label + .tab-content {
    min-height: 337px;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.news_box .tab-wrap {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.news_box .tab-wrap .tab-label:hover {
    opacity: 0.7;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.news_box .tab-wrap .tab-label:not(:last-of-type) {
    margin-right: 0px;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.news_box .news-area dl div {
    -webkit-flex-direction: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.news_box .news-area dl div a:hover {
    text-decoration: none;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box {
    max-height: 384px;
    padding: 25px 20px;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box .top_sec3_ttl_area h2 {
    background: url(../../img/ico_recruit.png) left top -8px no-repeat;
    padding: 0 0 0px 45px;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box .top_sec3_ttl_area .box01_btn {
    display: block;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li:nth-of-type(3) .sub_ttl {
    min-height: 62px;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li:last-of-type .sub_ttl {
    min-height: 62px;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li a {
    transition: ease-in-out 0.3s;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li a:hover {
    opacity: 0.7;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li .sub_ttl {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    background-color: #7fbe26;
    padding: 10px 18px;
    font-size: 2.0rem;
    line-height: 1.2;
    -moz-border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
    letter-spacing: normal;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li .sub_ttl:before {
    width: 8px;
    height: 8px;
    right: 18px;
    margin-top: -4px;
  }
  #top_sec4 .top_sec4_btn_area {
    padding: 50px 0 0px;
  }
  #top_sec4 .top_sec4_btn_area ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #top_sec4 .top_sec4_btn_area ul li {
    width: calc(calc(100% - 40px) / 3);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  #top_sec4 .top_sec4_btn_area ul li:active {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    box-shadow: none;
  }
  #top_sec4 .top_sec4_btn_area ul li:hover {
    opacity: 0.7;
  }
  #top_sec4 .top_sec4_btn_area ul li a {
    font-size: 2.0rem;
  }
}
@media all and (-ms-high-contrast: none) {
  #top_sec4 .top_sec4_box_area .top_sec3_box {
    width: 560px;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box {
    width: 560px;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li {
    width: 240px;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li:nth-of-type(odd) {
    margin-right: 20px;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li:first-child, #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li :nth-of-type(2) {
    margin-bottom: 20px;
  }
  #top_sec4 .top_sec4_box_area .top_sec3_box.recruit_box ul li img {
    width: 240px;
  }
  #top_sec4 .top_sec4_box_area .news_box {
    margin-right: 20px;
  }
  #top_sec4 .top_sec4_btn_area ul li {
    width: 360px;
  }
}

#top_sec5 {
  padding: 30px 0 40px;
  background-color: #f6f6f6;
}
#top_sec5 .top_facility_ttl {
  font-weight: bold;
  color: #5b5b5b;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}
#top_sec5 .facility_list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#top_sec5 .facility_list li {
  width: 100%;
  margin-bottom: 15px;
}
#top_sec5 .facility_list li a {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.7rem;
  color: #5b5b5b;
  border-bottom: solid 4px #ebecec;
  -moz-border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}
#top_sec5 .facility_list li a .facility_btn_L {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: #fff;
  -moz-border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  border-radius: 10px 0 0 10px;
  height: 100px;
  width: 45%;
}
#top_sec5 .facility_list li a .facility_btn_L div {
  line-height: 1.35;
}
#top_sec5 .facility_list li a .facility_btn_L div span {
  font-size: 1.2rem;
}
#top_sec5 .facility_list li a img {
  width: 55%;
  height: 100px;
}
@media screen and (min-width: 769px) {
  #top_sec5 {
    padding: 40px 0 50px;
  }
  #top_sec5 .top_facility_ttl {
    font-size: 2.0rem;
    margin-bottom: 40px;
  }
  #top_sec5 .facility_list li {
    width: calc(calc(100% - 60px) / 4);
    margin-bottom: 0;
  }
  #top_sec5 .facility_list li a:hover {
    opacity: 0.7;
  }
  #top_sec5 .facility_list li a:active {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    border-bottom: none;
  }
  #top_sec5 .facility_list li a .facility_btn_L {
    height: 100px;
    width: 140px;
    padding: 5px;
  }
  #top_sec5 .facility_list li a .facility_btn_L div {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    line-height: 1.3;
  }
  #top_sec5 .facility_list li a .facility_btn_L div span {
    display: block;
    line-height: 1.2;
    margin-bottom: 5px;
  }
  #top_sec5 .facility_list li a img {
    width: 146px;
    height: 100px;
  }
}
@media all and (-ms-high-contrast: none) {
  #top_sec5 .facility_list li {
    width: 260px;
  }
}

.top-news__left {
  width: 680px;
}
.top-news__right {
  width: 320px;
}
.top-news__info div {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #dadada;
  line-height: 1.6;
  padding: 15px 0 13px;
}
.top-news__info dt {
  width: 130px;
  color: #7fbe26;
}
.top-news__info dd {
  width: calc(100% - 140px);
}
.top-news__white {
  margin-top: 25px;
  text-align: center;
}
.top-news__white a {
  display: inline-block;
  color: #000;
}
.top-news__white a > div {
  margin-top: 15px;
  line-height: 1.25;
}
.top-news__white img {
  display: inline-block;
  max-width: 92px;
}
.top-news__white img + img {
  margin-left: 20px;
}
.top-news__white span {
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
}
.top-news__white span::before {
  content: '';
  width: 100%;
  height: 8px;
  background-color: rgba(127, 190, 38, 0.15);
  position: absolute;
  bottom: 1px;
  left: 0;
}
@media only screen and (min-width: 769px) {
  .top-news__white a:hover {
    opacity: 0.6;
    color: #7fbe26;
  }
}
@media only screen and (max-width: 767px) {
  .top-news {
    margin-top: 20px !important;
  }
  .top-news__left, .top-news__right {
    width: 100%;
  }
  .top-news__right {
    margin-top: 20px;
  }
  .top-news__info div {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 12px 0 15px;
  }
  .top-news__info dt {
    width: 100%;
  }
  .top-news__info dd {
    width: 100%;
  }
}

.top-link .col-6 {
  max-width: inherit;
}
.top-link a {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  color: #000;
  background-color: #7fbe26;
}
.top-link .title-m {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.top-link .title-m b, .top-link .title-m span {
  display: inline-block;
  background-color: #fff;
}
.top-link .title-m b {
  padding: 1px 3px;
}
.top-link .title-m span {
  padding: 3px 2px 2px;
}
.top-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 0.75;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media only screen and (min-width: 769px) {
  .top-link a:hover img {
    opacity: 1;
    -webkit-transform: scale(1.075);
    transform: scale(1.075);
  }
}
@media only screen and (max-width: 767px) {
  .top-link a {
    height: 180px;
  }
}

.top-business__link {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  max-width: 1300px;
  width: 98%;
  margin: 0 auto;
}
.top-business__link li {
  width: 25%;
}
.top-business__link a {
  display: block;
  width: 100%;
  height: 460px;
  overflow: hidden;
  position: relative;
  color: #fff;
  background-color: #000;
}
.top-business__link a::before {
  content: '';
  width: calc(100% - 40px);
  height: calc(100% - 85px);
  border: 1px solid #fff;
  border-bottom: none;
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}
.top-business__link .title {
  width: calc(100% - 40px - 2px);
  overflow: hidden;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 55px;
  z-index: 2;
}
.top-business__link .title b {
  position: relative;
  display: inline-block;
  padding: 0 12px;
}
.top-business__link .title b::before, .top-business__link .title b::after {
  content: '';
  width: 400%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 7px;
}
.top-business__link .title b::before {
  left: 100%;
}
.top-business__link .title b::after {
  right: 100%;
}
.top-business__link .title small {
  font-size: 1.4rem;
}
.top-business__link .arrow {
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 30px;
  z-index: 2;
}
.top-business__link .arrow::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 3px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #f0f0f0;
  border-right: 2px solid #f0f0f0;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.top-business__link img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.top-business .btn {
  max-width: 400px;
  margin: 60px auto 0;
}
@media only screen and (min-width: 769px) {
  .top-business__link a:hover img {
    opacity: 1;
    -webkit-transform: scale(1.075);
    transform: scale(1.075);
  }
}
@media only screen and (max-width: 767px) {
  .top-business__link {
    -webkit-flex-direction: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 92%;
  }
  .top-business__link li {
    width: 100%;
  }
  .top-business__link li + li {
    margin-top: 2%;
  }
  .top-business__link a {
    height: 140px;
  }
  .top-business__link a::before {
    width: calc(100% - 10px);
    height: calc(100% - 45px);
    top: 5px;
  }
  .top-business__link .title {
    width: calc(100% - 10px);
    font-size: 1.6rem;
    bottom: 32px;
  }
  .top-business__link .arrow {
    width: 20px;
    bottom: 15px;
  }
  .top-business .btn {
    max-width: inherit;
    width: 92%;
    margin: 30px auto 0;
  }
}

.top-csr {
  background-color: #979797;
  padding: 70px 0;
}
.top-csr__link {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.top-csr__link li {
  width: 33.3333%;
  text-align: center;
}
.top-csr__link li + li {
  border-left: 1px solid #dadada;
}
.top-csr__link a {
  display: block;
  width: 100%;
  height: 170px;
  color: #000;
  position: relative;
  z-index: 1;
}
.top-csr__link .image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.top-csr__link .image::before {
  content: '';
  width: 150px;
  height: 150px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}
.top-csr__link .title {
  display: block;
  width: 100%;
  line-height: 1.44;
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .top-csr {
    padding: 40px 0 20px;
  }
  .top-csr .title-m {
    margin-bottom: 15px;
  }
  .top-csr__link {
    -webkit-flex-direction: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .top-csr__link li {
    width: 100%;
    padding: 15px;
  }
  .top-csr__link li + li {
    border-left: none;
    border-top: 1px solid #dadada;
  }
  .top-csr__link li:nth-child(2) {
    padding: 10px 20px 30px;
  }
  .top-csr__link li:nth-child(2) .title {
    bottom: -20px;
  }
  .top-csr__link a {
    height: 120px;
  }
  .top-csr__link .image::before {
    width: 110px;
    height: 110px;
  }
}

.top-recruit {
  padding-bottom: 30px;
}
.top-recruit__link {
  display: block;
  border: 2px solid #7fbe26;
  color: #fff;
  position: relative;
}
.top-recruit__link .image {
  overflow: hidden;
}
.top-recruit__link img {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.top-recruit__link b {
  background-color: #7fbe26;
  position: absolute;
  right: -2px;
  bottom: -22px;
  font-size: 2.0rem;
  padding: 16px 46px 14px 16px;
}
.top-recruit__link b::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 25px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.top-recruit__link.none {
  pointer-events: none;
}
@media only screen and (min-width: 769px) {
  .top-recruit__link:hover img {
    -webkit-transform: scale(1.075);
    transform: scale(1.075);
  }
}
@media only screen and (max-width: 767px) {
  .top-recruit {
    padding-bottom: 15px;
  }
  .top-recruit .col-6 + .col-6 {
    margin-top: 30px;
  }
  .top-recruit__link b {
    bottom: -18px;
    font-size: 1.6rem;
    padding: 12px 32px 11px 12px;
  }
  .top-recruit__link b::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: 16px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
  }
}

.top-contact {
  background: url(../../img/contact-bg.jpg) no-repeat center/cover;
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
}
.top-contact::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.top-contact > * {
  position: relative;
  z-index: 1;
}
.top-contact .row {
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.top-contact .title-m {
  margin-bottom: 20px;
}
.top-contact .title-m b {
  color: #fff;
}
.top-contact .title-m span {
  opacity: 0.7;
}
.top-contact p {
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .top-contact {
    padding: 50px 0;
  }
}

/*
*  under
* ----------------------------------------*/
#under .section + .section {
  margin-top: 80px;
}
#under .box-bg {
  background-color: #f5faee;
  color: #7fbe26;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.9;
  text-align: center;
  padding: 36px;
}
#under .box-bg.size-m {
  font-size: 2.4rem;
  padding: 19px 20px 16px;
}
#under .inner_sec {
  margin-bottom: 35px;
  padding-top: 20px;
  margin-top: -30px;
}
#under.doctors_list .inner_sec {
  padding-top: 45px;
  margin-top: -45px;
  margin-bottom: 45px;
}
#under.covid19 .inner_sec {
  padding-top: 45px;
  margin-top: -45px;
  margin-bottom: 45px;
}
#under.covid19 .txt_area {
  margin-bottom: 25px;
}
#under .com_2col .com_2colL {
  margin-bottom: 20px;
}
#under .com_img_2col {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#under .com_img_2col .img_area {
  width: 48.5%;
  margin-bottom: 10px;
}
#under .com_img_2col .img_area p {
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1.45;
}
#under .com_img_2col .img_area .caption {
  margin-top: 5px;
  font-size: 1.4rem;
}
#under .com_img_2col.three_col .img_area {
  width: 48.5%;
}
#under .txt_img_2col {
  margin-bottom: 30px;
}
#under .txt_img_2col .txt_col {
  margin-bottom: 20px;
  width: 100%;
}
#under .txt_img_2col .img_col {
  text-align: center;
}
#under .txt_img_2col .msg_catch {
  font-family: Century, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 10px;
}
#under .col3 ul li {
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
}
#under .txt_area {
  line-height: 1.55;
  margin-bottom: 20px;
}
#under .img_wrap {
  text-align: center;
  margin-bottom: 30px;
}
#under .style_a {
  margin-bottom: 20px;
}
#under .style_a div {
  margin-bottom: 5px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#under .style_a dt {
  margin-right: 20px;
  font-weight: bold;
}
#under .style_a dd {
  line-height: 1.55;
}
#under .btn_area {
  margin-left: auto;
  margin-right: auto;
}
#under .btn_area .btn_contact {
  padding: 10px 17px 11px 21px;
}
#under .page_tab {
  border-bottom: 2px solid #7fbe26;
  margin-bottom: 25px;
}
#under .page_tab ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#under .page_tab ul li {
  border: 2px solid #7fbe26;
  border-bottom: none;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding: 12px;
  width: 49%;
}
#under .page_tab ul li.on {
  background-color: #e9f3db;
}
#under .page_tab ul li:hover {
  background-color: #e9f3db;
}
#under .page_tab ul li a {
  font-size: 1.6rem;
  color: #000;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  display: block;
}
#under .departments_btn_list {
  margin-bottom: 30px;
}
#under .departments_btn_list ul li {
  width: 100%;
  margin-bottom: 15px;
}
#under .departments_btn_list ul li a {
  font-size: 1.7rem;
  padding: 12px 18px 13px 8px;
}
#under .departments_btn_list ul li a.blank_link:after {
  position: absolute;
  background-image: url(../img/ico_blank_link.png);
  background-repeat: no-repeat;
  background-size: contain;
  border-top: none;
  border-right: none;
  width: 16px;
  height: 16px;
  transform: translateX(0);
}
#under .departments_btn_list.page_btn_area {
  padding: 40px 0 20px;
  background-color: #f5faee;
}
#under.nursing .departments_btn_list.page_btn_area {
  background-color: #fde7f2;
}
#under .page_link {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#under .page_link li {
  width: 46%;
}
#under .page_link li a {
  display: block;
  color: #000;
  text-decoration: none;
  position: relative;
  font-weight: bold;
  margin-left: 14px;
}
#under .page_link li a:after, #under .page_link li a:before {
  content: '';
  position: absolute;
}
#under .page_link li a:after {
  display: block;
  margin: auto;
}
#under .page_link li a:before {
  display: inline-block;
  width: 8px;
  height: 8px;
  top: 7px;
  margin-bottom: 4px;
  margin-left: -20px;
  border-bottom: 2px solid #7fbe26;
  border-right: 2px solid #7fbe26;
  transform: rotate(45deg);
  transition: all .2s;
}
#under .page_link_btn {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#under .page_link_btn li {
  text-align: center;
  -moz-box-shadow: 0px 4px 0px 0px #f3f3f3;
  -webkit-box-shadow: 0px 4px 0px 0px #f3f3f3;
  -ms-box-shadow: 0px 4px 0px 0px #f3f3f3;
  box-shadow: 0px 4px 0px 0px #f3f3f3;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  width: 48%;
  border: 1px solid #d8d8d8;
  margin-bottom: 15px;
}
#under .page_link_btn li a {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 10px 10px;
  width: 100%;
  height: 56px;
  line-height: 1.4;
}
#under .page_link_btn li a span {
  position: relative;
}
#under .page_link_btn li a span:after {
  content: '';
  position: absolute;
  display: block;
  margin: auto;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #7fbe26;
  border-right: 2px solid #7fbe26;
  transform: rotate(45deg);
  transition: all .2s;
}
#under .page_link_btn li a:hover {
  background-color: #e9f3db;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
#under.ningen .page_link_btn li a, #under.no .page_link_btn li a {
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  height: 70px;
}
#under.ningen .page_link_btn li a span, #under.no .page_link_btn li a span {
  margin-bottom: 10px;
}
#under.nursing .page_link li a:after {
  border-bottom: 2px solid #f284bd;
  border-right: 2px solid #f284bd;
}
#under.nursing .page_link li:hover a {
  color: #f284bd;
}
#under.doctors_list .page_link li {
  margin-bottom: 15px;
  line-height: 1.3;
}
#under.doctors_list .page_link_btn a {
  height: 74px;
  line-height: 1.2;
}
#under.doctors_list .page_link_btn a span {
  margin-top: 8px;
}
#under.doctors_list .page_link_btn a span.line2 {
  margin-top: 0;
}
#under .page_link_list ul li a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  position: relative;
  font-weight: bold;
  margin-left: 26px;
}
#under .page_link_list ul li a:before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 8px;
  height: 8px;
  top: 6px;
  margin-bottom: 4px;
  margin-left: -22px;
  border-bottom: 2px solid #7fbe26;
  border-right: 2px solid #7fbe26;
  transform: rotate(45deg);
  transition: all .2s;
}
#under .com_bg_box {
  padding: 15px;
  background-color: #faf7ee;
}
@media only screen and (max-width: 767px) {
  #under .section + .section {
    margin-top: 40px;
  }
  #under .box-bg {
    font-size: 1.4rem;
    line-height: 1.8;
    padding: 20px;
  }
  #under .box-bg.size-m {
    font-size: 1.6rem;
    padding: 18px;
  }
  #under.mp .page_link_btn li a {
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    padding: 0px 10px 10px;
    height: 68px;
    line-height: 1.2;
  }
  #under.inhome .page_link_btn li a {
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    padding: 0px 10px 10px;
    height: 68px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 769px) {
  #under .inner_sec {
    margin-bottom: 40px;
    padding-top: 40px;
    margin-top: -50px;
  }
  #under.department .txt_img_2col .txt_col {
    width: 53%;
    max-width: 374px;
  }
  #under.department .txt_img_2col .img_col {
    width: 43%;
  }
  #under.about .inner_sec {
    margin-bottom: 50px;
  }
  #under.about .txt_img_2col .txt_col {
    width: 65%;
    max-width: 650px;
  }
  #under.about #msg01 .txt_img_2col .img_col, #under.about #msg02 .txt_img_2col .img_col {
    width: 32%;
  }
  #under.mp .inner_sec {
    padding-top: 0;
    margin-top: 0;
  }
  #under.mp .page_inner_link {
    padding-top: 70px;
    margin-top: -70px;
  }
  #under.mp .page_link_btn li {
    width: 28%;
  }
  #under.checkup .inner_sec {
    padding-top: 0;
    margin-top: 0;
  }
  #under.checkup .page_inner_link {
    padding-top: 70px;
    margin-top: -70px;
  }
  #under.nursing .txt_img_2col.nursing_msg .txt_col {
    width: 65%;
    max-width: 650px;
  }
  #under.nursing .txt_img_2col.nursing_msg .img_col {
    width: 32%;
  }
  #under.openlecture .com_img_2col {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  #under.openlecture .com_img_2col .img_area {
    text-align: center;
  }
  #under.openlecture .com_img_2col .img_areaL {
    margin-right: 30px;
  }
  #under.doctors_list .inner_sec {
    padding-top: 60px;
    margin-top: -60px;
    margin-bottom: 60px;
  }
  #under.doctors_list .page_inner_link {
    padding-top: 120px;
    margin-top: -120px;
  }
  #under .com_2col {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }
  #under .com_2col .com_2colL, #under .com_2col .com_2colR {
    width: 49%;
  }
  #under .com_2col .com_2colL {
    margin-bottom: 0;
  }
  #under .com_img_2col {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #under .com_img_2col .img_area {
    width: 48.5%;
    margin-bottom: 10px;
  }
  #under .com_img_2col .img_area p {
    margin-top: 5px;
    font-size: 1.2rem;
    line-height: 1.45;
  }
  #under .com_img_2col .img_area .caption {
    font-size: 1.2rem;
  }
  #under .com_img_2col.three_col .img_area {
    width: 32.5%;
  }
  #under .col3 ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }
  #under .col3 ul li {
    width: 32%;
    margin-bottom: 0;
  }
  #under .txt_img_2col {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #under .txt_img_2col .txt_col {
    margin-right: 25px;
    margin-bottom: 0;
    width: 59%;
  }
  #under .txt_img_2col .img_col {
    width: 38%;
  }
  #under .txt_img_2col .msg_catch {
    font-family: Century, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
  #under .txt_img_2col .msg_name {
    font-weight: bold;
  }
  #under .txt_area {
    line-height: 1.6;
  }
  #under .departments_btn_list ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  #under .departments_btn_list ul li {
    width: calc(calc(100% - 40px) / 3);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  #under .departments_btn_list ul li:nth-child(3n) {
    margin-right: 0;
  }
  #under .departments_btn_list ul li a {
    font-size: 1.8rem;
    padding: 20px 18px;
  }
  #under .page_tab {
    margin-bottom: 40px;
  }
  #under .page_tab ul li {
    padding: 15px;
    width: 49%;
  }
  #under .page_tab ul li a {
    font-size: 1.8rem;
  }
  #under .page_link_btn {
    margin-bottom: 40px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  #under .page_link_btn li {
    width: 24.0%;
    margin-bottom: 10px;
    margin-right: 10px;
  }
  #under .page_link_btn li:nth-child(4n) {
    margin-right: 0;
  }
  #under .page_link_btn li:last-child {
    margin-right: 0;
  }
  #under .page_link_btn li a {
    height: 70px;
    padding: 12px 10px 10px;
  }
  #under .page_link_btn li a span:after {
    bottom: -15px;
  }
  #under .page_link {
    margin-bottom: 40px;
  }
  #under .page_link li {
    text-align: center;
    width: 25%;
    height: 60px;
    border-left: 1px solid #d8d8d8;
    padding-top: 10px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }
  #under .page_link li:last-child, #under .page_link li:nth-child(4) {
    border-right: 1px solid #d8d8d8;
  }
  #under .page_link li a {
    color: #000;
    text-decoration: none;
    margin-left: 0;
  }
  #under .page_link li a:after {
    bottom: -12px;
    left: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #7fbe26;
    border-right: 2px solid #7fbe26;
    transform: rotate(45deg);
    transition: all .2s;
  }
  #under .page_link li a:before {
    content: none;
  }
  #under .page_link li:hover a {
    color: #7fbe26;
  }
  #under .page_link li:hover a:after {
    bottom: -16px;
  }
  #under.doctors_list .page_link li {
    width: 20%;
    margin-bottom: 15px;
  }
  #under.doctors_list .page_link li:nth-child(4) {
    border-right: none;
  }
  #under.doctors_list .page_link li:nth-child(5) {
    border-right: 1px solid #d8d8d8;
  }
  #under.doctors_list .page_link_btn a {
    height: 76px;
    line-height: 1.2;
  }
  #under.doctors_list .page_link_btn a span {
    margin-top: 8px;
  }
  #under.doctors_list .page_link_btn a span.line2 {
    margin-top: 0;
  }
  #under .page_link_list ul li a {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  #under .page_link_list ul li a:hover {
    color: #7fbe26;
  }
  #under .com_bg_box {
    padding: 30px;
  }
  #under.inhome .page_link li {
    margin-bottom: 20px;
  }
  #under.inhome .inner_sec {
    padding-top: 0;
    margin-top: 0;
  }
  #under.inhome .page_inner_link {
    padding-top: 70px;
    margin-top: -70px;
  }
  #under.ningen .page_link li, #under.no .page_link li {
    width: 33%;
  }
  #under.ningen .page_link_btn li, #under.no .page_link_btn li {
    width: 32.5%;
    margin-right: 8px;
  }
  #under.ningen .page_link_btn li:last-child, #under.no .page_link_btn li:last-child {
    margin-right: 0;
  }
  #under.ningen .page_link_btn li a, #under.no .page_link_btn li a {
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding: 17px 5px 10px;
  }
  #under.ningen .page_link_btn li a span, #under.no .page_link_btn li a span {
    margin-bottom: 0;
    line-height: 1;
  }
}
#under.covid19 .inner_sec {
  padding-top: 60px;
  margin-top: -60px;
  margin-bottom: 60px;
}
#under.covid19 .txt_area {
  margin-bottom: 30px;
}
@media all and (-ms-high-contrast: none) {
  #under .departments_btn_list ul li {
    width: 320px;
  }
}

body.department .title-head {
  background-image: url(../../department/img/title-head-department_bg_sp.jpg);
}
body.department .inner {
  content: "";
  display: block;
  clear: both;
}
body.department .departments_btn_list {
  margin-bottom: 30px;
}
body.department .departments_btn_list ul li {
  width: 100%;
  margin-bottom: 15px;
}
body.department .departments_btn_list ul li a {
  font-size: 1.7rem;
  padding: 12px 18px 13px 8px;
}
body.department .departments_btn_list ul li a.blank_link:after {
  position: absolute;
  background-image: url(../img/ico_blank_link.png);
  background-repeat: no-repeat;
  background-size: contain;
  border-top: none;
  border-right: none;
  width: 16px;
  height: 16px;
  transform: translateX(0);
}
body.department.com_btn02 li a {
  padding: 10px 12px;
}
body.department .main_area {
  float: none;
  width: 100%;
  margin-bottom: 20px;
}
body.department .main_area .inner_sec {
  margin-bottom: 30px;
}
body.department .main_area .main_area_h3 {
  background-color: #7fbe26;
  font-size: 2.0rem;
  line-height: 1.45;
  color: #fff;
  font-weight: bold;
  padding: 5px 12px;
  margin-bottom: 20px;
  margin-top: 0;
}
body.department .main_area .main_area_h4 {
  color: #7fbe26;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 2px solid #dbdddc;
  margin-bottom: 15px;
  padding-bottom: 2px;
  line-height: 1.55;
}
body.department .main_area .main_area_h5 {
  padding-left: 6px;
  border-left: 5px solid #7fbe26;
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.4;
  margin: 0 0 10px;
}
body.department .main_area .main_area_h6 {
  position: relative;
  display: inline-block;
  padding: 0 3px;
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0;
}
body.department .main_area .main_area_h6:before {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #7fbe26;
}
body.department .main_area .main_area_h6 span {
  padding-left: 22px;
}
body.department .main_area .lead_txt {
  margin-bottom: 15px;
  font-size: 2.0rem;
  line-height: 1.8;
  font-family: Century, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  margin-bottom: 15px;
  font-weight: bold;
}
body.department .main_area .lead_txt p {
  margin-bottom: 10px;
}
body.department .main_area .lead_txt p:last-child {
  margin-bottom: 0;
}
body.department .main_area .txt_area {
  line-height: 1.55;
  margin-bottom: 20px;
}
body.department .main_area .img_2col {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
body.department .main_area .img_2col .img_area {
  width: 48.5%;
  margin-bottom: 10px;
}
body.department .main_area .img_2col .img_area p {
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1.45;
}
body.department .main_area .com_bg_box .img_2col:last-child {
  margin-bottom: 0;
}
body.department .main_area .com_bg_box .img_2col:last-child .img_area {
  margin-bottom: 0;
}
body.department .main_area .staff_area {
  margin-bottom: 5px;
}
body.department .main_area .staff_area .staff_img {
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
}
body.department .main_area .staff_area .staff_L {
  width: 100%;
}
body.department .main_area .staff_area .staff_L .staff_prof {
  margin-bottom: 20px;
}
body.department .main_area .staff_area .staff_L .staff_prof p {
  margin-top: 0;
  line-height: 1.5;
}
body.department .main_area .staff_area .staff_L .staff_msg {
  background-color: #fbf7ee;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 15px;
}
body.department .main_area .staff_area .staff_L .staff_msg p {
  margin: 0;
  line-height: 1.5;
}
body.department .main_area .staff_msg {
  background-color: #fbf7ee;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 15px;
}
body.department .main_area .staff_msg p {
  margin: 0;
  line-height: 1.5;
}
body.department .main_area .box_G {
  border: 2px solid #7fbe26;
  padding: 15px;
}
body.department .main_area .box_G .box_G_ttl {
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.45;
}
body.department .main_area .box_G .box_G_txt {
  margin: 0;
  line-height: 1.5;
}
body.department .side_nav {
  float: none;
  width: 100%;
  margin-bottom: 40px;
}
body.department .side_nav .side_nav_ttl {
  background-color: #7fbe26;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 10px 0;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
}
body.department .side_nav ul {
  list-style-type: none;
  margin-top: 0;
  margin-left: 0;
  padding-left: 0;
}
body.department .side_nav ul li {
  border-bottom: 2px solid #d2d2d2;
  display: block;
  position: relative;
}
body.department .side_nav ul li:before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #7fbe26;
  border-right: solid 2px #7fbe26;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 10px;
  margin-top: -3px;
}
body.department .side_nav ul li.child:before {
  top: 23px;
}
body.department .side_nav ul li.blank_link:before {
  border-top: none;
  border-right: none;
  width: 16px;
  height: 16px;
  transform: rotate(0deg);
  margin-top: -8px;
}
body.department .side_nav ul li a {
  display: block;
  padding: 10px 0px 10px 18px;
  text-decoration: none;
  font-size: 1.6rem;
  color: #5b5b5b;
}
body.department .side_nav .side_nav_child {
  border-top: 2px solid #d2d2d2;
}
body.department .side_nav .side_nav_child li {
  margin-left: 16px;
}
body.department .side_nav .side_nav_child li:last-child {
  border-bottom: none;
}
@media screen and (min-width: 769px) {
  body.department .title-head {
    background-image: url(../../department/img/title-head-department_bg.jpg);
  }
  body.department .departments_btn_list ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  body.department .departments_btn_list ul li {
    width: calc(calc(100% - 40px) / 3);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  body.department .departments_btn_list ul li:nth-child(3n) {
    margin-right: 0;
  }
  body.department .departments_btn_list ul li a {
    font-size: 1.8rem;
    padding: 20px 18px;
  }
  body.department .com_btn02 li a {
    padding: 15px 18px;
  }
  body.department .main_area {
    width: calc(75% - 50px);
    float: right;
  }
  body.department .main_area .inner_sec {
    margin-bottom: 35px;
  }
  body.department .main_area .main_area_h3 {
    font-size: 2.4rem;
    padding: 5px 18px;
    margin-bottom: 25px;
  }
  body.department .main_area .main_area_h4 {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }
  body.department .main_area .main_area_h5 {
    padding-left: 8px;
    font-size: 1.8rem;
  }
  body.department .main_area .main_area_h6 {
    margin-bottom: 10px;
  }
  body.department .main_area .main_area_h6:before {
    width: 18px;
  }
  body.department .main_area .lead_txt {
    margin-bottom: 20px;
    font-size: 2.4rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  body.department .main_area .lead_txt p {
    margin-bottom: 15px;
  }
  body.department .main_area .lead_txt p:last-child {
    margin-bottom: 0;
  }
  body.department .main_area .txt_area {
    line-height: 1.6;
    margin-bottom: 20px;
  }
  body.department .main_area .img_2col {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  body.department .main_area .img_2col .img_area {
    margin-bottom: 20px;
  }
  body.department .main_area .img_2col .img_area p {
    margin-top: 5px;
    font-size: 1.4rem;
  }
  body.department .main_area .staff_area {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 5px;
  }
  body.department .main_area .staff_area .staff_img {
    width: 36%;
  }
  body.department .main_area .staff_area .staff_L {
    width: calc(64% - 20px);
  }
  body.department .main_area .staff_area .staff_L .staff_msg {
    padding: 15px 18px;
  }
  body.department .main_area .staff_msg {
    padding: 15px 18px;
  }
  body.department .main_area .box_G {
    padding: 15px 18px;
  }
  body.department .side_nav {
    width: 25%;
    float: left;
  }
  body.department .side_nav .side_nav_ttl {
    font-size: 2.0rem;
    padding: 40px 0;
  }
  body.department .side_nav ul li:before {
    right: 15px;
  }
  body.department .side_nav ul li.blank_link:before {
    border-top: none;
    border-right: none;
    width: 16px;
    height: 16px;
    margin-top: -9px;
  }
  body.department .side_nav ul li a {
    padding: 10px 0px 10px 18px;
  }
  body.department .flex_list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }
  body.department .flex_list div {
    width: 32%;
  }
  body.department .flex_list div p {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 769px) {
  body.department .side_nav ul li a {
    position: relative;
    overflow: hidden;
  }
  body.department .side_nav ul li a:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f4faee;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: 0.5s ease-in-out;
  }
  body.department .side_nav ul li a:hover:before {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@media all and (-ms-high-contrast: none) {
  body.department .departments_btn_list ul li {
    width: 320px;
  }
}

body.internal .image-wrap {
  text-align: center;
  margin-top: 50px;
}

#under.rehabilitation02 .table01 table td {
  text-align: center;
}

#under.inspection .com_bg_box .txt_img_2col {
  margin-bottom: 0px;
}
#under.inspection .inspection_flow ul li {
  position: relative;
  padding: 15px;
  background-color: #f5faee;
  border: 1px solid #d9d9d9;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  margin: 0 0 40px;
}
#under.inspection .inspection_flow ul li:after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  border: 20px solid transparent;
  border-top-color: #a1bd7a;
  border-bottom-width: 0;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, 0px);
}
#under.inspection .inspection_flow ul li:last-child:after {
  display: none;
}
#under.inspection .inspection_flow ul li .flow_lead {
  background-color: #2c9e20;
  color: #fff;
  text-align: center;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 5px;
  line-height: 1.55;
}
#under.inspection .inspection_flow .flow_inner_partition {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
#under.inspection .inspection_flow .flow_inner_partition div {
  padding: 10px 0px;
}
#under.inspection .inspection_flow .flow_inner_partition div:nth-child(2n) {
  border-bottom: 1px dotted #939393;
  border-top: 1px dotted #939393;
}
#under.inspection .inspection_flow .flow_inner_partition div:last-child {
  border-right: none;
}
@media screen and (min-width: 769px) {
  #under.inspection .inspection_flow .flow_inner_partition {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  #under.inspection .inspection_flow .flow_inner_partition div {
    width: 32%;
    padding: 0 10px;
  }
  #under.inspection .inspection_flow .flow_inner_partition div:nth-child(2n) {
    border-right: 1px dotted #939393;
    border-left: 1px dotted #939393;
    border-bottom: none;
    border-top: none;
  }
}

#under.nutrition .main_area .lead_txt {
  margin-bottom: 10px;
}
#under.nutrition .com_bg_box {
  padding: 15px;
}
#under.nutrition .com_bg_box .txt_area {
  margin-bottom: 0;
}
#under.nutrition .page_link li {
  margin-bottom: 15px;
  padding-top: 5px;
  font-size: 1.5rem;
  line-height: 1.3;
}
#under.nutrition .page_link li a:after {
  bottom: -10px;
}
#under.nutrition .col3 ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#under.nutrition .col3 ul li {
  margin-bottom: 15px;
  width: 48%;
}
#under.nutrition .list_disc li:after {
  top: 8px;
}
@media screen and (min-width: 769px) {
  #under.nutrition .txt_img_2col .txt_col {
    width: 53%;
  }
  #under.nutrition .txt_img_2col .img_col {
    width: 43%;
  }
  #under.nutrition .com_bg_box {
    padding: 20px;
  }
  #under.nutrition .com_bg_box .txt_area {
    margin-bottom: 0;
  }
  #under.nutrition .col3 ul li {
    width: 32%;
  }
}

#under.radiology .table01 table td {
  text-align: center;
}

.about .title-head {
  background-image: url(../../about/img/title-head-about_bg_sp.jpg);
}
.about .page_btn_area {
  padding: 20px 0;
  margin-bottom: 30px;
  background-color: #f5faee;
}
.about .page_btn_area ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about .page_btn_area ul li {
  width: 49%;
}
.about .about_lead_area {
  background-image: url(../../about/img/about_bg01.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #000;
  padding: 40px 0;
}
.about .about_lead_area div {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.about .about_lead_area .about_lead {
  font-family: Century, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: bold;
  font-size: 2.0rem;
  margin-bottom: 15px;
  line-height: 1.5;
  -moz-text-shadow: 2px 2px 8px white, -2px -2px 8px white, -2px -2px 4px white, 2px 2px 4px white;
  -webkit-text-shadow: 2px 2px 8px white, -2px -2px 8px white, -2px -2px 4px white, 2px 2px 4px white;
  -ms-text-shadow: 2px 2px 8px white, -2px -2px 8px white, -2px -2px 4px white, 2px 2px 4px white;
  text-shadow: 2px 2px 8px white, -2px -2px 8px white, -2px -2px 4px white, 2px 2px 4px white;
}
.about .about_lead_area .about_lead_txt {
  font-size: 1.6rem;
  line-height: 1.5;
  -moz-text-shadow: 2px 2px 8px white, -2px -2px 8px white, 2px 2px 5px white;
  -webkit-text-shadow: 2px 2px 8px white, -2px -2px 8px white, 2px 2px 5px white;
  -ms-text-shadow: 2px 2px 8px white, -2px -2px 8px white, 2px 2px 5px white;
  text-shadow: 2px 2px 8px white, -2px -2px 8px white, 2px 2px 5px white;
  text-align: center;
}
.about .table01 {
  margin-bottom: 30px;
}
.about .table01 th {
  text-align: left;
}
@media screen and (min-width: 769px) {
  .about .title-head {
    background-image: url(../../about/img/title-head-about_bg.jpg);
  }
  .about .page_btn_area {
    padding: 40px 0;
  }
  .about .about_lead_area {
    padding: 120px 0;
    height: 400px;
  }
  .about .about_lead_area .about_lead {
    font-size: 3.4rem;
    margin-bottom: 45px;
  }
  .about .about_lead_area .about_lead_txt {
    font-size: 2.0rem;
    line-height: 1.6;
  }
}

.outpatient .title-head {
  background-image: url(../../outpatient/img/title-head-outpatient_bg_sp.jpg);
}
.outpatient .info_table td {
  text-align: center;
}
.outpatient .item_list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.outpatient .item_list li {
  width: 48.5%;
  margin-bottom: 15px;
  text-align: center;
}
.outpatient .item_list li .img_cap {
  font-size: 1.2rem;
  margin-top: 5px;
  line-height: 1.45;
  text-align: center;
  font-weight: bold;
}
.outpatient .contact_box {
  background-color: #f4faee;
  border: 2px solid #7fbe26;
  padding: 10px 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.outpatient .contact_box .contact_inner .contact_ttl {
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  color: #5b5b5b;
  margin-bottom: 10px;
  text-align: center;
}
.outpatient .contact_box .contact_inner .contact_list {
  width: 100%;
  padding: 0px 0 0px 0px;
  font-size: 1.5rem;
  color: #5b5b5b;
  border-top: 1px solid #7fbe26;
}
.outpatient .contact_box .contact_inner .contact_list dl div {
  padding: 7px  0px 7px 0px;
}
.outpatient .contact_box .contact_inner .contact_list dl div a {
  font-weight: bold;
  text-decoration: none;
  color: #5b5b5b;
}
.outpatient .contact_box .contact_inner .contact_list dl div dt {
  line-height: 1.5;
}
.outpatient .contact_box .contact_inner .contact_list dl div dd {
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .outpatient .title-head {
    background-image: url(../../outpatient/img/title-head-outpatient_bg.jpg);
  }
  .outpatient .item_list li {
    width: 19.5%;
  }
  .outpatient .item_list li .img_cap {
    font-size: 1.4rem;
    margin-top: 10px;
  }
  .outpatient .contact_box {
    padding: 18px 23px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .outpatient .contact_box .contact_inner {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
  .outpatient .contact_box .contact_inner .contact_ttl {
    width: 30%;
    font-size: 2.2rem;
    text-align: center;
    padding-right: 23px;
  }
  .outpatient .contact_box .contact_inner .contact_list {
    width: 78%;
    padding: 12px 0 12px 30px;
    font-size: 1.5rem;
    border-left: 1px solid #7fbe26;
    border-top: none;
  }
  .outpatient .contact_box .contact_inner .contact_list dl div {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding: 7px  0px 7px 20px;
    font-size: 1.8rem;
  }
  .outpatient .contact_box .contact_inner .contact_list dl div a:hover {
    text-decoration: underline;
  }
  .outpatient .contact_box .contact_inner .contact_list dl div dt {
    padding-right: 20px;
    line-height: 1.5;
    width: 16%;
  }
  .outpatient .contact_box .contact_inner .contact_list dl div dd {
    line-height: 1.5;
  }
}

.hospitalization .title-head {
  background-image: url(../../hospitalization/img/title-head-hospitalization_bg_sp.jpg);
}
.hospitalization .item_list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.hospitalization .item_list li {
  width: 48.5%;
  margin-bottom: 15px;
  text-align: center;
}
.hospitalization .item_list li .img_cap {
  font-size: 1.2rem;
  margin-top: 5px;
  line-height: 1.45;
  text-align: center;
  font-weight: bold;
}
.hospitalization .contact_box {
  background-color: #f4faee;
  border: 2px solid #7fbe26;
  padding: 10px 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.hospitalization .contact_box .contact_inner .contact_ttl {
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  color: #5b5b5b;
  margin-bottom: 10px;
  text-align: center;
}
.hospitalization .contact_box .contact_inner .contact_list {
  width: 100%;
  padding: 0px 0 0px 0px;
  font-size: 1.5rem;
  color: #5b5b5b;
  border-top: 1px solid #7fbe26;
}
.hospitalization .contact_box .contact_inner .contact_list dl div {
  padding: 7px  0px 7px 0px;
}
.hospitalization .contact_box .contact_inner .contact_list dl div a {
  font-weight: bold;
  text-decoration: none;
  color: #5b5b5b;
}
.hospitalization .contact_box .contact_inner .contact_list dl div dt {
  line-height: 1.5;
}
.hospitalization .contact_box .contact_inner .contact_list dl div dd {
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .hospitalization .contact_box {
    padding: 18px 23px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .hospitalization .contact_box .contact_inner {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
  .hospitalization .contact_box .contact_inner .contact_ttl {
    width: 30%;
    font-size: 2.2rem;
    text-align: center;
    padding-right: 23px;
  }
  .hospitalization .contact_box .contact_inner .contact_list {
    width: 78%;
    padding: 12px 0 12px 30px;
    font-size: 1.5rem;
    border-left: 1px solid #7fbe26;
    border-top: none;
  }
  .hospitalization .contact_box .contact_inner .contact_list dl div {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding: 7px  0px 7px 20px;
    font-size: 1.8rem;
  }
  .hospitalization .contact_box .contact_inner .contact_list dl div a:hover {
    text-decoration: underline;
  }
  .hospitalization .contact_box .contact_inner .contact_list dl div dt {
    padding-right: 20px;
    line-height: 1.5;
    width: 16%;
  }
  .hospitalization .contact_box .contact_inner .contact_list dl div dd {
    line-height: 1.5;
  }
  .hospitalization .title-head {
    background-image: url(../../hospitalization/img/title-head-hospitalization_bg.jpg);
  }
  .hospitalization .item_list li {
    width: 19.5%;
  }
  .hospitalization .item_list li .img_cap {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}

.access .title-head {
  background-image: url(../../access/img/title-head-access_bg_sp.jpg);
}
.access .map_wrap {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 20px;
  height: 0;
  overflow: hidden;
  padding-bottom: 95%;
  position: relative;
}
.access .map_wrap .cf {
  position: absolute;
  bottom: 0;
}
.access .map_wrap #map {
  border: none;
}
.access .map_wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 300px;
  width: 100%;
}
.access .map_wrap iframe #map {
  border: none !important;
}
.access .map_wrap iframe #wrapper {
  width: 100%;
  margin: 0 auto !important;
  text-align: center;
}
.access#under .bus_area .com_2col .com_2colL iframe {
  width: 100%;
  height: 300px;
}
.access#under .table01 table {
  width: 100%;
}
.access#under .table01 table th {
  width: 50%;
}
.access#under .table01 table td {
  text-align: center;
}
.access#under .table01.three_col table th {
  width: 33.3%;
}
@media screen and (min-width: 769px) {
  .access .title-head {
    background-image: url(../../access/img/title-head-access_bg.jpg);
  }
  .access#under .com_2col .com_2colL {
    width: 570px;
    margin-right: 20px;
  }
  .access#under .com_2col .com_2colL iframe {
    height: 480px;
    width: 100%;
  }
  .access#under .com_2col .com_2colR {
    width: 340px;
  }
  .access .map_wrap {
    padding-bottom: 75.5%;
    width: 570px;
  }
  .access .map_wrap iframe {
    height: 100%;
  }
  .access#under .bus_area .com_2col .com_2colL {
    width: 640px;
  }
  .access#under .bus_area .com_2col .com_2colL iframe {
    width: 100%;
    height: 480px;
  }
  .access#under .bus_area .com_2col .com_2colR {
    width: 330px;
  }
  .access#under .bus_area .table01 table {
    width: 100%;
  }
  .access#under .bus_area .table01 table th {
    width: 50%;
  }
  .access#under .bus_area .table01 table td {
    text-align: center;
  }
  .access#under .bus_area .table01.three_col table th {
    width: 33.3%;
  }
}

.mp .title-head {
  background-image: url(../../medical_professionals/img/title-head-mp_bg_sp.jpg);
}
.mp .contact_box {
  background-color: #f4faee;
  border: 2px solid #7fbe26;
  padding: 10px 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.mp .contact_box .contact_inner .contact_ttl {
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  color: #5b5b5b;
  margin-bottom: 10px;
  text-align: center;
}
.mp .contact_box .contact_inner .contact_list {
  width: 100%;
  padding: 0px 0 0px 0px;
  font-size: 1.5rem;
  color: #5b5b5b;
  border-top: 1px solid #7fbe26;
}
.mp .contact_box .contact_inner .contact_list dl div {
  padding: 7px  0px 7px 0px;
}
.mp .contact_box .contact_inner .contact_list dl div a {
  font-weight: bold;
  text-decoration: none;
  color: #5b5b5b;
}
.mp .contact_box .contact_inner .contact_list dl div dt {
  line-height: 1.5;
}
.mp .contact_box .contact_inner .contact_list dl div dd {
  line-height: 1.5;
}
.mp .recruit_box ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.mp .recruit_box ul li {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: calc(calc(100% - 15px) / 2);
}
.mp .recruit_box ul li:first-child, .mp .recruit_box ul li:nth-child(2) {
  margin-bottom: 15px;
}
.mp .recruit_box ul li a {
  text-decoration: none;
  color: #fff;
}
.mp .recruit_box ul li .sub_ttl {
  position: relative;
  display: block;
  width: 100%;
  background-color: #7fbe26;
  padding: 5px 10px;
  text-align: center;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: bold;
}
.mp .recruit_box ul li .sub_ttl:before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 18px;
  margin-top: -4px;
}
@media screen and (min-width: 769px) {
  .mp .title-head {
    background-image: url(../../medical_professionals/img/title-head-mp_bg.jpg);
  }
  .mp .contact_box {
    padding: 18px 23px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .mp .contact_box .contact_inner {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
  .mp .contact_box .contact_inner .contact_ttl {
    width: 30%;
    font-size: 2.2rem;
    text-align: center;
    padding-right: 23px;
  }
  .mp .contact_box .contact_inner .contact_list {
    width: 78%;
    padding: 12px 0 12px 30px;
    font-size: 1.5rem;
    border-left: 1px solid #7fbe26;
    border-top: none;
  }
  .mp .contact_box .contact_inner .contact_list dl div {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding: 7px  0px 7px 20px;
    font-size: 1.8rem;
  }
  .mp .contact_box .contact_inner .contact_list dl div a:hover {
    text-decoration: underline;
  }
  .mp .contact_box .contact_inner .contact_list dl div dt {
    padding-right: 20px;
    line-height: 1.5;
    width: 19%;
  }
  .mp .contact_box .contact_inner .contact_list dl div dd {
    line-height: 1.5;
  }
  .mp .recruit_box ul li {
    width: calc(calc(100% - 25px) / 2);
  }
  .mp .recruit_box ul li:first-child, .mp .recruit_box ul li:nth-child(2) {
    margin-bottom: 25px;
  }
  .mp .recruit_box ul li a {
    transition: ease-in-out 0.3s;
  }
  .mp .recruit_box ul li a:hover {
    opacity: 0.7;
  }
  .mp .recruit_box ul li .sub_ttl {
    background-color: #7fbe26;
    padding: 10px 18px;
    font-size: 2.0rem;
    line-height: 1;
    -moz-border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
  }
}

.recruit .title-head {
  background-image: url(../../recruit-doctor/img/title-head-recruit_bg_sp.jpg);
}
.recruit .lead_txt {
  margin-bottom: 15px;
  font-size: 2.0rem;
  line-height: 1.4;
  font-family: Century, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  margin-bottom: 10px;
  font-weight: bold;
}
.recruit .lead_txt p {
  margin-bottom: 10px;
}
.recruit .lead_txt p:last-child {
  margin-bottom: 0;
}
.recruit .recruit_h {
  font-weight: bold;
}
.recruit .accordion-container .com_bg_box {
  margin-bottom: 30px;
}
.recruit .txt_area p {
  margin-bottom: 15px;
}
.recruit .txt_area p:last-child {
  margin-bottom: 0;
}
.recruit .jisseki_table table td:last-child {
  text-align: center;
}
.recruit .shinro_list {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .recruit .title-head {
    background-image: url(../../recruit-doctor/img/title-head-recruit_bg.jpg);
  }
  .recruit .lead_txt {
    margin-bottom: 20px;
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .recruit .lead_txt p {
    margin-bottom: 15px;
  }
  .recruit .lead_txt p:last-child {
    margin-bottom: 0;
  }
  .recruit .accordion-container .com_bg_box {
    margin-bottom: 60px;
  }
  .recruit .shinro_list {
    margin-bottom: 40px;
  }
  .recruit .shinro_list ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .recruit .shinro_list ul li {
    width: 49%;
  }
}

.doctors_list .title-head {
  background-image: url(../../doctors_list/img/title-head-doctors_bg_sp.jpg);
}
.doctors_list .info_table td {
  text-align: center;
}
.doctors_list .dr-table_table_area {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #dbdddc;
  margin-bottom: 15px;
}
.doctors_list .dr-table_table_area .dr-table_table {
  min-width: 769px;
  border-collapse: collapse;
}
.doctors_list .dr-table_table_area .dr-table_table thead {
  background-color: #f4faee;
}
.doctors_list .dr-table_table_area .dr-table_table thead th {
  padding: 5px 0;
  width: 15%;
}
.doctors_list .dr-table_table_area .dr-table_table thead th:first-child {
  width: 7%;
}
.doctors_list .dr-table_table_area .dr-table_table thead .blank_th {
  width: 9.8%;
}
.doctors_list .dr-table_table_area .dr-table_table thead .day_th {
  width: 15%;
}
.doctors_list .dr-table_table_area .dr-table_table tbody td span {
  display: block;
}
.doctors_list .dr-table_table_area .dr-table_table tbody td span small {
  display: block;
  font-size: 1.3rem;
}
.doctors_list .dr-table_table_area .dr-table_table tbody td .td_label_chg {
  font-size: 1.3rem;
  width: 50%;
  text-align: center;
  margin: 0px auto 10px;
}
.doctors_list .dr-table_table_area .dr-table_table tbody .td_label_chg {
  font-size: 1.4rem;
  color: #436BB5;
  background-color: #fff;
  border: 1px solid #436BB5;
  padding: 5px 8px;
  width: 60%;
  margin: 0 auto 5px;
}
.doctors_list .dr-table_table_area .dr-table_table tbody .td_label_w {
  color: #ED7B7B;
}
.doctors_list .dr-table_table_area .dr-table_table tbody .td_label_w small {
  color: #333;
}
.doctors_list .dr-table_table_area .dr-table_table tbody .td_label_close {
  font-size: 1.4rem;
  color: #fff;
  background-color: #ED7B7B;
  padding: 5px 8px;
  width: 60%;
  margin: 0 auto 5px;
}
.doctors_list .dr-table_table_area .dr-table_table th, .doctors_list .dr-table_table_area .dr-table_table td {
  border: 1px solid #dbdddc;
  text-align: center;
}
.doctors_list .dr-table_table_area .dr-table_table .th_am {
  background-color: #fcfae2;
}
.doctors_list .dr-table_table_area .dr-table_table .th_pm {
  background-color: #e1e6fb;
}
.doctors_list .dr-table_table_area .dr-table_table_txt_r {
  text-align: right;
}
.doctors_list .dr-table_table_area .th_am {
  padding: 0 5px;
}
.doctors_list .dr-table_table_area .th_pm {
  padding: 0 5px;
}
.doctors_list .dr-table_table_area .dr-table_table_txt_r {
  text-align: left;
  margin-bottom: 5px;
}
.doctors_list #lymph .txt_area {
  margin-bottom: 40px;
}
.doctors_list .accordion-container .article-title {
  position: static;
  padding: 0;
  border: none;
}
.doctors_list .accordion-container .article-title .acc_h {
  display: block;
  position: relative;
  padding: 8px 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #7fbe26;
  border: 2px solid #dbdbdb;
  cursor: pointer;
}
.doctors_list .accordion-container .article-title .acc_h:hover {
  background-color: #f4faee;
}
@media screen and (min-width: 769px) {
  .doctors_list .title-head {
    background-image: url(../../doctors_list/img/title-head-doctors_bg.jpg);
  }
  .doctors_list .dr-table_table_area {
    margin-bottom: 80px;
  }
  .doctors_list .dr-table_table_area .dr-table_table {
    width: 100%;
  }
  .doctors_list .dr-table_table_area .dr-table_table thead th {
    padding: 7px 10px;
  }
  .doctors_list .dr-table_table_area .dr-table_table tbody th {
    width: 10%;
  }
  .doctors_list .dr-table_table_area .dr-table_table tbody td {
    width: 15%;
    padding: 12px 5px;
  }
  .doctors_list .dr-table_table_area .dr-table_table tbody td span {
    display: block;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .doctors_list .dr-table_table_area .dr-table_table tbody td span:last-child {
    margin-bottom: 0;
  }
  .doctors_list .dr-table_table_area .dr-table_table tbody td span small {
    font-size: 1.3rem;
    display: block;
  }
  .doctors_list #lymph .txt_area {
    margin-bottom: 80px;
  }
  .doctors_list #ophthalmology .dr-table_table_area {
    margin-bottom: 20px;
  }
}

.checkup.department .title-head {
  background-image: url(../../checkup/img/title-head-checkup_bg_sp.jpg);
}
.checkup .feature_list div {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
}
.checkup .feature_list div dt {
  width: 13%;
  font-weight: bold;
  color: #7fbe26;
  border: 2px solid #dbdddc;
  padding: 3px 5px;
  margin-right: 20px;
  text-align: center;
}
.checkup .feature_list div dd {
  width: 84%;
}
.checkup .feature_list div dd .feature_h {
  font-weight: bold;
  margin-bottom: 5px;
}
.checkup .table01 .info_table {
  margin-bottom: 20px;
}
.checkup .table01 .info_table td {
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
}
.checkup .table01 .info_table td small {
  font-weight: normal;
  font-size: 1.4rem;
}
.checkup .checkup_table.table01 table .th01 {
  vertical-align: middle;
}
.checkup .info_tel {
  margin-bottom: 20px;
}
.checkup .info_tel b {
  text-decoration: none;
  font-weight: bold;
  font-size: 2.0rem;
  background: url(../../img/ico_telB.png) left top 7px no-repeat;
  background-size: auto;
  padding: 2px 0 5px 18px;
  margin-left: 20px;
  color: #5b5b5b;
}
.checkup .course_list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.checkup .course_list li {
  border: 2px solid #dbdddc;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  width: 30%;
  color: #7fbe26;
  transition: 0.5s ease-in-out;
}
.checkup .course_list li a {
  color: #7fbe26;
  text-decoration: none;
  display: block;
}
.checkup .inspection_flow div {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
}
.checkup .inspection_flow div dt {
  width: 13%;
  font-weight: bold;
  color: #7fbe26;
  border: 2px solid #7fbe26;
  background-color: #f4faee;
  margin-right: 20px;
  text-align: center;
  width: 50px;
  height: 50px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  line-height: 46px;
}
.checkup .inspection_flow div dd {
  width: 89%;
}
.checkup .inspection_flow div dd .feature_h {
  font-weight: bold;
  margin-bottom: 5px;
}
.checkup .inspection_flow .main_area_h5 {
  font-size: 1.6rem !important;
}
.checkup .inspection_flow .img_area {
  display: block;
}
@media only screen and (max-width: 767px) {
  .checkup .accordion-container .article-title {
    padding: 8px 10px 8px 0px;
  }
  .checkup .main_area .inspection_flowarea .img_2col .img_area {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .checkup.department .title-head {
    background-image: url(../../checkup/img/title-head-checkup_bg.jpg);
  }
  .checkup .course_list li:hover {
    background-color: #f4faee;
  }
}
.checkup.no .course_list {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.checkup.no .course_list li {
  margin-right: 20px;
}
.checkup.no .course_list li:last-child {
  margin-right: 0;
}

.nursing .title-head {
  background-image: url(../../nursing/img/title-head-nursing_bg_sp.jpg);
}
.nursing #rinen .index_h4_min {
  border-bottom: none;
  text-align: center;
  margin-bottom: 0;
  color: #f284bd;
}
.nursing .index_h3 {
  background-color: #f284bd;
}
.nursing .main_area_h4 {
  color: #f284bd;
}
.nursing .main_area_h5 {
  border-left: 5px solid #f284bd;
}
.nursing .page_btn_area {
  background-color: #fde7f2;
}
.nursing .page_btn_area ul li {
  border: 2px solid #f284bd;
}
.nursing .page_btn_area ul li.active a {
  background-color: #f284bd;
}
.nursing .page_btn_area ul li a:after {
  border-top: 3px solid #f284bd;
  border-right: 3px solid #f284bd;
}
.nursing .page_btn_area ul li:hover a {
  background-color: #f284bd;
}
.nursing .page_btn_area ul li:hover a:after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.nursing .table01 table th {
  background-color: #fef8fb;
}
.nursing .nursing_msg .txt_col .txt_area p {
  margin-bottom: 15px;
}
.nursing .nursing_msg .txt_col .txt_area p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .nursing .title-head {
    background-image: url(../../nursing/img/title-head-nursing_bg.jpg);
  }
  .nursing .nursing_msg .txt_col .txt_area p {
    margin-bottom: 0;
  }
}
.nursing.education .education_lead_area {
  margin-bottom: 30px;
}
.nursing.education .education_lead {
  font-family: Century, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.0rem;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 15px;
}
.nursing.education .education_lead .small {
  font-size: 1.8rem;
}
.nursing.education .timeline li {
  position: relative;
  margin-bottom: 38px;
  padding: 15px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
}
.nursing.education .timeline li:after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  border: 20px solid transparent;
  border-top-color: #f284bd;
  border-bottom-width: 0;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, 0px);
}
.nursing.education .timeline li:last-child:after {
  display: none;
}
.nursing.education .timeline li p {
  margin: 0;
}
.nursing.education .timeline li p .tit {
  font-weight: bold;
  color: #f284bd;
}
.nursing.education .timeline li p span {
  display: block;
}
.nursing.education .timeline li p.time {
  width: 100%;
  margin-bottom: 10px;
  color: #f284bd;
  border-bottom: 2px solid #d9d9d9;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (min-width: 769px) {
  .nursing.education .education_lead_area {
    margin-bottom: 40px;
  }
  .nursing.education .education_lead {
    font-size: 2.4rem;
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .nursing.education .education_lead .small {
    font-size: 1.8rem;
  }
  .nursing.education .timeline li {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .nursing.education .timeline li p.time {
    width: 15%;
    margin-bottom: 0;
    margin-right: 20px;
    margin-left: 10px;
    padding-right: 20px;
    border-right: 2px solid #d9d9d9;
    border-bottom: none;
  }
}
.nursing.introduction .img_2col {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.nursing.introduction .img_2col li:first-child {
  margin-right: 20px;
}

.facilities .title-head {
  background-image: url(../../hospital_facilities/img/title-head-facilities_bg_sp.jpg);
}
.facilities .search1_box {
  position: relative;
}
.facilities .search1_box_pc {
  display: none;
}
.facilities .search1_box_sp {
  display: block;
}
.facilities #modalArea {
  display: none;
}
.facilities .search1_modal {
  width: 100%;
  box-sizing: border-box;
}
.facilities .modaal-close {
  top: 72px;
}
@media screen and (min-width: 769px) {
  .facilities .title-head {
    background-image: url(../../hospital_facilities/img/title-head-facilities_bg.jpg);
  }
  .facilities .search1_box_pc {
    display: block;
  }
  .facilities .search1_box_sp {
    display: none;
  }
  .facilities .search1_box .link01 {
    display: block;
    position: absolute;
    transition: all 0.3s;
    box-sizing: border-box;
    outline: none;
    border-radius: 15px;
  }
  .facilities .search1_box .link01:hover {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.4);
  }
  .facilities .search1_box .link01:hover:after {
    animation: link01_anime 1s ease;
    transition: all .5s;
    opacity: 1;
  }
  .facilities .search1_box .link01:after {
    content: "";
    opacity: 0;
    position: absolute;
  }
  @keyframes link01_anime {
    0% {
      opacity: 0;
      /* 透明度指定 */
    }
    100% {
      opacity: 1;
      /* 透明度指定 */
    }
  }
  .facilities .search1_box .modal01_btn {
    top: 493px;
    left: 407px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal02_btn {
    top: 479px;
    left: 284px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal03_btn {
    top: 503px;
    left: 582px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal04_btn {
    top: 407px;
    left: 157px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal05_btn {
    top: 352px;
    left: 327px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal06_btn {
    top: 368px;
    left: 481px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal07_btn {
    top: 289px;
    left: 585px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal08_btn {
    top: 112px;
    left: 695px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal09_btn {
    top: 401px;
    left: 63px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal10_btn {
    top: 356px;
    left: 126px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal11_btn {
    top: 319px;
    left: 213px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal12_btn {
    top: 305px;
    left: 295px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal13_btn {
    top: 219px;
    left: 240px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal14_btn {
    top: 175px;
    left: 260px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal15_btn {
    top: 91px;
    left: 308px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal16_btn {
    top: 382px;
    left: 244px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal17_btn {
    top: 472px;
    left: 376px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal18_btn {
    top: 347px;
    left: 505px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal19_btn {
    top: 378px;
    left: 578px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal20_btn {
    top: 378px;
    left: 655px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal21_btn {
    top: 325px;
    left: 645px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal22_btn {
    top: 413px;
    left: 725px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal23_btn {
    top: 154px;
    left: 655px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal24_btn {
    top: 234px;
    left: 132px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal25_btn {
    top: 350px;
    left: 65px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal26_btn {
    top: 398px;
    left: 352px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal27_btn {
    top: 360px;
    left: 468px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal28_btn {
    top: 360px;
    left: 551px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal29_btn {
    top: 86px;
    left: 319px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal30_btn {
    top: 91px;
    left: 784px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal31_btn {
    top: 396px;
    left: 717px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal32_btn {
    top: 31px;
    left: 227px;
    width: 36px;
    height: 36px;
  }
  .facilities .search1_box .modal33_btn {
    top: 220px;
    left: 298px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal34_btn {
    top: 188px;
    left: 481px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal35_btn {
    top: 375px;
    left: 225px;
    width: 31px;
    height: 31px;
  }
  .facilities .search1_box .modal36_btn {
    top: 258px;
    left: 298px;
    width: 31px;
    height: 31px;
  }
  .facilities #modalArea {
    display: none;
  }
  .facilities .search1_modal {
    width: 940px;
    box-sizing: border-box;
  }
  .facilities .modaal-close {
    top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .facilities .modaal-close {
    position: absolute;
    top: 0;
  }
  .facilities .modaal-close:after, .facilities .modaal-close:before {
    top: 15px;
    left: 40px;
    background-color: #333;
  }
}

.openlecture .title-head {
  background-image: url(../../open_lecture/img/title-head-openlecture_bg_sp.jpg);
}
.openlecture .btn_area {
  margin-top: 30px;
  margin-bottom: 30px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.openlecture .inner h2 {
  padding-left: 6px;
  border-left: 5px solid #7fbe26;
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.4;
}
.openlecture .inner h3 {
  font-weight: bold;
  padding-left: 20px;
  position: relative;
}
.openlecture .inner h3:before {
  content: '';
  display: block;
  font-weight: bold;
  background-image: url(/department/img/ico_prof.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 20px;
  width: 14px;
  height: 2px;
  top: 50%;
  left: 0;
  position: absolute;
}
.openlecture .inner h4 {
  font-weight: bold;
  font-size: 1.7rem;
  margin: 0 0 10px;
}
.openlecture .inner h5 {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 10px;
}
.openlecture .inner h6 {
  font-weight: bold;
  font-size: 1.3rem;
  margin: 0 0 5px;
}
.openlecture em {
  font-style: italic !important;
}
.openlecture strong {
  font-weight: bold !important;
}
.openlecture blockquote {
  position: relative;
  padding: 30px 15px 8px 15px;
  background: #faf7ee;
  box-sizing: border-box;
  color: #555;
  width: 90%;
  margin: 20px auto;
  border-left: 4px solid #7fbe26;
}
.openlecture blockquote:before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 15px;
  vertical-align: middle;
  content: "\f10d";
  font-family: FontAwesome;
  color: #7fbe26;
  font-size: 25px;
  line-height: 1;
}
.openlecture blockquote p {
  padding: 0;
  margin: 10px;
  line-height: 1.5;
}
.openlecture ol {
  list-style-type: decimal !important;
  margin: 0 0 0 1em;
}
.openlecture ol li {
  margin: 1em 0em;
}
.openlecture .schedule_area {
  /*ul{
  	//margin-left: 1em;
  	li{
  		line-height: 1.4;
  		border-bottom: 1px dotted #d2d2d2;
  		padding: 13px 0 12px;
  		//position: relative;
  		//margin-bottom: 8px;
  		//&:after{
  		//	display: block;
  		//	content: '';
  		//	position: absolute;
  		//	top: 10px;
  		//	left: -1em;
  		//	width: 8px;
  		//	height: 8px;
  		//	background-color: $color_main;
  		//	border-radius: 100%;
  		//}
  		ul{
  			li{
  				border-bottom: none;
  				padding: 5px 0 0;
  			}
  		}
  	}
  }*/
}
.openlecture .schedule_area .skd_date {
  margin-bottom: 20px;
}
.openlecture .schedule_area .txt_area {
  margin-bottom: 30px !important;
}
.openlecture .schedule_area .txt_area p {
  margin-bottom: 15px;
}
.openlecture .schedule_area .com_img_2col {
  margin-bottom: 30px;
}
.openlecture .schedule_area a {
  color: #7fbe26;
}
.openlecture .schedule_area h2 {
  margin-bottom: 20px;
}
.openlecture .schedule_area h3 {
  margin-bottom: 20px;
}
.openlecture .schedule_area ul {
  margin-left: 1em;
}
.openlecture .schedule_area ul li {
  position: relative;
  margin-bottom: 8px;
}
.openlecture .schedule_area ul li:after {
  display: block;
  content: '';
  position: absolute;
  top: 10px;
  left: -1em;
  width: 8px;
  height: 8px;
  background-color: #7fbe26;
  border-radius: 100%;
}
.openlecture .schedule_list div {
  line-height: 1.4;
  border-bottom: 1px dotted #d2d2d2;
  padding: 13px 0 12px;
}
.openlecture .schedule_list div dt {
  width: 32%;
  font-weight: bold;
}
.openlecture .schedule_list div dd {
  margin-top: 10px;
}
.openlecture .schedule_list div dd a {
  color: #5b5b5b;
  text-decoration: none;
  display: block;
}
.openlecture .qa_list div {
  line-height: 1.4;
  border-bottom: 1px dotted #d2d2d2;
  padding: 13px 0 12px;
}
@media screen and (min-width: 769px) {
  .openlecture .title-head {
    background-image: url(../../open_lecture/img/title-head-openlecture_bg.jpg);
  }
  .openlecture .btn_area {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .openlecture .btn_area li {
    width: 320px;
  }
  .openlecture .inner h2 {
    padding-left: 8px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .openlecture .inner h3 {
    padding-left: 18px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .openlecture .inner h4 {
    font-size: 1.8rem;
  }
  .openlecture .inner h5 {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .openlecture .inner h6 {
    font-size: 1.4rem;
  }
  .openlecture .schedule_area {
    /*ul{
    	li{
    		padding: 20px 0 21px;
    		ul{
    			li{
    				padding: 10px 0 0;
    			}
    		}
    	}
    }*/
  }
  .openlecture .schedule_area .skd_date {
    margin-bottom: 30px;
  }
  .openlecture .schedule_area .txt_area p {
    margin-bottom: 15px;
  }
  .openlecture .schedule_list div {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 0 16px;
  }
  .openlecture .schedule_list div dt {
    width: 14%;
  }
  .openlecture .schedule_list div dd {
    width: 78%;
    margin-top: 0;
  }
  .openlecture .schedule_list div dd a:hover {
    text-decoration: underline;
  }
  .openlecture .qa_list div {
    padding: 20px 0 21px;
  }
}

.inhome .title-head {
  background-image: url(../../inhome/img/title-head-inhome_bg_sp.jpg);
}
.inhome .tel {
  font-weight: bold;
  font-size: 2.0rem;
}
.inhome .tel a, .inhome .tel b {
  text-decoration: none;
  font-size: 2.8rem;
  color: #7fbe26;
}
.inhome .inhome_50table th, .inhome .inhome_50table td {
  background-color: #f4faee;
  text-align: center;
  font-weight: normal;
}
@media screen and (min-width: 769px) {
  .inhome .title-head {
    background-image: url(../../inhome/img/title-head-inhome_bg.jpg);
  }
}

.nadolive .title-head {
  background-image: url(../../nadolive/img/title-head-nadolive_bg_sp.jpg);
}
.nadolive .nadolive_list ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.nadolive .nadolive_list ul li {
  width: 48%;
  margin-bottom: 20px;
  margin-right: 15px;
}
.nadolive .nadolive_list ul li a {
  display: block;
  border: 1px solid #dbdddc;
  -moz-box-shadow: 0px 5px 0px 0px #eaefe6;
  -webkit-box-shadow: 0px 5px 0px 0px #eaefe6;
  -ms-box-shadow: 0px 5px 0px 0px #eaefe6;
  box-shadow: 0px 5px 0px 0px #eaefe6;
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.nadolive .nadolive_list ul li a .nadolive_img {
  display: block;
}
.nadolive .nadolive_list ul li a .nado_link {
  display: block;
  padding: 10px;
  background-color: #fbfbfb;
}
.nadolive .nadolive_list ul li a .nado_link img {
  padding-bottom: 3px;
}
@media only screen and (max-width: 767px) {
  .nadolive .nadolive_list ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .nadolive .title-head {
    background-image: url(../../nadolive/img/title-head-nadolive_bg.jpg);
  }
  .nadolive .nadolive_list ul li {
    width: 23%;
    max-width: 230px;
    margin-bottom: 30px;
    margin-right: 20px;
  }
  .nadolive .nadolive_list ul li:nth-child(4n) {
    margin-left: 0;
  }
  .nadolive .nadolive_list ul li a:hover {
    opacity: 0.7;
  }
  .nadolive .nadolive_list ul li a .nado_link {
    padding: 12px 15px;
  }
}

.news .title-head {
  background-image: url(../../news/img/title-head-news_bg_sp.jpg);
}
.news .inner {
  content: "";
  display: block;
  clear: both;
}
.news article h1 {
  color: #7fbe26;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 2px solid #dbdddc;
  margin-bottom: 15px;
  padding-bottom: 2px;
  line-height: 1.55;
}
.news article h2 {
  padding-left: 6px;
  border-left: 5px solid #7fbe26;
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.4;
  margin: 0 0 10px;
}
.news article h3 {
  font-weight: bold;
  padding-left: 18px;
  position: relative;
  margin: 0 0 10px;
}
.news article h3:before {
  content: '';
  display: block;
  font-weight: bold;
  background-image: url(/department/img/ico_prof.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 20px;
  width: 14px;
  height: 2px;
  top: 50%;
  left: 0;
  position: absolute;
}
.news article h4 {
  font-weight: bold;
  font-size: 1.7rem;
  margin: 0 0 10px;
}
.news article h5 {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 10px;
}
.news article h6 {
  font-weight: bold;
  font-size: 1.3rem;
  margin: 0 0 5px;
}
.news article ul {
  margin-left: 1em;
}
.news article ul li {
  position: relative;
  margin-bottom: 8px;
}
.news article ul li:after {
  display: block;
  content: '';
  position: absolute;
  top: 10px;
  left: -1em;
  width: 8px;
  height: 8px;
  background-color: #7fbe26;
  border-radius: 100%;
}
.news em {
  font-style: italic !important;
}
.news strong {
  font-weight: bold !important;
}
.news blockquote {
  position: relative;
  padding: 30px 15px 8px 15px;
  background: #faf7ee;
  box-sizing: border-box;
  color: #555;
  width: 90%;
  margin: 20px auto;
  border-left: 4px solid #7fbe26;
}
.news blockquote:before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 15px;
  vertical-align: middle;
  content: "\f10d";
  font-family: FontAwesome;
  color: #7fbe26;
  font-size: 25px;
  line-height: 1;
}
.news blockquote p {
  padding: 0;
  margin: 10px;
  line-height: 1.5;
}
.news ol {
  list-style-type: decimal !important;
  margin: 0 0 0 1em;
}
.news ol li {
  margin: 1em 0em;
}
.news .main_area {
  float: none;
  width: 100%;
  margin-bottom: 20px;
}
.news .side_nav {
  float: none;
  width: 100%;
  margin-bottom: 40px;
}
.news .side_nav .side_nav_ttl {
  background-color: #7fbe26;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 10px 0;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
}
.news .side_nav ul {
  list-style-type: none;
  margin-top: 0;
  margin-left: 0;
  padding-left: 0;
}
.news .side_nav ul li {
  border-bottom: 2px solid #d2d2d2;
  display: block;
  position: relative;
}
.news .side_nav ul li:before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #7fbe26;
  border-right: solid 2px #7fbe26;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 10px;
  margin-top: -3px;
}
.news .side_nav ul li.blank_link:before {
  border-top: none;
  border-right: none;
  width: 16px;
  height: 16px;
  transform: rotate(0deg);
  margin-top: -8px;
}
.news .side_nav ul li a {
  display: block;
  padding: 10px 0px 10px 18px;
  text-decoration: none;
  font-size: 1.6rem;
  color: #5b5b5b;
}
.news .news_list div {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 0px;
  line-height: 1.4;
  border-bottom: 1px dotted #d2d2d2;
  padding: 13px 0 12px;
}
.news .news_list div dt {
  width: 32%;
  font-weight: bold;
  margin-right: 5px;
}
.news .news_list div dd a {
  color: #5b5b5b;
  text-decoration: none;
  display: block;
}
.news .news_list div dd a.pdf_link:after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 21px;
  margin-left: 5px;
  background: url(../../common/img/ico_pdf.png) 95% center no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.news .news_list div dd a.new_link:after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 5px;
  background: url(../../common/img/ico_new.png) 95% center no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.news .news_list div dd.txt {
  width: 100%;
  margin-top: 10px;
}
.news .news_list div dd.tag {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 52%;
  margin-right: 15px;
}
.news .news_list div dd.tag span {
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  padding: 2px 5px;
  display: inline-block;
  margin-top: 5px;
}
.news .news_list div dd.tag span:first-of-type {
  margin-top: 0;
}
.news .news_list div dd.tag span.c1 {
  background-color: #6789ec;
}
.news .news_list div dd.tag span.c2 {
  background-color: #ec8467;
}
.news .news_list div dd.tag span.c3 {
  background-color: #7fbe26;
}
.news .page-num {
  text-align: center;
  margin: 30px auto;
}
.news .page-num li {
  display: inline-block;
  margin-right: 5px;
}
.news .page-num li:last-child {
  margin-right: 0;
}
.news .page-num li a {
  display: block;
  padding: 2px 10px 1px;
  border: 1px solid #dbdddc;
  text-decoration: none;
  color: #5b5b5b;
}
.news .page-num li a.current {
  background-color: #f4faee;
}
.news .page-numbers {
  text-align: center;
  margin: 30px auto;
}
.news .page-numbers li {
  display: inline-block;
  margin-right: 5px;
}
.news .page-numbers li:last-child {
  margin-right: 0;
}
.news .page-numbers li a {
  display: block;
  padding: 2px 10px 1px;
  border: 1px solid #dbdddc;
  text-decoration: none;
  color: #5b5b5b;
}
.news .page-numbers li a.current {
  background-color: #f4faee;
}
.news .page-numbers li span {
  display: block;
  padding: 2px 10px 1px;
  border: 1px solid #dbdddc;
  text-decoration: none;
  color: #5b5b5b;
}
.news .page-numbers li span.current {
  background-color: #f4faee;
}
.news .article_ttl {
  font-size: 2.0rem;
  font-weight: bold;
  border-bottom: solid 3px #7fbe26;
  margin: 0 0 35px;
}
.news .date {
  margin-bottom: 20px;
  text-align: right;
}
.news .txt_area p {
  margin-bottom: 10px;
}
.news .btn_area {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.news .btn_area a {
  display: block;
  position: relative;
  border: 2px solid #7fbe26;
  background-color: #fff;
  text-align: center;
  padding: 12px;
  color: #5b5b5b;
  width: 200px;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
}
.news .btn_area a:before {
  left: 15px;
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 3px solid #7fbe26;
  border-right: 3px solid #7fbe26;
  transform: rotate(45deg);
  right: 7px;
  top: 40%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 769px) {
  .news .title-head {
    background-image: url(../../news/img/title-head-news_bg.jpg);
  }
  .news article h1 {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }
  .news article h2 {
    padding-left: 8px;
    font-size: 1.8rem;
  }
  .news article h3 {
    padding-left: 18px;
    font-size: 1.8rem;
  }
  .news article h4 {
    font-size: 1.8rem;
  }
  .news article h5 {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .news article h6 {
    font-size: 1.4rem;
  }
  .news .main_area {
    width: calc(75% - 50px);
    float: right;
  }
  .news .side_nav {
    width: 25%;
    float: left;
  }
  .news .side_nav .side_nav_ttl {
    font-size: 2.0rem;
    padding: 40px 0;
  }
  .news .side_nav ul li:before {
    right: 15px;
  }
  .news .side_nav ul li.blank_link:before {
    border-top: none;
    border-right: none;
    width: 16px;
    height: 16px;
    margin-top: -9px;
  }
  .news .side_nav ul li a {
    padding: 10px 0px 10px 18px;
  }
  .news .news_list div {
    margin: 0 0 30px;
  }
  .news .news_list div dt {
    width: 16%;
    margin-right: 0;
  }
  .news .news_list div dd a:hover {
    text-decoration: underline;
  }
  .news .news_list div dd.tag {
    width: 13%;
  }
  .news .news_list div dd.txt {
    width: 68%;
    margin-top: 0;
  }
  .news .page-num li a:hover {
    text-decoration: underline;
  }
  .news .page-numbers li a:hover {
    text-decoration: underline;
  }
  .news .article_ttl {
    font-size: 2.4rem;
  }
  .news .date {
    margin-bottom: 50px;
  }
  .news .txt_area p {
    margin-bottom: 15px;
  }
  .news .btn_area {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .news .btn_area a:hover {
    background-color: #7fbe26;
    color: #fff;
  }
  .news .btn_area a:hover:before {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
}
@media only screen and (min-width: 769px) {
  .news .side_nav ul li a {
    position: relative;
    overflow: hidden;
  }
  .news .side_nav ul li a:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f4faee;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: 0.5s ease-in-out;
  }
  .news .side_nav ul li a:hover:before {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

body.contact .txt_area {
  margin-bottom: 20px;
}
body.contact .title-head {
  background-image: url(../../contact/img/title-head-contact_bg_sp.jpg);
}
body.contact .form-parts {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #dadada;
  border-radius: 4px;
  color: #000;
  font-size: 1.6rem;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.7;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body.contact .form-parts.w-s {
  max-width: 120px;
}
body.contact .form-parts::placeholder {
  color: #BFBFBF;
}
body.contact .form-parts:-ms-input-placeholder {
  color: #BFBFBF;
}
body.contact .form-parts::-ms-input-placeholder {
  color: #BFBFBF;
}
@media only screen and (max-width: 767px) {
  body.contact .form-parts {
    padding: 10px 12px;
    font-size: 1.4rem;
  }
}
body.contact .form_table {
  width: 100%;
  margin-bottom: 20px;
}
body.contact .form_table tr + tr {
  border-top: 1px solid #dbdddc;
}
body.contact .form_table th, body.contact .form_table td {
  line-height: 1.4;
  vertical-align: top;
}
body.contact .form_table th {
  width: 260px;
  padding: 32px 20px 32px 0;
  font-weight: bold;
  white-space: nowrap;
  text-align: left;
  color: #7fbe26;
}
body.contact .form_table th div {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
body.contact .form_table td {
  width: calc(100% - 260px);
  padding: 20px 0 20px 20px;
  position: relative;
}
body.contact .form_table td:before {
  content: '';
  width: 1px;
  height: 100%;
  background-image: linear-gradient(to bottom, #d3d3d3, #d3d3d3 66.66667%, rgba(0, 0, 0, 0) 66.66667%, rgba(0, 0, 0, 0) 100%);
  background-size: 6px 6px;
  width: 1px;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  body.contact .table-block th, body.contact .table-block td {
    display: block;
    width: 100%;
  }
  body.contact .table-block th {
    padding: 16px 8px 0 !important;
  }
  body.contact .table-block td {
    padding: 8px 8px 16px !important;
  }
  body.contact .table-block td:before {
    display: none;
  }
}
body.contact .form-select-wrap {
  position: relative;
}
body.contact .form-select-wrap:before {
  content: '';
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #ccc;
  border-right: 2px solid #ccc;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 17px;
  right: 16px;
  z-index: 1;
}
body.contact .form-select-wrap .form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body.contact .rewuired {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #FF0000;
  display: inline-block;
  padding: 3px 6px;
}
body.contact .contact_note {
  margin-bottom: 20px;
}
body.contact .btn-area {
  margin-bottom: 80px;
}
body.contact .form_btn {
  padding: 7px 10px 5px;
  text-align: center;
  border-radius: 10px;
  border: 2px solid #7fbe26;
  background-color: #f4faee;
  display: block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
body.contact .form_btn.back {
  border: 2px solid #7fbe26;
  background-color: #fff;
}
body.contact .form_btn input {
  display: block;
  width: 100%;
  padding: 10px 10px;
  font-weight: bold;
  font-size: 1.6rem;
  color: #5b5b5b;
  background-color: transparent;
  border-radius: 0;
  -webkit-box-sizing: button;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media only screen and (max-width: 767px) {
  body.contact .form_table th, body.contact .form_table td {
    width: 100%;
  }
  body.contact .form_table th div {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
  body.contact .form_table th span {
    display: inline-block;
    margin-right: 10px;
  }
  body.contact .form_table td {
    padding: 8px 8px 18px !important;
  }
}
@media only screen and (min-width: 768px) {
  body.contact .btn-area {
    margin-left: auto;
    margin-right: auto;
  }
}
body.contact .form-select-wrap {
  position: relative;
}
body.contact .form-select-wrap:before {
  content: '';
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #dadada;
  border-right: 2px solid #dadada;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 17px;
  right: 16px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  body.contact .form-select-wrap {
    max-width: 500px;
  }
}
body.contact .form-select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  padding: 8px 10px 12px 10px;
}
@media only screen and (max-width: 767px) {
  body.contact .form-select {
    padding: 10px 12px;
  }
}
body.contact .form-check {
  display: none;
}
body.contact .form-check:checked + .form-check-parts {
  color: #7fbe26;
}
body.contact .form-check:checked + .form-check-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 12px;
  transform: rotate(40deg);
  border-bottom: 2px solid #7fbe26;
  border-right: 2px solid #7fbe26;
}
@media only screen and (max-width: 767px) {
  body.contact .form-check:checked + .form-check-parts::after {
    top: 0;
  }
}
body.contact .form-check-parts {
  padding-left: 24px;
  position: relative;
  margin-right: 10px;
}
body.contact .form-check-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #dadada;
  border-radius: 2px;
}
@media only screen and (max-width: 767px) {
  body.contact .form-check-parts::before {
    top: -4px;
  }
}
body.contact .wpcf7-form label {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-weight: bold;
  color: #7fbe26;
  border-bottom: 1px solid #dbdddc;
}
body.contact .wpcf7-form label span {
  padding: 10px 20px 20px 0;
}
body.contact .wpcf7-form label span input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #dadada;
  border-radius: 4px;
  color: #000;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.7;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body.contact .wpcf7-form label span input.w-s {
  max-width: 120px;
}
body.contact .wpcf7-form label span input::placeholder {
  color: #BFBFBF;
}
body.contact .wpcf7-form label span input:-ms-input-placeholder {
  color: #BFBFBF;
}
body.contact .wpcf7-form label span input::-ms-input-placeholder {
  color: #BFBFBF;
}
@media only screen and (max-width: 767px) {
  body.contact .wpcf7-form label span input {
    padding: 10px 12px;
    font-size: 1.4rem;
  }
}
body.contact .wpcf7-form label span .wpcf7-textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #dadada;
  border-radius: 4px;
  color: #000;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.7;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body.contact .wpcf7-form p {
  margin-bottom: 20px;
}
body.contact .wpcf7-form p:nth-child(4) {
  padding: 7px 10px 5px;
  text-align: center;
  border-radius: 10px;
  border: 2px solid #7fbe26;
  background-color: #f4faee;
  display: block;
  max-height: 70px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
body.contact .wpcf7-form p:nth-child(4).back {
  border: 2px solid #7fbe26;
  background-color: #fff;
}
body.contact .wpcf7-form p:nth-child(4) .wpcf7-submit {
  display: block;
  width: 100%;
  padding: 10px 10px;
  font-weight: bold;
  font-size: 1.6rem;
  color: #5b5b5b;
  background-color: transparent;
  border-radius: 0;
  -webkit-box-sizing: button;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (min-width: 769px) {
  body.contact .title-head {
    background-image: url(../../contact/img/title-head-contact_bg.jpg);
  }
  body.contact .form_table {
    margin-bottom: 20px;
  }
  body.contact .txt_area {
    margin-bottom: 40px !important;
  }
  body.contact .btn-area {
    margin-left: auto;
    margin-right: auto;
  }
  body.contact .contact_note {
    margin-bottom: 40px;
  }
  body.contact .form_btn {
    max-width: 300px;
    padding: 12px 10px 10px;
    margin-left: auto;
    margin-right: auto;
  }
  body.contact .form_btn:hover {
    background-color: #fff;
  }
  body.contact .form_btn.back:hover {
    background-color: #f4faee;
  }
  body.contact .form_btn input {
    width: 100%;
    padding: 10px 10px;
    font-size: 1.8rem;
    letter-spacing: 0.15rem;
  }
  body.contact .wpcf7-form label {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-direction: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-bottom: 20px;
  }
  body.contact .wpcf7-form label span {
    width: calc(100% - 260px);
    padding: 20px 0px 20px 0;
  }
  body.contact .wpcf7-form label span input {
    width: 100%;
  }
  body.contact .wpcf7-form label span .wpcf7-textarea {
    width: auto;
    margin-left: 40px;
  }
  body.contact .wpcf7-form p {
    margin-bottom: 20px;
  }
  body.contact .wpcf7-form p:nth-child(4) {
    max-width: 300px;
    max-height: 75px;
    padding: 12px 10px 10px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
  }
  body.contact .wpcf7-form p:nth-child(4):hover {
    background-color: #fff;
  }
  body.contact .wpcf7-form p:nth-child(4).back:hover {
    background-color: #f4faee;
  }
  body.contact .wpcf7-form p:nth-child(4) .wpcf7-submit {
    width: 100%;
    padding: 10px 10px;
    font-size: 1.8rem;
    letter-spacing: 0.15rem;
  }
}
body.contact.confirm .btn-area {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
body.contact.confirm .btn-area .form_btn {
  max-width: 300px;
  width: 48%;
}
@media screen and (min-width: 769px) {
  body.contact.confirm .btn-area {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

body.recruit-contact .title-head {
  background-image: url(../../recruit-contact/img/title-head-r_contact_bg_sp.jpg);
}
@media screen and (min-width: 769px) {
  body.recruit-contact .title-head {
    background-image: url(../../recruit-contact/img/title-head-r_contact_bg.jpg);
  }
  body.recruit-contact .title-head h2 {
    line-height: 1.2;
  }
}

.attendance .attendance_table th, .attendance .attendance_table td {
  text-align: center;
}
.attendance .attendance_table .w-m {
  width: 19%;
}
.attendance .attendance_table .w-l {
  width: 48%;
}
.attendance .attendance_table .w-s {
  width: 16%;
}
.attendance table {
  width: 100% !important;
}
.attendance table th, .attendance table td {
  text-align: center;
  border: 2px solid #dbdddc;
  padding: 10px 5px;
  line-height: 1.46;
  font-size: 1.5rem;
}
.attendance table th {
  font-weight: bold;
  background-color: #f4faee;
}
@media screen and (min-width: 769px) {
  .attendance table th, .attendance table td {
    font-size: 1.6rem;
    padding: 10px;
  }
}

.covid19 .title-head {
  background-image: url(../../about/img/title-head-about_bg_sp.jpg);
}
.covid19 .flow_2col .txt_col {
  margin-right: 15px;
}
.covid19 .flow_2col .img_col {
  text-align: center;
}
.covid19 .flow_2col .img_col img {
  margin-bottom: 5px;
}
.covid19 .flow_2col .list_h {
  font-weight: bold;
  font-size: 1.6rem;
}
.covid19 .flow_2col .list_disc {
  margin-top: 20px;
}
.covid19 .note_bg_box {
  padding: 30px 15px 1px;
  background-color: #faeff2;
}
@media only screen and (max-width: 767px) {
  .covid19 .title-head h2 {
    width: 70%;
  }
  .covid19 .flow_2col .img_col {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 769px) {
  .covid19 .title-head {
    background-image: url(../../about/img/title-head-about_bg.jpg);
  }
  .covid19 .flow_2col {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
  }
  .covid19 .flow_2col .txt_col {
    width: 66%;
    margin-right: 25px;
    margin-bottom: 0;
  }
  .covid19 .flow_2col .img_col {
    width: 32%;
  }
  .covid19 .flow_2col .list_h {
    font-size: 1.8rem;
  }
  .covid19 .flow_2col .list_disc {
    margin-top: 25px;
  }
  .covid19 .img_area a:hover {
    opacity: 0.7;
  }
  .covid19 .note_bg_box {
    padding: 28px 30px 5px;
  }
}

/*
*  hf（Hospitals Fileタグ）
* ----------------------------------------*/
body.hf .hospital_medical-hp_title {
  margin-bottom: 15px;
  font-size: 2.0rem;
  line-height: 1.8;
  font-family: Century, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  margin-bottom: 15px;
  font-weight: bold;
}
body.hf .hospital_medical-staff_post {
  padding-left: 6px;
  border-left: 5px solid #7fbe26;
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.4;
  margin: 0 0 10px;
  display: inline-block;
}
body.hf .hospital_medical-staff_message:before {
  content: '患者さんへメッセージ';
  display: block;
  font-weight: bold;
}
body.hf .hospital_medical-staff_profile:before {
  content: 'プロフィール';
  display: block;
  font-weight: bold;
  background-image: url(/department/img/ico_prof.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 20px;
}
body.hf .hospital_medical-message:before {
  content: '紹介医療機関の先生方へ';
  display: block;
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.45;
}
body.hf .hospital_medical-hp_legend {
  margin-bottom: 20px;
}
body.hf .hospital_medical-image {
  margin-bottom: 15px;
}
body.hf .hospital_medical-image .caption {
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1.45;
}
body.hf .hospital_medical-disease {
  margin-top: 30px;
}
body.hf .hospital_medical-disease:before {
  content: '対象疾患';
  display: block;
  font-weight: bold;
  color: #7fbe26;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 2px solid #dbdddc;
  margin-bottom: 15px;
  padding-bottom: 2px;
  line-height: 1.55;
}
body.hf .hospital_medical-disease:after {
  content: '';
  clear: both;
  display: block;
}
body.hf .hospital_medical-treatment {
  margin-top: 30px;
}
body.hf .hospital_medical-treatment:before {
  content: '治療内容';
  display: block;
  font-weight: bold;
  color: #7fbe26;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 2px solid #dbdddc;
  margin-bottom: 15px;
  padding-bottom: 2px;
  line-height: 1.55;
}
body.hf .hospital_medical-staff {
  margin-top: 30px;
}
body.hf .hospital_medical-staff:before {
  content: 'スタッフ紹介';
  display: block;
  font-weight: bold;
  color: #7fbe26;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 2px solid #dbdddc;
  margin-bottom: 15px;
  padding-bottom: 2px;
  line-height: 1.55;
}
body.hf .hospital_medical-inspection {
  margin-top: 30px;
}
body.hf .hospital_medical-inspection:before {
  content: '検査実績';
  display: block;
  font-weight: bold;
  color: #7fbe26;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 2px solid #dbdddc;
  margin-bottom: 15px;
  padding-bottom: 2px;
  line-height: 1.55;
}
body.hf .hospital_medical-staff {
  margin-top: 30px;
}
body.hf .hospital_medical-staff .hospital_medical-staff_image {
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
}
body.hf .hospital_medical-staff .hospital_medical-staff_profile {
  margin-top: 0;
  line-height: 1.5;
  margin-bottom: 15px;
}
body.hf .hospital_medical-staff .hospital_medical-staff_profile:after {
  content: '';
  clear: both;
  display: block;
}
body.hf .hospital_medical-staff .hospital_medical-staff_message {
  background-color: #fbf7ee;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 30px;
  display: block;
  clear: both;
}
body.hf .hospital_medical-staff .hospital_medical-staff_message:after {
  content: '';
  clear: both;
  display: block;
}
body.hf .hospital_medical-message {
  border: 2px solid #7fbe26;
  padding: 15px;
}
body.hf table {
  width: 100%;
  border: 2px solid #dbdddc;
  border-collapse: collapse;
  border-spacing: 0;
}
body.hf table .header th {
  font-weight: bold;
  background-color: #f4faee;
  text-align: center;
}
body.hf table .header th:first-child {
  width: 22%;
}
body.hf table .header th:nth-child(2) {
  width: 60%;
}
body.hf table .header th:last-child {
  width: 17%;
}
body.hf table th, body.hf table td {
  border: 2px solid #dbdddc;
  padding: 10px 5px;
  line-height: 1.4;
  font-size: 1.5rem;
}
@media screen and (min-width: 769px) {
  body.hf .hospital_medical-hp_title {
    margin-bottom: 20px;
    font-size: 2.4rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  body.hf .hospital_medical-staff_post {
    padding-left: 8px;
    font-size: 1.8rem;
  }
  body.hf .hospital_medical-disease:before, body.hf .hospital_medical-treatment:before, body.hf .hospital_medical-staff:before, body.hf .hospital_medical-inspection:before {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }
  body.hf .hospital_medical-image {
    width: 50%;
    padding: 0 10px;
    float: left;
    margin-bottom: 20px;
  }
  body.hf .hospital_medical-image:after {
    content: '';
    clear: both;
    display: block;
  }
  body.hf .hospital_medical-image .caption {
    margin-top: 5px;
    font-size: 1.4rem;
  }
  body.hf .hospital_medical-image:last-child:after {
    content: '';
    clear: both;
    display: block;
  }
  body.hf .hospital_medical-disease:before {
    clear: both;
    display: block;
  }
  body.hf .hospital_medical-staff {
    margin-top: 40px;
  }
  body.hf .hospital_medical-staff .hospital_medical-staff_image {
    float: left;
    width: 36%;
    margin-right: 20px;
  }
  body.hf .hospital_medical-staff .hospital_medical-staff_profile {
    margin-bottom: 10px;
    display: inline-block;
    width: calc(64% - 20px);
  }
  body.hf .hospital_medical-staff .hospital_medical-staff_message {
    padding: 15px 18px;
    margin-bottom: 40px;
  }
  body.hf .hospital_medical-inspection {
    margin-top: 30px;
  }
  body.hf .hospital_medical-message {
    padding: 15px 18px;
  }
  body.hf table th, body.hf table td {
    padding: 10px;
    font-size: 1.6rem;
  }
}
body.hf.internal .hospital_medical-disease, body.hf.internal .hospital_medical-treatment {
  display: none;
}
body.hf.ophthalmology .hospital_medical-treatment {
  display: none;
}
body.hf.neurosurgery .hospital_medical-disease, body.hf.neurosurgery .hospital_medical-treatment {
  display: none;
}
body.hf.neurosurgery .hospital_medical-staff {
  margin-top: 40px;
}
body.hf.pediatrics .hospital_medical-disease:before, body.hf.pediatrics .hospital_medical-treatment:before {
  display: none;
}
body.hf.ear .hospital_medical-disease:before {
  display: none;
}
body.hf.surgery .hospital_medical-disease, body.hf.surgery .hospital_medical-treatment {
  display: none;
}
body.hf.anesthesiology .hospital_medical-disease:before, body.hf.anesthesiology .hospital_medical-treatment:before {
  display: none;
}
body.hf.anesthesiology .hospital_medical-staff {
  margin-top: 0;
}
body.hf.dentistry .hospital_medical-treatment:before {
  display: none;
}
body.hf.rehabilitation01 .hospital_medical-disease:before {
  display: none;
}
body.hf.urology .hospital_medical-disease {
  margin-bottom: 20px;
}
body.hf.urology .hospital_medical-treatment {
  display: none;
}
@media screen and (min-width: 769px) {
  body.hf.internal .hospital_medical-disease, body.hf.internal .hospital_medical-treatment {
    display: none;
  }
  body.hf.internal .hospital_medical-image {
    margin-bottom: 40px;
  }
  body.hf.ophthalmology .hospital_medical-treatment {
    display: none;
  }
  body.hf.pediatrics .hospital_medical-staff_profile {
    display: inline-block;
    width: calc(64% - 20px);
  }
  body.hf.ear .hospital_medical-image {
    margin-bottom: 40px;
  }
  body.hf.ear .hospital_medical-staff_profile {
    display: inline-block;
    width: calc(64% - 20px);
  }
  body.hf.surgery .hospital_medical-image {
    margin-bottom: 40px;
  }
  body.hf.dentistry .hospital_medical-image {
    margin-bottom: 40px;
  }
  body.hf.dentistry .hospital_medical-staff {
    margin-top: 40px;
  }
  body.hf.rehabilitation01 .hospital_medical-image {
    margin-bottom: 40px;
  }
  body.hf.rehabilitation01 .hospital_medical-treatment {
    margin-bottom: 40px;
  }
  body.hf.anesthesiology .hospital_medical-image {
    margin-bottom: 40px;
  }
  body.hf.anesthesiology .hospital_medical-staff_profile {
    display: block;
    width: calc(64% - 20px);
    margin-left: auto;
  }
}
