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

body {
  min-height: 100vh;
  font-family: "Zen Maru Gothic", sans-serif;
}

.w_base {
  width: 950px;
  margin: 0 auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  border-top: 10px solid #3DAF88;
  height: 125px;
}
.hd_bg .hd {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hd_bg .hd .hd_left {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.hd_bg .hd .hd_left .hd_text {
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 10px;
}
.hd_bg .hd .hd_left .hd_logo {
  position: absolute;
  top: 10px;
  left: 0;
}
.hd_bg .hd .hd_left .hd_logo a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5D5D5D;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.hd_bg .hd .hd_left .hd_logo a:hover {
  opacity: 0.7;
}
.hd_bg .hd .hd_left .hd_logo a img {
  width: 68px;
  height: auto;
}
.hd_bg .hd .hd_left .hd_logo a .hd_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  font-size: 30px;
  line-height: 1.2;
  height: 60px;
}
.hd_bg .hd .hd_left .hd_logo a .hd_title span {
  font-size: 14px;
  font-weight: normal;
}
.hd_bg .hd .hd_right {
  padding-top: 20px;
}
.hd_bg .hd .hd_right .hd_tel {
  font-family: "Quicksand", sans-serif;
}
.hd_bg .hd .hd_right .hd_tel a {
  font-size: 18px;
  color: #3DAF88;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: 0.3s;
}
.hd_bg .hd .hd_right .hd_tel a:hover {
  opacity: 0.7;
}
.hd_bg .hd .hd_right .hd_tel a span {
  font-size: 34px;
}
.hd_bg .hd .hd_right .hd_info {
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.page_bg {
  width: 100%;
  background: url(../images/header.jpg) no-repeat;
  background-size: cover;
  padding: 10px 0px;
}
.page_bg .page_wrap {
  width: 1000px;
  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;
  inline-size: 1000px;
  overflow-wrap: break-word;
  padding: 10px 0px;
}

.index_slider .slider_slick img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
  position: relative;
}
.nav_bg .nav {
  overflow: visible;
}
.nav_bg .nav .nav_list {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  list-style-type: none;
  width: calc((100% - 120px) / 5);
}
.nav_bg .nav .nav_list > li > a {
  display: inline-block;
  font-size: 14px;
  color: #5D5D5D;
  text-align: center;
  text-decoration: none;
  width: 100%;
  min-height: 50px;
  padding-block: 10px;
  transition: 0.1s;
}
.nav_bg .nav .nav_list > li > a:hover {
  opacity: 0.7;
  color: #D55B5B;
  border-bottom: 3px solid #D55B5B;
}
.nav_bg .nav .nav_list > li > a.current {
  color: #D55B5B;
  border-bottom: 3px solid #D55B5B;
}
.nav_bg .nav .nav_list > li > a img {
  width: 20px;
  margin-right: 5px;
}
.nav_bg .nav .nav_list > li .child_wrap_btn {
  display: none;
}
.nav_bg .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;
  }
}
.nav_bg .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;
}
.nav_bg .nav .nav_list > li .nav_clist > li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.nav_bg .nav .nav_list > li .nav_clist > li > a {
  display: block;
  padding: 10px;
  background-color: #3DAF88;
  color: #fff;
  text-decoration: none;
}
.nav_bg .nav .nav_list > li .nav_clist > li > a:hover, .nav_bg .nav .nav_list > li .nav_clist > li > a.current {
  opacity: 0.8;
}
.nav_bg .nav .nav_list > li .nav_clist > li:hover .nav_glist {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .nav_list > li .nav_clist > li .nav_glist {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  width: 100%;
  margin: 0;
}
.nav_bg .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);
}
.nav_bg .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;
}
.nav_bg .nav .nav_list > li .nav_clist > li .nav_glist > li > a:hover, .nav_bg .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);
}
.nav_bg .nav .nav_link {
  display: none;
}
.nav_bg .ft_nav {
  overflow: visible;
  margin-bottom: 30px;
}
.nav_bg .ft_nav .nav_list {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding-inline: 50px;
}
.nav_bg .ft_nav .nav_list > li {
  position: relative;
  list-style-type: none;
}
.nav_bg .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;
}
.nav_bg .ft_nav .nav_list > li > a:hover {
  color: #D55B5B;
  opacity: 0.7;
}
.nav_bg .ft_nav .nav_list > li > a.current {
  color: #D55B5B;
}
.nav_bg .ft_nav .nav_list > li > a img {
  display: inline-block;
  height: 20px;
  margin-top: 5px;
  margin-right: 5px;
}
.nav_bg .ft_nav .nav_list > li .child_wrap_btn {
  display: none;
}
.nav_bg .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;
  }
}
.nav_bg .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;
}
.nav_bg .ft_nav .nav_list > li .nav_clist > li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.nav_bg .ft_nav .nav_list > li .nav_clist > li > a {
  display: block;
  padding: 10px;
  background-color: #3DAF88;
  color: #fff;
  text-decoration: none;
}
.nav_bg .ft_nav .nav_list > li .nav_clist > li > a:hover, .nav_bg .ft_nav .nav_list > li .nav_clist > li > a.current {
  opacity: 0.8;
}
.nav_bg .ft_nav .nav_list > li .nav_clist > li:hover .nav_glist {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .ft_nav .nav_list > li .nav_clist > li .nav_glist {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  width: 100%;
  margin: 0;
}
.nav_bg .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);
}
.nav_bg .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;
}
.nav_bg .ft_nav .nav_list > li .nav_clist > li .nav_glist > li > a:hover, .nav_bg .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);
}
.nav_bg .ft_nav .nav_link {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** access
******************************************************************************
----------------------------------------------------------------------------*/
.access_bg {
  position: relative;
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 8px;
}
.access_bg .access_content {
  padding: 20px 10px;
}
.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: 15px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.access_bg .access_content .access_item p {
  font-size: 12px;
  padding: 0.5em;
}
.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 .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 60px;
}
.con_bg .con .side {
  width: 230px;
}
.con_bg .con .side h3 {
  background-color: #EEE;
  color: #111;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 8px;
  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;
  padding: 12px 10px;
  text-decoration: none;
}
.con_bg .con .side .side_nav_list li a:hover, .con_bg .con .side .side_nav_list li a.current {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft {
  margin-top: auto;
}
.ft .ft_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3DAF88;
  padding: 10px 0;
}
.ft .ft_bg .ft_copy {
  color: #fff;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.main {
  display: flex;
  flex-direction: column;
}

.index_news {
  margin-bottom: 40px;
}
.index_news .news_btn {
  display: none;
}

.news_info .index_news_scrl {
  max-height: none;
}

.index_news_scrl {
  max-height: 300px;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 10px 40px 10px 0px;
  margin-bottom: 10px;
  scrollbar-color: #3DAF88 #DCDBDB;
}
.index_news_scrl::-webkit-scrollbar {
  width: 15px;
}
.index_news_scrl::-webkit-scrollbar-track {
  background: #DCDBDB;
  border-radius: 10px;
}
.index_news_scrl::-webkit-scrollbar-thumb {
  background: #3DAF88;
  border-radius: 15px;
}
.index_news_scrl .index_news_item {
  display: flex;
  align-content: space-between;
  border-bottom: 2px solid #DCDBDB;
  font-size: 18px;
  width: 100%;
  padding: 20px 0;
}
.index_news_scrl .index_news_item:first-child {
  border-top: 2px solid #DCDBDB;
}
.index_news_scrl .index_news_item .index_news_item_date {
  width: 120px;
  color: #D55B5B;
  text-align: right;
  font-weight: bold;
  margin-right: 20px;
}
.index_news_scrl .index_news_item .index_news_item_ttl {
  width: calc(100% - 140px);
}
.index_news_scrl .index_news_item .index_news_item_ttl a {
  color: #5D5D5D;
  transition: 0.3s;
}
.index_news_scrl .index_news_item .index_news_item_ttl a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.index_news_scrl .index_news_item .index_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_news_scrl .index_news_item .index_news_item_icon_new:before {
  content: "NEW";
}

.index_calendar {
  background-color: #E2EDE9;
  box-shadow: 0 0 0 100vmax #E2EDE9;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
}
.index_calendar #calendar {
  width: 75%;
  margin: 0 auto;
}
.index_calendar #calendar img {
  display: block;
  width: 60px;
  margin: 20px auto 0px;
}
.index_calendar #calendar #header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin: 20px 0px;
}
.index_calendar #calendar #header h2 {
  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: 18px;
  text-align: center;
  height: 40px;
  width: 14.2857142857%;
  font-family: "Quicksand", sans-serif;
}
.index_calendar #calendar table tbody tr td {
  font-size: 18px;
  vertical-align: top;
  height: 80px;
  background-color: #fff;
  border: 2px solid #E2EDE9;
  padding: 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: block;
  color: #5D5D5D;
  font-size: 16px;
  text-align: center;
  background-color: #DCDBDB;
  border-radius: 4px;
}

section {
  margin-bottom: 20px;
}
section .content {
  padding: 15px 25px;
  margin-bottom: 20px;
  line-height: 2em;
}
section .content img {
  display: block;
  width: 70%;
  margin: 0 auto;
}
section .img_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 10px;
}
section .img_content img {
  display: block;
  width: calc((100% - 20px) / 2);
}

.side {
  width: 230px;
}
.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;
  min-height: 220px;
  width: 100%;
  padding: 30px;
  background: url("../images/footer_bg.jpg") no-repeat center;
  background-size: cover;
}
.link .link_content {
  display: flex;
  justify-content: stretch;
  align-items: center;
  gap: 20px;
}
.link .link_content .link_item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  background-color: #fff;
  width: calc((100% - 60px) / 4);
  padding: 10px 20px;
}
.link .link_content .link_item a {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  width: 100%;
  color: #7B7878;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.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;
  margin-bottom: 40px;
}
.index_info .index_contact {
  min-width: 32%;
}
.index_info .index_contact .contact_title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5D5D5D;
  font-size: 21px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.index_info .index_contact .contact_title img {
  width: 70px;
  height: auto;
}
.index_info .index_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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  height: 60px;
}
.index_info .index_contact .contact_title .contact_name span {
  font-size: 14px;
  font-weight: normal;
}
.index_info .index_contact .contact_tel {
  font-family: "Quicksand", sans-serif;
}
.index_info .index_contact .contact_tel .tel_title {
  color: #3DAF88;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
}
.index_info .index_contact .contact_tel .tel_number a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  background-color: #3DAF88;
  padding: 8px;
  transition: 0.3s;
}
.index_info .index_contact .contact_tel .tel_number a:hover {
  opacity: 0.7;
}
.index_info .index_contact .contact_tel .tel_number a span {
  font-size: 32px;
  line-height: 1;
}
.index_info .index_contact .contact_access {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-top: 5px;
}
.index_info .index_schedule {
  width: 64%;
}
.index_info .index_schedule table {
  width: 100%;
}
.index_info .index_schedule table tr {
  border-bottom: 2px solid #DCDBDB;
}
.index_info .index_schedule table tr th, .index_info .index_schedule table tr td {
  font-size: 18px;
  padding-block: 20px;
  text-align: center;
}
.index_info .index_schedule table tr th {
  font-weight: normal;
  padding-bottom: 10px;
}
.index_info .index_schedule table tr td {
  color: #3DAF88;
  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: 32px;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.ft_contact .contact_title img {
  width: 68px;
  height: auto;
}
.ft_contact .contact_title .contact_name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 400px;
  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: 18px;
  font-weight: normal;
}
.ft_contact .contact_box {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  font-size: 18px;
  line-height: 24px;
  margin-top: 5px;
}
.ft_contact .contact_box .contact_tel {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-family: "Quicksand", sans-serif;
}
.ft_contact .contact_box .contact_tel .tel_title {
  font-size: 16px;
  font-weight: bold;
}
.ft_contact .contact_box .contact_tel .tel_number a {
  font-size: 20px;
  color: #3DAF88;
  text-decoration: none;
  transition: 0.3s;
}
.ft_contact .contact_box .contact_tel .tel_number a:hover {
  opacity: 0.7;
}
.ft_contact .contact_box .contact_tel .tel_number a span {
  font-size: 36px;
}
.ft_contact .contact_box .contact_access {
  margin: 0px;
}

.clinic_content .clinic_item {
  display: flex;
  gap: 40px;
  padding: 20px 0px;
  border-bottom: 1px solid #ccc;
}
.clinic_content .clinic_item img {
  width: 300px;
}
.clinic_content .clinic_item .clinic_text {
  width: 100%;
}
.clinic_content .clinic_item .clinic_text p {
  margin-left: 1em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  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 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3DAF88;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 10px auto;
}
.con h2 img {
  width: 60px;
  margin-right: 10px;
}
.con h3 {
  font-size: 1.4em;
  margin-block: 10px 15px;
  padding: 0.4em 0.6em;
  border-top: 2px solid #3DAF88;
  border-bottom: 2px solid #3DAF88;
}
.con h4 {
  font-size: 1.3em;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 0.3em 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 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.con hr {
  border: none;
  border-top: 1px solid #ccc;
  width: 100%;
}
.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 .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: #32A6F3;
  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=style.css.map */