@charset "UTF-8";
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  background: #fffab6;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5 {
  font-family: "BIZ UDGothic", sans-serif;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.pc_none {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg .hd {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
}
.hd_bg .hd .hd_logo img {
  width: 280px;
  height: auto;
}
.hd_bg .hd .hd_info {
  margin-top: -1em;
  text-align: right;
}
.hd_bg .hd .hd_info .hd_tel {
  color: #804e21;
  font-family: "Kosugi", sans-serif;
  font-size: clamp(0.5rem, 0.091rem + 2.05vw, 2rem);
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}
.hd_bg .hd .hd_info .hd_btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: "Kosugi", sans-serif;
}
.hd_bg .hd .hd_info .hd_btn_contact {
  margin-right: 10px;
}
.hd_bg .hd .hd_info .hd_btn_contact > a {
  display: flex;
  align-items: center;
  padding: 5px 21px;
  background: #69be18;
  color: #fff;
  font-size: 11px;
  text-align: center;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_info .hd_btn_contact > a:hover {
  opacity: 0.75;
}
.hd_bg .hd .hd_info .hd_btn_contact > a:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 14px;
  margin: 0 5px 0 0;
  background: url(../images/icon_contact.png) no-repeat center center;
  background-size: contain;
}
.hd_bg .hd .hd_info .hd_btn_access > a {
  display: flex;
  align-items: center;
  padding: 5px 21px;
  background: #434343;
  color: #fff;
  font-size: 11px;
  text-align: center;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_info .hd_btn_access > a:hover {
  opacity: 0.75;
}
.hd_bg .hd .hd_info .hd_btn_access > a:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 16px;
  margin: 0 5px 0 0;
  background: url(../images/icon_access.png) no-repeat center center;
  background-size: contain;
}

.clone-hd {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 143px;
  transition: 0.3s;
  transform: translateY(-100%);
}

.hd_bnr_01 img {
  width: 180px;
}

.hd_bnr_02 img {
  padding: 5px 10px;
  background: #fff;
  border: solid 1px #999;
  border-radius: 15px;
  height: 50px;
  margin-left: 5px;
}

.hd_bnr_03 img {
  width: 160px;
  margin: 10px auto;
  border-radius: 15px;
}

.is-show {
  display: none;
  transform: translateY(0);
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
  display: none;
  /*width: 100%;
  border-top: 2px solid #39af89;*/
}
.nav_bg .nav {
  overflow: visible;
}
.nav_bg .nav .nav_list {
  display: -ms-flexbox;
  display: block;
  width: 100%;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  width: 100%;
  z-index: 1000;
  border-left: 1px solid #eee;
}
.nav_bg .nav .nav_list > li:nth-of-type(6n) {
  border-right: 1px solid #eee;
}
.nav_bg .nav .nav_list > li > a {
  display: -ms-flexbox;
  display: block;
  justify-content: center;
  align-items: center;
  height: 60px;
  color: #2d400a;
  font-family: "Kosugi", sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.5s ease;
}
.nav_bg .nav .nav_list > li > a:hover {
  background: #1ba103;
  color: #fff;
}
.nav_bg .nav .nav_list > li > a.current {
  background: #1ba103;
  color: #fff;
}
.nav_bg .nav .nav_list > li:hover .nav_clist {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .nav_list .contact {
  display: none;
}
.nav_bg .nav .nav_list .access {
  display: none;
}
.nav_bg .nav .nav_list .privacy {
  display: none;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav .nav_clist {
  display: none;
  transition: All 0.5s ease;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
}
.nav_bg .nav .nav_clist > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
}
.nav_bg .nav .nav_clist > li > a {
  background-color: #000;
  color: #fff;
  display: block;
  padding: 10px;
  text-decoration: none;
}
.nav_bg .nav .nav_clist > li > a:hover {
  opacity: 0.8;
}
.nav_bg .nav .nav_clist > li > a.current {
  opacity: 0.8;
}
.nav_bg .nav .nav_clist > li > a:hover .nav_glist {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .nav_glist {
  display: none;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
}
.nav_bg .nav .nav_glist > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.nav_bg .nav .nav_glist > li > a {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: block;
  padding: 10px;
  text-decoration: none;
}
.nav_bg .nav .nav_glist > li > a:hover {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.nav_bg .nav .nav_glist > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
----------------------------------------------------------------------------*/
#ft {
  margin-top: auto;
  padding-top: 25px;
  text-align: center;
  color: #fff;
}
#ft footer {
  width: 100%;
  background: #804e21;
  margin-top: 50px;
  padding: 10px;
}
#ft footer p {
  text-align: center;
  color: #aaa;
  line-height: 4;
  font-size: 0.8em;
  letter-spacing: 1px;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** toppage
  ******************************************************************************
----------------------------------------------------------------------------*/
.main_img {
  position: relative;
}
.main_img .index_catchcopy p {
  position: absolute;
  writing-mode: horizontal-tb;
  left: 40px;
  font-size: clamp(0.625rem, 0.011rem + 3.07vw, 2.313rem);
  font-weight: 800;
  color: #804e20;
  line-height: 1.5;
}
.main_img .index_catchcopy .index_catchcopy_subject p {
  text-align: center;
  top: 70px;
}
.main_img .index_catchcopy .index_catchcopy_voc p {
  top: 175px;
}
.main_img img {
  width: 100%;
}

.content {
  display: flex;
  margin: 30px auto 40px;
}

.about {
  width: 60%;
  display: flex;
  padding: 2em 0;
  font-weight: bold;
  background: #fffef0;
  border-radius: 10px;
  margin: 0 0 2em 0;
}
.about h2 {
  writing-mode: vertical-rl;
  margin: 0 20px 0 30px;
  font-size: 1.8em;
  padding-top: 5px;
  color: #519d08;
  letter-spacing: 2px;
}
.about p {
  line-height: 2;
  font-size: 1.1em;
  padding-right: 20px;
  letter-spacing: 1px;
  color: #804e20;
}

.about_2 {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 1em;
  padding: 2em 1em 0.5em;
  font-weight: bold;
  background: #fffef0;
  border-radius: 10px;
}
.about_2 .about_2_inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.about_2 .about_2_text {
  flex: 1;
  min-width: 280px;
}
.about_2 .about_2_text h2 {
  margin: 0 20px 0 30px;
  font-size: 1.8em;
  padding-top: 5px;
  color: #519d08;
  letter-spacing: 2px;
}
.about_2 .about_2_text p {
  line-height: 2;
  font-size: 1.1em;
  padding: 20px;
  letter-spacing: 1px;
  color: #804e21;
  margin: 0 0 0 20px;
}
.about_2 .about_2_text p + p {
  margin-top: -2em;
}
.about_2 .about_2_img {
  flex: 0 0 auto;
}
.about_2 .about_2_img img {
  padding: 10px;
  max-width: 120px;
  height: auto;
}

.content nav {
  width: 40%;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.content nav ul {
  width: 100%;
  display: inline-block;
}
.content nav ul li {
  width: 18%;
  position: relative;
}
.content nav ul li::before {
  content: "";
  width: 1px;
  height: 0;
  background-color: #222;
  position: absolute;
  right: 15px;
  transition: all 0.3s;
}
.content nav ul li a:visited, .content nav ul li a:link {
  font-weight: bold;
  font-size: larger;
  text-decoration: none;
  color: #804e21;
  display: block;
  width: 100%;
  line-height: 6;
  letter-spacing: 3px;
}
.content nav ul li:hover::before {
  height: 100%;
}

.line {
  width: 100%;
  height: 1px;
  background: #ccc;
  margin-bottom: 30px;
}

.news {
  display: flex;
  flex-direction: row-reverse;
  padding: 1em 0 0 0;
  font-weight: bold;
  background: #fffef0;
  border-radius: 10px;
}
.news h2 {
  writing-mode: vertical-rl;
  margin: 0 30px 0 20px;
  font-size: 1.8em;
  padding-top: 15px;
  color: #519d08;
  letter-spacing: 2px;
}
.news .news-list-wrap {
  height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  margin-left: 10px;
}
.news ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news ul li {
  border-bottom: 1px solid #9d9d9d;
  padding: 12px 10px;
  color: #804e21;
  display: flex;
  gap: 1em; /* PCでは横並び */
}
.news ul li time::before {
  font-family: FontAwesome;
  content: "\f140";
  font-size: 0.8em;
  margin-right: 5px;
}
.news ul li time {
  white-space: nowrap;
}
.news ul li span {
  flex: 1;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page-contents
  ******************************************************************************
----------------------------------------------------------------------------*/
/* ==== Base === */
.layout {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
}

.pc_none {
  display: none;
}

/* ==== Navigation === */
#nav {
  width: 100%;
  overflow: hidden;
}
#nav ul li {
  float: left;
  width: 100%;
  line-height: 50px;
}
#nav ul li a {
  display: block;
  position: relative;
  color: #804e21;
  text-decoration: none;
  padding-left: 10px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid #b2b2b2;
  letter-spacing: 0.1em;
}
#nav ul li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #47281f;
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform 0.3s;
}
#nav ul li a::after:hover::after {
  transform: scaleX(1);
  transform-origin: left top;
}

/* ==== Content === */
#con_bg {
  background: url(../images/common/con_bg.jpg) repeat-x top center;
}

#con {
  padding-top: 20px;
  padding-bottom: 20px;
}

#side {
  width: 23%;
  float: left;
  margin-top: 20px;
}

#main {
  width: 75%;
  max-width: 720px;
  float: right;
  /* ol,ul */
  /* table */
  /* ==== medicalsystem === */
  /* ==== fee === */
  /* ==== process === */
  /* ==== facility === */
  /* ==== access === */
}
#main h2 {
  color: #333;
  border-bottom: 4px double #804e21;
  border-top: 4px double #804e21;
  font-size: 34px;
  font-weight: normal;
  height: 80px;
  padding: 0.5em 0 0em 0.2em;
  background-color: rgba(255, 255, 255, 0.7);
}
#main h3 {
  margin: 0.8em 0 0.4em 0;
  font-size: 1.4em;
  font-weight: normal;
  padding: 0.4em 0 0.4em 0.3em;
  border-left: 8px double #804e21;
  background: #804e21;
  color: #fff;
}
#main p {
  font-size: larger;
  line-height: 30px;
  margin: 20px 0;
}
#main ol, #main ul {
  padding: 5px 0px 5px 25px;
}
#main ol li, #main ul li {
  padding: 5px 0px;
}
#main ul {
  list-style-type: disc;
}
#main table {
  margin: 10px 0px;
  /* img */
}
#main table th, #main table td {
  padding: 5px;
}
#main table .table-row-even {
  background-color: #f3eadf;
}
#main table .table-row-odd {
  background-color: #fbfaf8;
}
#main table img {
  max-width: 100%;
  max-height: 335px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center left;
     object-position: center left;
}
#main table a img {
  display: inline-block;
  transition-duration: 0.3s;
  transition-property: transform;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
#main table a img:hover, #main table a img .shrink:focus, #main table a img .shrink:active {
  transform: scale(0.9);
}
#main .medisys-about {
  width: 100%;
  font-weight: bold;
  background: #fffef0;
  border-radius: 10px;
  margin: 2em 0 2em 0;
}
#main .medisys-about p {
  padding: 20px 20px 5px;
  font-size: 18px;
  letter-spacing: 1px;
  color: #804e20;
}
#main .medisys-about figure {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
}
#main .fee {
  margin-top: 2em;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #804e20;
  width: 100%;
  background: #fffef0;
  border-radius: 10px;
  margin: 2em 0 2em 0;
  padding: 1px 5px;
}
#main .fee h3 {
  margin: 20px 10px;
  padding: 0;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  border: none;
  border-left: 8px double #804e21;
  background: #804e21;
  color: #fff;
}
#main .fee .feetable_inner {
  padding: 5px 20px 10px;
}
#main .fee table {
  font-family: FontAwesome;
  border-collapse: collapse;
  width: 100%;
}
#main .fee table tr td, #main .fee table tr th {
  border: 1px solid #a1600f;
  text-align: left;
  padding: 8px;
}
#main .fee p {
  font-size: inherit;
  line-height: 0;
  margin: 20px 5px;
}
#main .flowblockwrap {
  letter-spacing: 1px;
  width: 100%;
  font-weight: bold;
  background: #fffef0;
  border-radius: 10px;
  margin: 2em 0 2em 0;
  padding: 1px 5px;
}
#main .flowblockwrap .flowblock {
  margin: 3em 2em 3em 2em;
  padding: 1rem 1.5rem;
  position: relative;
  background: #f4efe9;
  border: #804e21 4px solid;
  border-radius: 1em;
}
#main .flowblockwrap .flowblock h3 {
  margin: 0;
  padding: 0;
  color: #804e21;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  border: none;
  background: none;
}
#main .flowblockwrap .flowblock p {
  font-size: larger;
  line-height: 0;
  margin: 15px 0;
}
#main .flowblockwrap .flowblock::after {
  content: "";
  width: 2em;
  height: 2em;
  border: 1.5em solid transparent;
  border-top-color: #f5be79;
  position: absolute;
  bottom: -4.5em;
  left: 0;
  right: 0;
  margin: auto;
  box-sizing: border-box;
}
#main .flowblockwrap .flowblock:last-child::after {
  content: none;
}
#main .facility {
  letter-spacing: 1px;
  width: 100%;
  font-weight: bold;
  background: #fffef0;
  border-radius: 10px;
  margin: 2em 0 2em 0;
  padding: 1px 5px;
}
#main .facility h3 {
  margin: 20px 10px;
  padding: 0;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  border: none;
  border-left: 8px double #804e21;
  background: #804e21;
  color: #fff;
}
#main .facility .sub-ttl {
  clear: both;
  margin: 1em 10px 0;
  width: 97%;
  border: 1px solid #af723b;
  border-width: 0 0 2px 5px;
}
#main .facility .sub-ttl p {
  padding: 3px 10px;
  font-size: 16px;
  color: #804e21;
  margin: 0;
  text-align: left;
}
#main .facility .gaikan {
  padding: 20px 20px 0 20px;
}
#main .facility .gaikan img {
  padding: 5px;
  border: 1px solid rgba(153, 153, 153, 0.4);
  background-color: #cfa178;
  width: 100%;
}
#main .facility .naikan-gallery {
  padding: 20px 20px 0 20px;
}
#main .facility .naikan-gallery .naikan-table {
  display: grid;
  gap: 1em;
}
#main .facility .naikan-gallery .naikan-table img {
  padding: 5px;
  border: 1px solid rgba(153, 153, 153, 0.4);
  background-color: #cfa178;
  width: 100%;
}
#main .facility .naikan-gallery .naikan-table-02 {
  grid-template-columns: repeat(2, 1fr);
}
#main .facility .naikan-gallery .naikan-table-03 {
  grid-template-columns: repeat(3, 1fr);
}
#main .facility p {
  letter-spacing: 1px;
  color: #804e20;
  margin: 0 0 20px 0;
  text-align: center;
}
#main .access {
  letter-spacing: 1px;
  width: 100%;
  font-weight: bold;
  background: #fffef0;
  border-radius: 10px;
  margin: 2em 0 2em 0;
  padding: 1px 5px;
}
#main .access h3 {
  margin: 20px 10px;
  padding: 0;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  border: none;
  border-left: 8px double #804e21;
  background: #804e21;
  color: #fff;
}
#main .access .access-inner {
  padding: 5px 20px 0;
}
#main .access .access-inner figure img {
  width: 70%;
  margin: 0 auto;
  display: block;
}
#main .access iframe {
  width: 100%;
}
#main .access table {
  font-family: FontAwesome;
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #a1600f;
}
#main .access table tr th {
  font-weight: bold;
  padding: 0.6em 0.5em;
  text-align: center;
  border: 1px solid #a1600f;
}
#main .access table tr td {
  padding: 0.6em 0.5em;
  border: 1px solid #a1600f;
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------
  ************************************************************************************************************************************************************
  ** responsive
  ************************************************************************************************************************************************************
--------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  ** tablet
----------------------------------------------------------------------------*/
@media screen and (max-width: 960px) {
  .logo {
    margin-left: 20px;
  }
}
/*----------------------------------------------------------------------------
  ** sp_smartphone
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** sp_header
  ******************************************************************************
----------------------------------------------------------------------------*/
@media screen and (max-width: 759px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .wrap {
    margin: initial;
  }
  .wrap .hd_bg .hd {
    padding: 20px 10px 10px;
    position: relative;
    display: block;
    height: initial;
  }
  .wrap .hd_bg .hd_logo {
    display: flex;
    align-content: center;
    align-items: center;
    width: calc(100% - 20vw);
    margin-bottom: 30px;
  }
  .wrap .hd_bg .hd_logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .wrap .hd_bg .hd_bnr {
    text-align: center;
  }
  .wrap .hd_bg .hd_info {
    margin-top: 1em;
  }
  .wrap .hd_bg .hd_info .hd_tel {
    color: #cf5e31;
    font-family: "Kosugi", sans-serif;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    text-decoration: none;
  }
  .wrap .hd_bg .hd_info .hd_tel:before {
    content: url(../images/icon_tel.png);
    display: inline-block;
    margin-right: 10px;
  }
  .wrap .hd_bg .hd_info .hd_tel a {
    color: #cf5e31;
    font-family: "Kosugi", sans-serif;
  }
  .wrap .hd_bg .hd_info .hd_btn {
    /*display: none;*/
    display: flex;
    flex-direction: column;
  }
  .wrap .hd_bg .hd_info .hd_btn_contact {
    margin: 10px;
  }
  .wrap .hd_bg .hd_info .hd_btn_contact > a {
    padding: 10px 25px;
    font-size: 13px;
  }
  .wrap .hd_bg .hd_info .hd_btn_access {
    margin: 10px;
  }
  .wrap .hd_bg .hd_info .hd_btn_access > a {
    padding: 10px 25px;
    font-size: 13px;
  }
  .wrap .hd_bg .hd_bnr_02 img {
    width: none;
  }
  .wrap .hd_bg .hd_bnr_03 img {
    width: 45%;
  }
  .clone-hd, .is-show {
    display: none;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .nav_bg {
    display: block;
  }
  .nav_bg .nav {
    background: #eaffd7;
    color: #fff;
    height: calc(100% + 500px);
    padding-bottom: 500px;
    z-index: 1000;
    width: 100%;
    overflow-x: none;
    overflow-y: auto;
    top: 0px;
    right: -100%;
    position: fixed;
    transition: All 0.5s ease;
  }
  .nav_bg .nav_list > li > a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 16px;
    color: #fff;
    display: block;
    padding: 1em 1em 1em 1.5em;
    text-decoration: none;
    position: relative;
  }
  .nav_bg .nav_list > li > a:hover, .nav_bg .nav_list > li > a.current {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .nav_bg .nav_list > li > a::after {
    content: attr(data-text);
    display: block;
  }
  .nav_bg .nav_list > li > a img {
    display: none;
  }
  .nav_bg .nav_clist > li > a {
    background-color: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: block;
    font-size: 13px;
    padding: 1em 1em 1em 2em;
    text-decoration: none;
  }
  .nav_bg .nav_clist > li > a:hover, .nav_clist > li > .nav_bg .nav_clist > li > a.current {
    background-color: #000;
    box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  }
  .nav_bg .nav_glist > li > a {
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: block;
    font-size: 11px;
    padding: 1em 1em 1em 3em;
    text-decoration: none;
  }
  .nav_bg .nav_glist > li > a:hover, .nav_glist > li > .nav_bg .nav_glist > li > a.current {
    background-color: #000;
    box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  }
  .sp_nav_open {
    right: 0 !important;
  }
  .sp_nav_trigger {
    cursor: pointer;
    z-index: 1000;
    position: fixed !important;
    top: 25px;
    right: 20px;
    margin-top: -5px;
    width: 36px;
    height: 24px;
  }
  .sp_nav_trigger span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .sp_nav_trigger span:nth-of-type(1) {
    top: 0;
  }
  .sp_nav_trigger span:nth-of-type(2) {
    top: 10px;
  }
  .sp_nav_trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .sp_nav_trigger::after {
    position: absolute;
    left: 0;
    bottom: -20px;
    content: "MENU";
    display: block;
    width: 100%;
    padding-top: 20px;
    color: #000;
    font-size: 10px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s;
  }
  .sp_nav_trigger .sp_active::after {
    content: "CLOSE";
    bottom: -25px;
    color: #fff;
  }
  .sp_nav_trigger .sp_active::after:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
    background: #fff;
  }
  .sp_nav_trigger .sp_active::after:nth-of-type(2) {
    opacity: 0;
    background: #fff;
  }
  .sp_nav_trigger .sp_active::after:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
    background: #fff;
  }
  /*----------------------------------------------------------------------------
    ******************************************************************************
    ** sp_footer
    ******************************************************************************
  ----------------------------------------------------------------------------*/
  #ft {
    margin-top: auto;
    padding-top: 25px;
    text-align: center;
    color: #fff;
  }
  #ft footer {
    width: 100%;
    background: #804e20;
    margin-top: 50px;
    padding: 30px;
  }
  #ft footer p {
    text-align: center;
    color: #aaa;
    line-height: 4;
    font-size: 0.8em;
    letter-spacing: 1px;
  }
  /*----------------------------------------------------------------------------
    ******************************************************************************
    ** sp_toppage
    ******************************************************************************
  ----------------------------------------------------------------------------*/
  .main_img {
    /* main_img自体の余白を調整 */
    padding-top: 0; /* headerとの隙間を埋める */
  }
  .main_img .index_catchcopy p {
    position: relative; /* topは削除 */
    writing-mode: horizontal-tb;
    left: 0;
    font-size: 20px;
    font-weight: 800;
    color: #804e20;
    line-height: 1.5;
    text-align: center;
  }
  .main_img .index_catchcopy .index_catchcopy_subject p,
  .main_img .index_catchcopy .index_catchcopy_voc p {
    top: auto; /* 230pxを無効化 */
    margin: 0; /* 必要に応じて上下マージン調整 */
  }
  .main_img .index_catchcopy .index_catchcopy_subject p {
    font-size: 24px;
    margin: 0;
  }
  .main_img .index_catchcopy .index_catchcopy_voc p {
    font-size: 20px;
    margin: 10px 0 0 0;
  }
  .main_img picture, .main_img img {
    width: 100%;
    display: block;
  }
  .content {
    margin-top: 20px;
  }
  .content nav {
    display: none;
  }
  .about {
    width: 100%;
    margin: 0 1em 2em 1em;
  }
  .about h2 {
    margin-left: 15px;
  }
  .about p {
    padding-right: 15px;
  }
  .about_2 {
    width: 100%;
    margin: 0 1em 2em 1em;
  }
  .about_2 p {
    padding: 15px;
  }
  .about_2 .about_2_inner {
    gap: 0;
  }
  .about_2 .about_2_img {
    flex: none;
    display: block;
    margin: 0 auto;
  }
  .line {
    margin-bottom: 10px;
  }
  .news {
    flex-direction: row;
    margin: 15px;
    padding: 1em 0.5em;
  }
  .news h2 {
    margin-right: 15px;
    padding-top: 15px;
    margin-left: 10px;
  }
  .news .news-list-wrap {
    height: 400px;
    margin: 0;
  }
  .news ul li {
    display: block; /* ← 縦並び */
    padding: 10px 0;
  }
  .news ul li time {
    display: block;
    margin-bottom: 3px;
    font-size: 1.1em;
    color: #666;
  }
  .news ul li span {
    display: block;
    font-weight: bold;
  }
  /*----------------------------------------------------------------------------
    ******************************************************************************
    ** sp_page-contents
    ******************************************************************************
  ----------------------------------------------------------------------------*/
  /* ==== Content === */
  #side {
    display: none;
  }
  #main {
    width: 100%;
    padding: 10px;
    /* ==== medisys === */
    /* ==== flowblock === */
    /* ==== fee === */
    /* ==== facility === */
    /* ==== access === */
  }
  #main .medisys-about p {
    font-size: 15px;
  }
  #main .flowblockwrap .flowblock p {
    line-height: unset;
    margin: 5px 0;
  }
  #main .fee table {
    width: 100%;
  }
  #main .facility .gaikan {
    margin-bottom: 10px;
  }
  #main .facility .sub-ttl {
    width: 92%;
  }
  #main .facility .naikan-gallery {
    padding: 15px;
  }
  #main .facility .naikan-table figure {
    margin-bottom: 0;
  }
  #main .facility .naikan-table-02 {
    grid-template-columns: repeat(1, 1fr);
  }
  #main .facility .naikan-table-03 {
    grid-template-columns: repeat(1, 1fr);
  }
  #main .facility p {
    font-size: 1rem;
    margin: 0;
  }
  #main .access .access-inner figure img {
    width: 100%;
  }
  #main .access iframe {
    width: 100%;
  }
  #main .access figure img {
    width: 100%;
  }
  #main .access table {
    font-family: FontAwesome;
    border-collapse: collapse;
    width: 100%;
    border-top: 1px solid rgb(153, 153, 153);
    border-left: 1px solid rgb(153, 153, 153);
  }
  #main .access th {
    width: 20%;
  }
}/*# sourceMappingURL=style.css.map */