/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  display: flex;
  flex-direction: column;
  color: #5D5D5D;
}

body {
  min-height: 100vh;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  height: 70px;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #E9E9E9;
}
.hd_bg .hd {
  display: flex;
  align-items: center;
  padding: 0px 10px;
  border-bottom: 1px solid #E9E9E9;
}
.hd_bg .hd .hd_left {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.hd_bg .hd .hd_left .hd_text {
  display: none;
}
.hd_bg .hd .hd_left .hd_logo {
  position: absolute;
  top: 10px;
  left: 20px;
}
.hd_bg .hd .hd_left .hd_logo a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5D5D5D;
  font-size: 21px;
  font-weight: bold;
  text-decoration: none;
}
.hd_bg .hd .hd_left .hd_logo a img {
  height: 50px;
  width: auto;
}
.hd_bg .hd .hd_left .hd_logo a .hd_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.2;
}
.hd_bg .hd .hd_left .hd_logo a .hd_title span {
  font-size: 14px;
  font-weight: normal;
}
.hd_bg .hd .hd_left .hd_logo a .hd_title span:nth-child(1) {
  display: contents;
}
.hd_bg .hd .hd_left .hd_logo a .hd_title span:nth-child(2) {
  order: 3;
}
.hd_bg .hd .hd_right {
  display: none;
}
.hd_bg .hd .hd_logo {
  display: flex;
  align-content: center;
  align-items: center;
  width: 320px;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5D5D5D;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1;
}
.hd_bg .hd .hd_logo a img {
  display: inline-block;
  height: auto;
  width: 50px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
nav.nav_bg {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #fff;
}

.nav {
  position: relative;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  width: 100%;
  color: #fff;
  transition: All 0.8s ease;
}
.nav .nav_list {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 0;
  padding-top: 10px;
}
.nav .nav_list > li {
  position: relative;
  display: flex;
  justify-content: center;
  width: 20%;
  width: auto;
  margin-bottom: 0;
}
.nav .nav_list > li > a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  font-size: 10px;
  color: #000;
  line-height: 1.5;
  text-decoration: none;
  min-width: 50px;
  padding-bottom: 5px;
}
.nav .nav_list > li > a:nth-child(1) {
  letter-spacing: -0.1em;
}
.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  border-bottom: 2px solid #3DAF88;
}
.nav .nav_list > li > a img {
  height: 30px;
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 0.8em;
  right: 0.5em;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #fff;
}
.nav .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #00538a;
}
.nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li > .child_wrap {
  display: none;
  margin: 0 0 0 -40px;
}
.nav .nav_list > li .nav_clist {
  margin: 0;
}
.nav .nav_list > li .nav_clist > li {
  position: relative;
  list-style-type: none;
  margin: 0;
}
.nav .nav_list > li .nav_clist > li > a {
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid #fff;
  color: #fff;
  display: block;
  font-size: 13px;
  padding: 1em 1em 1em 2em;
  text-decoration: none;
}
.nav .nav_list > li .nav_clist > li > a:hover, .nav .nav_list > li .nav_clist > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.nav .nav_list > li .nav_clist > li > .child_wrap {
  display: none;
}
.nav .nav_list > li .nav_clist > li .nav_glist {
  margin: 0;
}
.nav .nav_list > li .nav_clist > li .nav_glist > li {
  position: relative;
  list-style-type: none;
  margin: 0;
}
.nav .nav_list > li .nav_clist > li .nav_glist > li > a {
  background-color: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid #fff;
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1em 1em 1em 3em;
  text-decoration: none;
}
.nav .nav_list > li .nav_clist > li .nav_glist > li > a:hover, .nav .nav_list > li .nav_clist > li .nav_glist > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.nav .nav_link {
  display: flex;
  gap: 20px;
  margin: 20px 30px;
}
.nav .nav_link .link_item a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 8px;
  transition: 0.3s;
}
.nav .nav_link .link_item a:hover {
  opacity: 0.7;
}
.sp_nav_open {
  top: 70px !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 30px;
  right: 15px;
  margin-top: -5px;
  width: 36px;
  height: 24px;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3DAF88;
  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.sp_active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

.ft_nav {
  overflow: visible;
}
.ft_nav .nav_list {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  width: 100%;
}
.ft_nav .nav_list > li {
  position: relative;
  list-style-type: none;
  border-top: 2px solid #E9E9E9;
  padding: 10px 30px;
}
.ft_nav .nav_list > li > a {
  display: flex;
  font-size: 18px;
  color: #5D5D5D;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding-block: 5px;
  transition: 0.1s;
}
.ft_nav .nav_list > li > a:hover {
  color: #D55B5B;
  opacity: 0.7;
}
.ft_nav .nav_list > li > a.current {
  color: #D55B5B;
}
.ft_nav .nav_list > li > a img {
  display: inline-block;
  height: 20px;
  margin-top: 5px;
  margin-right: 15px;
}
.ft_nav .nav_list > li .child_wrap_btn {
  display: none;
}
.ft_nav .nav_list > li:hover .nav_clist {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ft_nav .nav_list > li .nav_clist {
  position: absolute;
  top: 100%;
  left: 0%;
  display: none;
  width: 100%;
  transition: All 0.5s ease;
  margin: 0;
  z-index: 1;
}
.ft_nav .nav_list > li .nav_clist > li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.ft_nav .nav_list > li .nav_clist > li > a {
  display: block;
  padding: 10px;
  background-color: #3DAF88;
  color: #fff;
  text-decoration: none;
}
.ft_nav .nav_list > li .nav_clist > li > a:hover, .ft_nav .nav_list > li .nav_clist > li > a.current {
  opacity: 0.8;
}
.ft_nav .nav_list > li .nav_clist > li:hover .nav_glist {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.ft_nav .nav_list > li .nav_clist > li .nav_glist {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  width: 100%;
  margin: 0;
}
.ft_nav .nav_list > li .nav_clist > li .nav_glist > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.ft_nav .nav_list > li .nav_clist > li .nav_glist > li > a {
  display: block;
  padding: 10px;
  background-color: rgba(213, 91, 91, 0.7);
  color: #fff;
  text-decoration: none;
}
.ft_nav .nav_list > li .nav_clist > li .nav_glist > li > a:hover, .ft_nav .nav_list > li .nav_clist > li .nav_glist > li > a.current {
  background-color: #D55B5B;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.ft_nav .nav_link {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** access
******************************************************************************
----------------------------------------------------------------------------*/
.access_bg {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 auto;
}
.access_bg .access_content {
  padding: 20px 10px;
}
.access_bg .access_content .access_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.access_bg .access_content .access_item .access_title {
  display: flex;
  align-items: center;
}
.access_bg .access_content .access_item .access_title img {
  width: 36px;
  margin-right: 5px;
}
.access_bg .access_content .access_item .access_title span {
  display: inline-block;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.access_bg .access_content .access_item p {
  font-size: 12px;
  padding: 0.5em;
  margin-bottom: 0;
}
.access_bg .access_content h2 {
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  padding-bottom: 5px;
  margin-top: 10px;
  border-bottom: 1px dotted #6BA3DB;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  display: flex;
  flex-direction: column;
}
.con_bg .con {
  display: contents;
  padding: 20px 10px 30px;
}
.con_bg .con .side {
  order: 2;
}
.con_bg .con .side .side_head {
  background-color: #eee;
  color: #111;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 10px;
  text-align: center;
}
.con_bg .con .side .side_nav_list li a {
  background: url(../images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #ccc;
  color: #111;
  display: block;
  font-size: 14px;
  padding: 12px 10px;
  text-decoration: none;
}
.con_bg .con .side .side_nav_list li a:hover {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft .ft_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 100%;
  color: #5D5D5D;
  background-color: #3DAF88;
}
.ft .ft_bg .ft_copy {
  color: #fff;
  font-size: 14px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #3DAF88;
  border-radius: 50%;
  z-index: 100;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  position: relative;
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  transform: rotate(45deg);
}
.pt .pt_btn::before, .pt .pt_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: #fff;
}
.pt .pt_btn::before {
  bottom: 0;
  width: 5px;
}
.pt .pt_btn::after {
  right: 0;
  height: 5px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider .slider_slick {
  margin-bottom: 20px;
}
.index_slider .slider_slick img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
}

.page_bg {
  width: 100%;
  background: url(../images/header.jpg) no-repeat;
  background-size: cover;
  padding: 10px 0px;
}
.page_bg .page_wrap {
  width: 90%;
  min-height: 94px;
  margin: 0 auto;
}
.page_bg .page_wrap .page_title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 2.5em;
  text-align: right;
  line-height: 1;
  overflow-wrap: break-word;
  padding: 10px 0px;
}

.main .index_greet p {
  line-height: 2em;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
}
.main .index_news, .main .news_info {
  background-color: #E2EDE9;
  box-shadow: 0 0 0 100vmax #E2EDE9;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
}
.main .index_news h2, .main .news_info h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  margin: 0px;
  margin-left: -40px;
  padding-bottom: 20px;
}
.main .index_news h2 img, .main .news_info h2 img {
  width: 60px;
  margin-right: 20px;
}
.main .index_news .news_btn, .main .news_info .news_btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .index_news .news_btn a, .main .news_info .news_btn a {
  position: relative;
  display: block;
  width: 70%;
  max-width: 300px;
  color: #5D5D5D;
  text-align: center;
  text-decoration: none;
  padding-block: 10px;
  border-bottom: 2px solid #D55B5B;
}
.main .index_news .news_btn a::after, .main .news_info .news_btn a::after {
  position: absolute;
  content: "+";
  color: #5D5D5D;
  font-size: 1.2em;
  top: 50%;
  right: 20px;
  transform: translate(50%, -50%);
}
.main .index_news .index_news_scrl, .main .news_info .index_news_scrl {
  max-height: 50vh;
  margin-bottom: 20px;
  overflow: auto;
}
.main .index_news .index_news_scrl .index_news_item, .main .news_info .index_news_scrl .index_news_item {
  display: flex;
  gap: 1em;
  border-bottom: 1px solid #3DAF88;
  padding: 20px 10px;
  width: 100%;
}
.main .index_news .index_news_scrl .index_news_item:first-child, .main .news_info .index_news_scrl .index_news_item:first-child {
  border-top: 1px solid #3DAF88;
}
.main .index_news .index_news_scrl .index_news_item:nth-child(n+4), .main .news_info .index_news_scrl .index_news_item:nth-child(n+4) {
  display: none;
}
.main .index_news .index_news_scrl .index_news_item .index_news_item_date, .main .news_info .index_news_scrl .index_news_item .index_news_item_date {
  color: #D55B5B;
}
.main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a, .main .news_info .index_news_scrl .index_news_item .index_news_item_ttl a {
  color: #5D5D5D;
}
.main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new, .main .news_info .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  color: #c00;
  font-weight: bold;
  margin-left: 0.5em;
}
.main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before, .main .news_info .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}
.main .news_info .index_news_scrl {
  max-height: none;
}
.main .news_info .index_news_scrl .index_news_item:nth-child(n+4) {
  display: flex;
}
.main .news h2 {
  margin-bottom: 0px;
}
.main .news .index_news_scrl {
  overflow: auto;
  margin-block: 10px 10px;
  background-color: rgba(255, 255, 255, 0.3);
}
.main .news .index_news_scrl .index_news_item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  margin-bottom: 5px;
  padding: 10px;
  width: 100%;
}
.main .news .index_news_scrl .index_news_item .index_news_item_date {
  color: #3DAF88;
}
.main .news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  color: #c00;
  font-weight: bold;
  margin-left: 0.5em;
}
.main .news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}

.index_calendar {
  padding-bottom: 0 !important;
}
.index_calendar .content {
  padding: 0;
  margin-bottom: 0;
}
.index_calendar #calendar {
  width: 100%;
}
.index_calendar #calendar img {
  display: block;
  width: 60px;
  margin: 0px auto 0px;
}
.index_calendar #calendar #header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin-block: 10px 20px;
}
.index_calendar #calendar #header h2 {
  font-size: 21px;
  padding-top: 2px;
  padding-bottom: 0;
  margin: 0;
}
.index_calendar #calendar #header h2 span {
  color: #5D5D5D;
  font-size: 1.1em;
}
.index_calendar #calendar #header #prevMonth, .index_calendar #calendar #header #nextMonth {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
}
.index_calendar #calendar #header #prevMonth img, .index_calendar #calendar #header #nextMonth img {
  margin: 0;
  width: 36px;
}
.index_calendar #calendar table {
  width: 100%;
}
.index_calendar #calendar table thead tr {
  border-top: 1px solid #3DAF88;
  margin-top: 10px;
}
.index_calendar #calendar table thead tr th {
  color: #3DAF88;
  font-size: 16px;
  text-align: center;
  height: 40px;
  width: 14.2857142857%;
  font-family: "Quicksand", sans-serif;
}
.index_calendar #calendar table tbody tr td {
  font-size: 14px;
  vertical-align: top;
  background-color: #fff;
  border: 2px solid #E2EDE9;
  padding: 0px 5px 5px;
}
.index_calendar #calendar table tbody tr .pastMonth, .index_calendar #calendar table tbody tr .nextMonth {
  color: #DCDBDB;
}
.index_calendar #calendar table tbody tr .holiday span {
  display: grid;
  place-items: center;
  color: #5D5D5D;
  font-size: 14px;
  text-align: center;
  line-height: 1.1;
  min-height: 36px;
  background-color: #DCDBDB;
  border-radius: 4px;
  padding: 3px 5px;
}

section {
  margin-bottom: 20px;
}
section .content {
  line-height: 2em;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
}
section .img_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
}
section .img_content img {
  width: 95%;
}

.side {
  order: 2;
}
.side .bnr_list li {
  margin-bottom: 4px;
}
.side .bnr_list li a {
  padding: 16px 16px 16px 42px;
  border: 1px solid #000000;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  background: url(../images/icon_elink_black.png) no-repeat 16px center;
  color: #000000;
}
.side .bnr_list li a:hover {
  background-color: #000;
  background-image: url(../images/icon_elink_white.png);
  color: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 100%;
  background: url("../images/footer_bg.jpg") no-repeat center;
  background-size: cover;
}
.link .link_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  gap: 15px;
  width: 100%;
  padding: 40px 20px;
}
@media screen and (max-width: 415px) {
  .link .link_content {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.link .link_content .link_item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  background-color: #fff;
  width: calc((100% - 15px) / 2);
  padding: 10px 40px;
}
@media screen and (max-width: 415px) {
  .link .link_content .link_item {
    width: 100%;
    padding: 10px 30px;
  }
}
.link .link_content .link_item a {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  width: 100%;
  color: #7B7878;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 415px) {
  .link .link_content .link_item a {
    gap: 15px;
  }
}
.link .link_content .link_item a img {
  width: 32px;
  height: 32px;
}
.link .link_content .link_item a:hover {
  filter: brightness(1.2);
  scale: 1.05;
}
.link .link_content .link_item:first-child a img {
  width: 38px;
}

.index_info {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 40px;
}
.index_info .index_contact .contact_title {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  color: #5D5D5D;
  font-size: 21px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.index_info .index_contact .contact_title img {
  display: none;
}
.index_info .index_contact .contact_title .contact_name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  line-height: 1.2;
  height: 50px;
}
.index_info .index_contact .contact_title .contact_name span {
  font-size: 18px;
  font-weight: normal;
}
.index_info .index_contact .contact_title .contact_name span:nth-child(1) {
  display: contents;
}
.index_info .index_contact .contact_title .contact_name span:nth-child(2) {
  order: -1;
}
.index_info .index_contact .contact_tel .tel_title {
  display: none;
}
.index_info .index_contact .contact_tel .tel_number a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 40px;
  border-radius: 8px;
  color: #3DAF88;
  text-decoration: none;
  padding: 5px;
}
.index_info .index_contact .contact_tel .tel_number a span {
  font-size: 26px;
  line-height: 1;
}
.index_info .index_contact .contact_access {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-top: 5px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.index_info .index_schedule {
  margin-top: 20px;
}
.index_info .index_schedule table {
  width: 95%;
  margin: 0 auto;
}
.index_info .index_schedule table tr {
  border-bottom: 1px solid #DCDBDB;
}
.index_info .index_schedule table tr:first-child {
  border-top: 1px solid #DCDBDB;
}
.index_info .index_schedule table tr th, .index_info .index_schedule table tr td {
  font-size: 16px;
  text-align: center;
  padding-block: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.index_info .index_schedule table tr th {
  font-weight: bold;
}
.index_info .index_schedule table tr td {
  color: #3DAF88;
  font-size: 16px;
}
.index_info .index_schedule table tr td:first-child {
  font-size: 18px;
  font-weight: bold;
}

.ft_contact {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 40px;
}
.ft_contact .contact_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #5D5D5D;
  font-size: 21px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.ft_contact .contact_title img {
  width: 78px;
  height: auto;
}
.ft_contact .contact_title .contact_name {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  font-size: 24px;
  line-height: 1.2;
  height: 60px;
}
.ft_contact .contact_title .contact_name span {
  font-size: 16px;
  font-weight: normal;
}
.ft_contact .contact_title .contact_name p {
  font-size: 14px;
  font-weight: normal;
}
.ft_contact .contact_box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 24px;
  margin-top: 20px;
}
.ft_contact .contact_box .contact_tel {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.ft_contact .contact_box .contact_tel .tel_title {
  display: none;
}
.ft_contact .contact_box .contact_tel .tel_number a {
  color: #3DAF88;
  text-decoration: none;
  font-size: 16px;
}
.ft_contact .contact_box .contact_tel .tel_number a span {
  font-size: 30px;
}
.ft_contact .contact_box .contact_access {
  font-size: 16px;
  margin: 0px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.clinic_content .clinic_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0px 30px;
  border-bottom: 1px solid #eee;
}
.clinic_content .clinic_item img {
  width: 200px;
  margin: 0 auto;
}
.clinic_content .clinic_item .clinic_text {
  width: 100%;
}
.clinic_content .clinic_item .clinic_text p {
  margin-left: 1em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  line-height: 1.6;
  word-wrap: break-word;
}
.con a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.con h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.con h2 {
  color: #3DAF88;
  font-size: 2em;
  font-weight: bold;
  line-height: 1;
  margin: 20px auto;
}
.con h3 {
  font-size: 1.3em;
  margin-block: 10px 15px;
  padding: 0.2em 0.6em;
  border-top: 2px solid #3DAF88;
  border-bottom: 2px solid #3DAF88;
}
.con h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 0em 0.5em;
  border-left: 5px solid #3DAF88;
  border-bottom: 1px solid #ccc;
  background-color: #fdfdfd;
}
.con h5 {
  font-size: 1.2em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.con h6 {
  margin-bottom: 2px;
  margin-top: 5px;
}
.con section {
  width: 95%;
  margin: 0px auto;
  padding: 20px 0px;
}
.con hr {
  border: none;
  border-top: 1px solid #eee;
}
.con iframe {
  max-width: 100%;
}
.con img {
  max-width: 100%;
  height: auto;
}
.con ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.con ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.con p {
  margin-bottom: 1em;
}
.con ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.con ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.con .sp_dn {
  display: none;
}
.con .btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.con .btn a {
  position: relative;
  display: grid;
  place-items: center;
  width: 250px;
  height: 40px;
  color: #fff;
  text-decoration: none;
  background-color: #3DAF88;
  border-radius: 8px;
  transition: 0.3s;
}
.con .btn a::before {
  position: absolute;
  content: "";
  right: 20px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
.con .btn a:hover {
  opacity: 0.7;
}
.con .btn a:hover::before {
  right: 15px;
}/*# sourceMappingURL=sp.css.map */