@charset "UTF-8";
@property --btn-bgcolor {
  syntax: "<color>";
  inherits: false;
  initial-value: #39567f;
}
@property --btn-hover-bgcolor {
  syntax: "<color>";
  inherits: false;
  initial-value: #94b1cd;
}
@media only screen and (min-width: 768px) {
  .pc_none {
    display: none !important;
  }
}

@media only screen and (min-width: 1200px) {
  .pc_l_none {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .pc_s_none {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp_none {
    display: none !important;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-family: wanpaku-rera, sans-serif;
  color: #39567f;
  line-height: 2;
}

.root {
  overflow: hidden;
}

header {
  max-width: 1230px;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  min-height: 120px;
  align-items: center;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  header {
    min-height: 80px;
  }
}
header > * {
  flex-grow: 1;
  width: 33.3%;
}
header .header_sns {
  display: flex;
  justify-content: end;
}
header .header_sns > * {
  margin: 8px;
}
@media only screen and (max-width: 767px) {
  header .header_sns {
    justify-content: end;
  }
  header .header_sns > * {
    margin: 5px;
  }
}
header .header_logo {
  display: flex;
  justify-content: start;
  padding: 0;
  width: 160px;
  flex-grow: unset;
}
header .header_logo .logo_dog img,
header .header_logo .logo_cat img {
  max-height: 60px;
  display: block;
}
@media only screen and (max-width: 767px) {
  header .header_logo .logo_dog img,
  header .header_logo .logo_cat img {
    max-height: 40px;
  }
}
header .header_logo:hover .logo_dog img,
header .header_logo:hover .logo_cat img, header .header_logo:active .logo_dog img,
header .header_logo:active .logo_cat img {
  animation: bounce 0.6s 1 ease-in-out;
}
header .header_logo:hover .logo_cat img, header .header_logo:active .logo_cat img {
  animation-delay: 0.1s;
}
header .header_hamburger {
  width: 50px;
  flex-grow: 0;
}
header .header_hamburger button {
  display: block;
  margin-left: auto;
  width: 50px;
  height: 50px;
  padding: 5px 15px;
  box-sizing: border-box;
  background: none;
  border: none;
  cursor: pointer;
}
header .header_hamburger button span {
  display: block;
  height: 4px;
  width: 20px;
  background-color: #39567f;
  margin: 7px 0;
  transition: 0.3s all;
  border-radius: 5px;
}
header .header_hamburger button:hover span:nth-child(1), header .header_hamburger button:active span:nth-child(1) {
  transform: rotate(90deg) scaleX(0.5) translateX(10px);
}
header .header_hamburger button:hover span:nth-child(2), header .header_hamburger button:active span:nth-child(2) {
  transform: rotate(180deg);
}
header .header_hamburger button:hover span:nth-child(3), header .header_hamburger button:active span:nth-child(3) {
  transform: rotate(270deg) scaleX(0.5) translateX(10px);
}
@keyframes bounce {
  0% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  }
  40% {
    transform: translateY(-30px) scale(0.9, 1.1);
    animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  }
  80% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  }
  90% {
    transform: translateY(-5px) scale(0.95, 1.05);
    animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  }
  100% {
    transform: translateY(0) scale(1, 1);
  }
}
a.icon_sns {
  padding-right: 1em;
  text-decoration: none;
  transition: 0.3s all;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  a.icon_sns {
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  a.icon_sns {
    padding-right: 0;
  }
}
a.icon_sns .icon_sns_img {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border-radius: 50% 50%;
  background: var(--btn-bgcolor);
  transition: 0.3s all;
  margin-right: 1ex;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  a.icon_sns .icon_sns_img {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  a.icon_sns .icon_sns_img {
    margin-right: 0;
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
}
a.icon_sns .icon_sns_img img {
  max-width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  a.icon_sns .icon_sns_label {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  a.icon_sns .icon_sns_label {
    display: none;
  }
}
a.icon_sns:link, a.icon_sns:visited {
  color: #39567f;
}
a.icon_sns:hover .icon_sns_img, a.icon_sns:active .icon_sns_img {
  background: var(--btn-hover-bgcolor);
}

#sp_menu_overlay {
  pointer-events: none;
  opacity: 0;
  transition: 0.5s all;
  position: fixed;
  height: 100vh;
  width: 100vW;
  top: 0;
  left: 0;
  z-index: 210;
}
#sp_menu_overlay.is_opened {
  pointer-events: auto;
}

#sp_menu {
  max-width: 100%;
  width: 400px;
  background-color: #39567f;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  color: #ffffff;
  height: 100svh;
  transform: translateX(100%);
  transition: 0.3s all;
  z-index: 220;
}
@media only screen and (max-width: 767px) {
  #sp_menu {
    overflow-y: scroll;
  }
}
#sp_menu.is_opened {
  transform: translateX(0);
}
#sp_menu > div {
  padding: 50px;
  width: 350px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  #sp_menu > div {
    padding: 50px 0 50px 25px;
  }
}
#sp_menu .sp_menu_head {
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "M PLUS Rounded 1c", sans-serif;
  position: relative;
}
#sp_menu .sp_menu_head button {
  background: none;
  border: none;
  width: 34px;
  height: 100%;
  position: absolute;
  right: -10px;
  top: 0;
  overflow: hidden;
  text-indent: -100px;
  cursor: pointer;
}
#sp_menu .sp_menu_head button::before, #sp_menu .sp_menu_head button::after {
  content: "";
  display: block;
  width: 14px;
  left: 50%;
  height: 3px;
  border-radius: 2px;
  position: absolute;
  background: #ffffff;
  top: 50%;
  transition: 0.3s all;
  transform: translate(-50%, -50%) rotate(45deg);
}
#sp_menu .sp_menu_head button::before {
  transform: translate(-50%, -50%) rotate(135deg);
}
#sp_menu .sp_menu_head button:hover::before {
  transform: translate(-50%, -50%) rotate(225deg);
}
#sp_menu .sp_menu_head button:hover::after {
  transform: translate(-50%, -50%) rotate(315deg);
}
#sp_menu .search_keyword {
  position: relative;
  margin: 40px 0 30px;
}
#sp_menu .search_keyword input[type=text] {
  width: 100%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  background-color: #53719d;
  border: none;
  border-radius: 30px;
  padding: 0 0 0 50px;
  line-height: 60px;
  font-size: 16px;
  letter-spacing: 0.1ex;
  box-sizing: border-box;
  display: block;
  color: #ffffff;
}
#sp_menu .search_keyword input[type=text]::-moz-placeholder {
  color: #94b1cd;
}
#sp_menu .search_keyword input[type=text]::placeholder {
  color: #94b1cd;
}
#sp_menu .search_keyword button {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50px;
  border: none;
  background: url(../img/common/icon/search_white.webp) 100% 50%/30px 30px no-repeat;
  cursor: pointer;
  transition: 0.3s all;
}
#sp_menu .search_keyword button:hover, #sp_menu .search_keyword button:active {
  opacity: 0.5;
  transform: translateY(1px);
}
#sp_menu .search_keyword button span {
  display: none;
}
#sp_menu nav#gnav {
  flex-grow: 1;
  overflow-y: auto;
}
#sp_menu nav#gnav ul {
  list-style-type: none;
}
#sp_menu nav#gnav > ul {
  margin: 30px 0 40px;
  padding: 0;
  font-size: 18px;
  letter-spacing: 0.1ex;
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", sans-serif;
  min-height: 200px;
}
#sp_menu nav#gnav > ul ul {
  display: none;
}
#sp_menu nav#gnav > ul > li:first-child {
  border-top: none;
}
#sp_menu nav#gnav > ul li {
  margin: 0;
  padding: 0;
  border-top: 1px solid #53719d;
  position: relative;
}
#sp_menu nav#gnav > ul li > div {
  position: relative;
  padding-right: 34px;
}
#sp_menu nav#gnav > ul li a {
  transform: rotate(0.05deg);
  padding: 0.8em 1ex;
  display: block;
  text-decoration: none;
  color: #ffffff;
  transition: 0.2s all;
}
#sp_menu nav#gnav > ul li a:hover, #sp_menu nav#gnav > ul li a:active {
  background-color: rgba(255, 255, 255, 0.2);
}
#sp_menu nav#gnav > ul li a.ext::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: 0%;
  margin-left: 1ex;
  background: url(../img/common/icon/ext_inv.webp) 50% 50%/contain no-repeat;
}
#sp_menu .sp_menu_btns .btn {
  max-width: 250px;
  display: block;
  border-radius: 10px;
  padding: 1.2ex 3em 1.3ex 2em;
}
#sp_menu .sp_menu_btns .btn:not(:first-child) {
  margin-top: 15px;
}
#sp_menu address {
  text-decoration: none;
  font-style: normal;
  display: block;
  line-height: 1.5;
  font-size: 16px;
  margin-top: 40px;
}
#sp_menu .tel {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 25px;
  color: #edc286;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 30px;
}
#sp_menu .tel::before {
  content: "";
  display: inline-block;
  background: url(../img/common/icon/tel_orange.webp) 50% 50%/contain no-repeat;
  width: 10px;
  height: 16px;
  margin-right: 0.6ex;
}
#sp_menu .tel a {
  text-decoration: none;
  color: #edc286;
}
#sp_menu .submenu-toggle {
  background: none;
  border: none;
  width: 34px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  text-indent: -100px;
  cursor: pointer;
}
#sp_menu .submenu-toggle::before, #sp_menu .submenu-toggle::after {
  content: "";
  display: block;
  width: 14px;
  left: 50%;
  height: 3px;
  border-radius: 2px;
  position: absolute;
  background: #ffffff;
  top: 50%;
  transition: 0.3s all;
  transform: translate(-50%, -50%);
}
#sp_menu .submenu-toggle::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
#sp_menu .submenu-toggle.active::before, #sp_menu .submenu-toggle.active::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.arrowed_more {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-size: 18px;
  transition: 0.3s all;
  padding: 1em 0 1em 1ex;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .arrowed_more {
    padding: 0.75em 0 0.75em 0.75ex;
  }
}
@media only screen and (max-width: 767px) {
  .arrowed_more {
    padding: 0.75em 0 0.75em 0.75ex;
  }
}
.arrowed_more::after {
  margin: -33px 0 -27px 1em;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: var(--btn-bgcolor) url(../img/common/icon/arrow_more.webp) 50% 50%/contain no-repeat;
  border-radius: 50% 50%;
  width: 60px;
  aspect-ratio: 1/1;
  transition: 0.3s all;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .arrowed_more::after {
    width: 45px;
    margin: -24.75px 0 -20.25px 1em;
  }
}
@media only screen and (max-width: 767px) {
  .arrowed_more::after {
    width: 36px;
    margin: -19.8px 0 -16.2px 1em;
  }
}
.arrowed_more:hover, .arrowed_more:active {
  color: var(--btn-hover-bgcolor);
}
.arrowed_more:hover::after, .arrowed_more:active::after {
  transform: translateX(3px);
  background-color: var(--btn-hover-bgcolor);
}

footer {
  position: relative;
  margin-top: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  footer {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    margin-top: 40px;
  }
}
footer .footer_content {
  max-width: 1230px;
  padding: 0px 15px 40px;
  margin: 0 auto;
  box-sizing: border-box;
}
footer .footer_column {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  footer .footer_column {
    display: block;
  }
}
footer .footer_column > *:first-child {
  width: 40%;
  padding: 5px 0 0;
}
@media only screen and (max-width: 767px) {
  footer .footer_column > *:first-child {
    width: auto;
  }
}
footer .footer_column > *:last-child {
  width: 53.3333333333%;
  display: flex;
  flex-direction: column;
  padding: 0 0 15px;
}
@media only screen and (max-width: 767px) {
  footer .footer_column > *:last-child {
    width: auto;
  }
}
footer .footer_column .footer_title {
  margin-bottom: 45px;
}
@media only screen and (max-width: 767px) {
  footer .footer_column .footer_title {
    margin-bottom: 15px;
  }
}
footer .footer_column .footer_title img {
  max-height: 60px;
  max-width: 100%;
  display: block;
}
footer .footer_column .footer_tel {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.1ex;
}
footer .footer_column .footer_tel::before {
  content: "";
  display: inline-block;
  background: url(../img/common/icon/tel.webp) 50% 50%/contain no-repeat;
  width: 0.9ex;
  aspect-ratio: 7/11;
  vertical-align: -1%;
  margin-right: 0.3ex;
}
@media only screen and (max-width: 575px) {
  footer .footer_column .footer_tel a {
    color: #53719d;
    text-decoration: none;
  }
}
footer .footer_column .footer_btns {
  display: flex;
  justify-content: space-between;
  margin: 1.2em -15px 0;
}
@media only screen and (max-width: 767px) {
  footer .footer_column .footer_btns {
    margin: 0.25em -15px 0;
  }
}
footer .footer_column .footer_btns > * {
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
}
footer .footer_column .footer_btns a.btn {
  display: block;
  text-align: center;
  padding: 1.8em 3em 1.8em 2em;
  box-shadow: 7px 7px 20px rgba(46, 55, 74, 0.1333333333);
}
@media only screen and (max-width: 767px) {
  footer .footer_column .footer_btns a.btn {
    padding: 0.5em 3em 0.5em 2em;
  }
}
@media only screen and (max-width: 575px) {
  footer .footer_column .footer_btns a.btn {
    font-size: 15px;
    padding: 0.7em 1em 0.8em 1em;
    background: var(--btn-bgcolor) url(../img/common/icon/arrow_more.webp) 110% 50%/60px 60px no-repeat;
  }
}
footer .footer_column .footer_nav {
  flex-grow: 1;
  margin-bottom: 1em;
}
footer .footer_column .footer_nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
@media only screen and (max-width: 767px) {
  footer .footer_column .footer_nav ul {
    justify-content: center;
  }
}
footer .footer_column .footer_nav ul li {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
}
footer .footer_column .footer_nav ul li a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 1em 1em 1ex;
  position: relative;
  display: block;
}
footer .footer_column .footer_nav ul li a.ext::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: 0%;
  margin-left: 1ex;
  background: url(../img/common/icon/ext.webp) 50% 50%/contain no-repeat;
}
footer .footer_column .footer_nav ul li a span {
  display: inline-block;
  transform: rotate(0.5deg);
}
footer .footer_column .footer_nav ul li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--btn-bgcolor);
  transform: scaleX(0);
  transition: 0.3s all;
}
footer .footer_column .footer_nav ul li a:hover::before, footer .footer_column .footer_nav ul li a:active::before {
  transform: scaleX(1);
}
footer .footer_column .outpatient_table {
  position: relative;
  background: #f7f6f6;
  border-radius: 30px;
  padding: 20px 40px 30px;
}
@media only screen and (max-width: 767px) {
  footer .footer_column .outpatient_table {
    padding: 10px 10px 10px;
    border-radius: 20px;
  }
}
footer .footer_column .outpatient_table table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}
footer .footer_column .outpatient_table table * {
  border: none;
  box-sizing: border-box;
}
footer .footer_column .outpatient_table table thead tr th {
  font-weight: 500;
  font-size: 17px;
  box-sizing: border-box;
  padding: 1ex 0;
  width: 10%;
}
@media only screen and (max-width: 767px) {
  footer .footer_column .outpatient_table table thead tr th {
    width: 8%;
    font-size: 14px;
  }
}
footer .footer_column .outpatient_table table thead tr th:first-child {
  font-size: 18px;
  width: auto;
  letter-spacing: 0.1ex;
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  footer .footer_column .outpatient_table table thead tr th:first-child {
    padding-right: 5px;
  }
}
footer .footer_column .outpatient_table table tbody tr > * {
  padding: 0;
}
footer .footer_column .outpatient_table table tbody tr th {
  justify-content: stretch;
  align-items: stretch;
  font-size: 17px;
  letter-spacing: 0.05ex;
  padding-right: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  footer .footer_column .outpatient_table table tbody tr th {
    font-size: 14px;
    padding-right: 5px;
  }
}
footer .footer_column .outpatient_table table tbody tr th.am {
  color: #edc286;
}
footer .footer_column .outpatient_table table tbody tr th.am div {
  border-radius: 10px 10px 0 0;
}
footer .footer_column .outpatient_table table tbody tr th.pm {
  color: #94b1cd;
}
footer .footer_column .outpatient_table table tbody tr th.pm div {
  border-radius: 0 0 10px 10px;
}
footer .footer_column .outpatient_table table tbody tr th div {
  background: #ffffff;
  flex-grow: 1;
  font-size: 16px;
  padding: 1ex 0;
}
@media only screen and (max-width: 767px) {
  footer .footer_column .outpatient_table table tbody tr th div {
    font-size: 14px;
  }
}
footer .footer_column .outpatient_table table tbody tr td {
  font-size: 17px;
  text-align: center;
}
footer .footer_column .outpatient_table table tbody tr:last-child > * {
  border-top: 1px solid #e7e7e7;
}
footer .footer_column .outpatient_table_note {
  text-align: right;
  margin-top: 10px;
}
footer .footer_bottom {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
footer .footer_sns {
  display: flex;
  justify-content: start;
}
footer .footer_sns > * {
  margin: 8px;
}
footer .footer_copy {
  flex-grow: 1;
  text-align: center;
  font-size: 14px;
  transform: rotate(0.05deg);
}
footer .outpatient_table_note {
  text-align: right;
  margin-top: 10px;
}

a.btn {
  display: block;
  border-radius: 20px;
  transition: 0.3s all;
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  padding: 1ex 3em 1ex 2em;
  background: var(--btn-bgcolor) url(../img/common/icon/arrow_more.webp) 100% 50%/60px 60px no-repeat;
  font-size: 18px;
}
a.btn.ext {
  background: var(--btn-bgcolor) url(../img/common/icon/ext_white.webp) calc(100% - 20px) 50%/60px 60px no-repeat;
  padding-right: 4em;
}
a.btn.white {
  background-color: #fff !important;
  color: #39567f;
  background: url(../img/common/icon/arrow_more_blue.webp) 95% 50%/20px 20px no-repeat;
  transition: all 0.3s;
}
a.btn.white:hover {
  opacity: 0.8;
}
a.btn img {
  max-width: 100%;
}
a.btn:hover, a.btn:active {
  background-color: var(--btn-hover-bgcolor);
}

.scroll_to_top {
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  right: 0;
  bottom: 0px;
  z-index: 150;
  line-height: 0;
  pointer-events: none;
  text-align: right;
}
.scroll_to_top._show a {
  pointer-events: all;
  cursor: pointer;
  opacity: 1;
}
.scroll_to_top._fix {
  position: absolute;
  bottom: auto;
  top: -100px;
  opacity: 1;
}
.scroll_to_top._fix a {
  opacity: 1;
}
.scroll_to_top a {
  margin-left: auto;
  display: block;
  width: 100px;
  box-sizing: border-box;
  aspect-ratio: 1/1;
  padding: 10px;
  position: relative;
  top: 0px;
  opacity: 0;
  transition: 0.3s all;
}
.topics_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: table;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .topics_list {
    display: block;
  }
}
.topics_list .label {
  background: #ffffff;
  letter-spacing: 0.2ex;
  padding: 0.2ex 1em;
  border-radius: 1em;
  display: inline-block;
  line-height: 1.6;
  font-size: 14px;
  min-width: 100px;
  text-align: center;
  padding: 0.5ex 1em;
  box-sizing: border-box;
}
.topics_list li {
  margin: 0;
  padding: 0;
  display: table-row-group;
}
@media only screen and (max-width: 767px) {
  .topics_list li {
    display: block;
  }
}
.topics_list li:last-child a > * {
  border-bottom: 0 !important;
}
.topics_list li a {
  display: table-row;
  color: inherit;
  text-decoration: none;
  transition: 0.3s all;
}
@media only screen and (max-width: 767px) {
  .topics_list li a {
    display: flex;
    flex-wrap: wrap;
  }
}
.topics_list li a:hover, .topics_list li a:active {
  background-color: rgba(255, 255, 255, 0.5333333333);
}
.topics_list li a > * {
  display: table-cell;
  border-bottom: 1px solid #e7e7e7;
  padding: 1.3em 0.8em;
}
@media only screen and (max-width: 767px) {
  .topics_list li a > * {
    display: block;
    padding: 10px 10px 0;
    border-bottom: none;
  }
}
.topics_list li a.new .new_icon {
  display: inline-block;
  background: #edc286;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-left: 1ex;
}
.topics_list li a .topics_date {
  white-space: nowrap;
  width: 100px;
}
.topics_list li a .topics_cat {
  width: 100px;
}
.topics_list li a .topics_title {
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .topics_list li a .topics_title {
    box-sizing: border-box;
    width: 100%;
    padding: 5px 20px 10px;
    border-bottom: 1px solid #e7e7e7;
  }
}
.topics_list li ._disable {
  pointer-events: none;
}

a.disable {
  pointer-events: none;
  cursor: default;
}

.main_header {
  position: relative;
}
.main_header::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  height: 150%;
  background: #39567f;
}
.main_header.white::before {
  content: none;
}
.main_header > div {
  margin: 0 auto;
  max-width: 1230px;
  padding: 15px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .main_header > div {
    padding: 5px 15px;
  }
}
.main_header.white h1 {
  color: #39567f;
  padding-left: 30px;
  position: relative;
  margin: 0.5ex 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .main_header.white h1 {
    margin: 0.5ex 0;
  }
}
@media only screen and (max-width: 767px) {
  .main_header.white h1 {
    margin: 0.5ex 0px;
  }
}
.main_header.white h1::before {
  content: "";
  display: block;
  height: 90%;
  width: 10px;
  background: #edc286;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 10px;
}
.main_header.white h1 .h1_en {
  font-weight: 800;
}
.main_header h1 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #ffffff;
  line-height: 1.4;
  margin: 0.5ex 0 1em;
  padding: 0 15px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .main_header h1 {
    margin: 0 0 1ex;
  }
}
@media only screen and (max-width: 767px) {
  .main_header h1 {
    margin: 0 0 1ex;
  }
}
.main_header h1 .h1_en {
  font-size: 45px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .main_header h1 .h1_en {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .main_header h1 .h1_en {
    font-size: 36px;
  }
}
.main_header h1 .h1_jp {
  font-size: 17px;
  font-weight: 500;
  transform: rotate(0.05deg);
}
@media only screen and (max-width: 767px) {
  .main_header h1 .h1_jp {
    font-size: 16px;
  }
}
.main_header.white .breadcrumb li a:link, .main_header.white .breadcrumb li a:visited, .main_header.white .breadcrumb li a:hover, .main_header.white .breadcrumb li a:active {
  color: #39567f;
}
.main_header.white .breadcrumb li::after {
  color: #39567f;
}
.main_header .breadcrumb {
  list-style-type: none;
  display: flex;
  justify-content: end;
  box-sizing: border-box;
  font-size: 17px;
  letter-spacing: 0.1ex;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .main_header .breadcrumb {
    font-size: 14px;
  }
}
.main_header .breadcrumb li {
  color: #94b1cd;
}
.main_header .breadcrumb li a:link, .main_header .breadcrumb li a:visited, .main_header .breadcrumb li a:hover, .main_header .breadcrumb li a:active {
  text-decoration: none;
  color: #ffffff;
}
.main_header .breadcrumb li a:hover, .main_header .breadcrumb li a:active {
  text-decoration: underline;
}
.main_header .breadcrumb li::after {
  content: ">";
  margin: 0 0.7em;
  color: #ffffff;
}
.main_header .breadcrumb li:last-child::after {
  content: none;
}

.main_content {
  max-width: 1230px;
  box-sizing: border-box;
  margin: 0 auto 10em;
  padding: 0 15px;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .main_content {
    margin: 0 auto 100px;
  }
}
@media only screen and (max-width: 767px) {
  .main_content {
    margin: 0 auto 100px;
  }
}
.main_content p {
  margin-left: 1ex;
  margin-right: 1ex;
}
.main_content h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 32px;
  font-weight: 800;
  position: relative;
  padding: 0.8ex 0;
  margin: 1.8em 0 1ex;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .main_content h2 {
    font-size: 27px;
  }
}
@media only screen and (max-width: 767px) {
  .main_content h2 {
    font-size: 24px;
  }
}
.main_content h2::before, .main_content h2::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  bottom: 0;
}
.main_content h2::before {
  background: #94b1cd;
  width: 100%;
}
.main_content h2::after {
  background: #edc286;
  width: 80px;
}
.main_content h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 25px;
  font-weight: 800;
  background: #eaeff4;
  border-radius: 10px;
  display: table;
  line-height: 1.6;
  padding: 0.5ex 1em;
  margin: 1.8em 0 1ex;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .main_content h3 {
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .main_content h3 {
    font-size: 18px;
  }
}
.main_content h4 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin: 1.8em 0 1ex;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .main_content h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .main_content h4 {
    font-size: 16px;
  }
}
.main_content h4::before {
  content: "";
  display: inline-block;
  background: #edc286;
  width: 0.9em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin-right: 1ex;
  vertical-align: -5%;
}
.main_content h5 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #d5a35e;
  transform: rotate(0.05deg);
  margin: 1em 0 1em;
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .main_content h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .main_content h5 {
    font-size: 16px;
  }
}
.main_content .table_wrapper {
  overflow-x: auto;
  border-radius: 30px;
  background: #fff;
  font-family: wanpaku-rera, sans-serif;
  margin: 50px auto 0;
  max-width: 1100px;
  /**************************

  スマホ時横スクロールさせるためのstyle

  */
}
@media only screen and (max-width: 575px) {
  .main_content .table_wrapper {
    border-radius: 24px;
    margin-top: 30px;
  }
}
.main_content .table_wrapper table {
  width: 100%;
  border-collapse: collapse;
}
.main_content .table_wrapper table thead {
  background-color: #9eb8d2;
  color: #fff;
}
.main_content .table_wrapper table thead th {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .main_content .table_wrapper table thead th {
    text-align: left;
    padding-left: 20px;
  }
}
.main_content .table_wrapper table tbody tr:not(:last-child) th {
  border-bottom: 1px solid #e7e7e7;
}
.main_content .table_wrapper table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #e7e7e7;
}
.main_content .table_wrapper table tbody tr th {
  background-color: #f7f6f6;
  padding: 14px 40px 16px;
  color: #39567f;
  font-weight: bold;
  line-height: 1.875;
  text-align: left;
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  .main_content .table_wrapper table tbody tr th {
    min-width: 260px;
  }
}
@media only screen and (max-width: 767px) {
  .main_content .table_wrapper table tbody tr th {
    min-width: 150px;
    padding: 16px 20px 18px;
  }
}
.main_content .table_wrapper table tbody tr td {
  background-color: #fcfcfc;
  padding: 14px 16px;
  line-height: 2;
  color: #39567f;
  padding: 14px 40px 16px;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .main_content .table_wrapper table tbody tr td {
    padding: 16px 20px 18px !important;
    font-size: 16px !important;
  }
}
@media only screen and (max-width: 420px) {
  .main_content .table_wrapper table tbody tr td {
    font-size: 12px !important;
  }
}
.main_content .table_wrapper table tbody tr td ul {
  margin: 0;
  padding-left: 20px;
}
.main_content .table_wrapper table tbody tr td:not(:last-child) th {
  border-bottom: 1px solid #e7e7e7;
}
.main_content .table_wrapper table tbody tr td:not(:last-child) td {
  border-bottom: 1px solid #e7e7e7;
}
.main_content .table_wrapper table tbody tr td {
  padding: 14px 16px;
  line-height: 1.8;
  vertical-align: top;
}
.main_content .table_wrapper .fixed_table_wrapper {
  position: relative;
  overflow-x: auto;
  box-sizing: border-box;
}
.main_content .table_wrapper .fixed_table_wrapper table {
  box-sizing: border-box;
  position: static;
}
.main_content .table_wrapper .fixed_table_wrapper table.fixed_table {
  margin-bottom: 0;
}
.main_content .table_wrapper .fixed_table_wrapper thead {
  border-bottom: none !important;
}
@media only screen and (max-width: 999px) {
  .main_content .table_wrapper .fixed_table_wrapper table {
    width: 1000px !important;
  }
}
.main_content .table_wrapper .fixed_table._fixed_th table td:first-child {
  position: sticky;
  left: 0;
  border-left: 1px solid #c4c4c4;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .main_content .table_wrapper .fixed_table._fixed_th table td:first-child {
    max-width: 100px;
  }
}
@media screen and (max-width: 420px) {
  .main_content .table_wrapper .fixed_table._fixed_th table td:first-child {
    max-width: 50px;
  }
}
.main_content .table_wrapper ._yubi {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  z-index: 10;
}
.main_content .table_wrapper ._yubi img {
  width: 85px;
  display: block;
}
@media only screen and (min-width: 1200px) {
  .main_content .table_wrapper ._yubi {
    display: none;
  }
}
@media screen and (max-width: 1259px) {
  .products_container .main_content .table_wrapper ._yubi {
    display: flex;
  }
}
.main_content .btn._page {
  max-width: 480px;
  margin: 50px auto 0;
  display: block;
  text-align: center;
  padding: 1.8em 3em 1.8em 2em;
  box-shadow: 7px 7px 20px rgba(46, 55, 74, 0.1333333333);
}
@media only screen and (max-width: 575px) {
  .main_content .btn._page {
    margin-top: 30px;
    padding: 0.5em 3em 0.5em 2em;
  }
}

.footer_gmap {
  margin: 40px 0 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .footer_gmap {
    margin: 30px 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_gmap {
    margin: 20px 0 20px;
  }
}
.footer_gmap iframe {
  border: none;
  border-radius: 60px;
  width: 100%;
  height: 390px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .footer_gmap iframe {
    border-radius: 40px;
    height: 320px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_gmap iframe {
    border-radius: 20px;
    height: 240px;
  }
}

.access_gmap {
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .access_gmap {
    margin: 0 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .access_gmap {
    margin: 0 0 20px;
  }
}
.access_gmap iframe {
  border: none;
  border-radius: 60px;
  width: 100%;
  height: 390px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .access_gmap iframe {
    border-radius: 40px;
    height: 320px;
  }
}
@media only screen and (max-width: 767px) {
  .access_gmap iframe {
    border-radius: 20px;
    height: 240px;
  }
}

.anchor_link {
  background: #f7f6f6;
  border-radius: 20px;
  justify-content: center;
  margin: 2em 0;
  padding: 1em 0;
  font-size: 18px;
  line-height: 1.6;
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .anchor_link {
    display: block;
  }
}
.anchor_link li {
  margin: 0;
  padding: 0;
}
.anchor_link a {
  display: block;
  padding: 0.5ex 1.2em;
  color: #39567f;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1ex;
}
.anchor_link a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  background: url(../img/common/icon/anchor_link.webp) 50% 0/12px 10px no-repeat;
  margin-left: 0.8ex;
}
.anchor_link a:hover, .anchor_link a:active {
  text-decoration: underline;
}

.news_content {
  background: #f7f6f6;
  padding: 60px 100px;
  border-radius: 60px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .news_content {
    padding: 40px 60px;
    border-radius: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .news_content {
    padding: 20px 20px;
    border-radius: 20px;
  }
}
.news_content.new::before {
  content: "NEW";
  background: #edc286;
  border-radius: 2em;
  padding: 0.5ex 1.25em;
  line-height: 1.6;
  font-weight: 700;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 100px;
  display: block;
  letter-spacing: 0.1ex;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .news_content.new::before {
    left: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .news_content.new::before {
    left: 20px;
  }
}
.news_content .news_content_head .news_attr {
  display: flex;
}
.news_content .news_content_head .news_attr .label {
  background: #ffffff;
  letter-spacing: 0.2ex;
  padding: 0.2ex 1em;
  border-radius: 1em;
  display: inline-block;
  line-height: 1.6;
  font-size: 14px;
  min-width: 100px;
  text-align: center;
  padding: 0.5ex 1em;
  box-sizing: border-box;
}
.news_content .news_content_head .news_attr .news_date {
  margin-right: 1.5em;
  padding-top: 0.25ex;
}
.news_content h2 {
  margin: 0.25ex 0;
  padding: 0;
  line-height: 1.6;
}
.news_content h2::before, .news_content h2::after {
  content: none;
}
.news_content article {
  margin: 30px 0 80px;
  padding: 10px 0 50px;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .news_content article {
    margin: 20px 0 60px;
    padding: 10px 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .news_content article {
    margin: 20px 0 20px;
    padding: 10px 0 20px;
  }
}

.post_nav {
  display: flex;
  justify-content: space-between;
}
.post_nav a {
  color: inherit;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.post_nav a.post_nav_prev::before, .post_nav a.post_nav_next::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: var(--btn-bgcolor) url(../img/common/icon/arrow_more.webp) 50% 50%/contain no-repeat;
  border-radius: 10px;
  width: 60px;
  aspect-ratio: 1/1;
  transition: 0.3s all;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .post_nav a.post_nav_prev::before, .post_nav a.post_nav_next::after {
    width: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .post_nav a.post_nav_prev::before, .post_nav a.post_nav_next::after {
    width: 36px;
  }
}
.post_nav a.post_nav_prev::before {
  transform: scaleX(-1);
  margin-right: 1em;
}
.post_nav a.post_nav_next::after {
  margin-left: 1em;
}
.post_nav a:hover, .post_nav a:active {
  color: var(--btn-hover-bgcolor);
}
.post_nav a:hover::before, .post_nav a:hover::after, .post_nav a:active::before, .post_nav a:active::after {
  background-color: var(--btn-hover-bgcolor);
}

.news_tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
@media only screen and (max-width: 767px) {
  .news_tab {
    margin-bottom: 1ex;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  #news_tab {
    padding-left: 1em;
  }
}

#news_tab,
.news_tab {
  flex-grow: 1;
}
#news_tab ul,
.news_tab ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
}
#news_tab ul li,
.news_tab ul li {
  margin: 0;
  padding: 0.25ex;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  #news_tab ul li,
  .news_tab ul li {
    justify-content: center;
    margin: 0;
    min-width: 33.3%;
    flex-grow: 1;
  }
}
#news_tab ul li a,
.news_tab ul li a {
  padding: 0.7em 1.3em;
  text-decoration: none;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: inherit;
  display: block;
  font-size: 18px;
  letter-spacing: 0.15ex;
  transition: 0.3s all;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  #news_tab ul li a,
  .news_tab ul li a {
    border: 1px solid #94b1cd;
  }
}
#news_tab ul li a._selected,
.news_tab ul li a._selected {
  background: #94b1cd;
  color: #ffffff;
}
#news_tab ul li a > span,
.news_tab ul li a > span {
  display: block;
  transform: rotate(0.5deg);
}
#news_tab ul li a::before,
.news_tab ul li a::before {
  content: "";
  background: #60a2ff;
  display: block;
  position: absolute;
  border-radius: 50% 50%;
  height: 100%;
  aspect-ratio: 1/1;
  transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
#news_tab ul li a:hover, #news_tab ul li a:active,
.news_tab ul li a:hover,
.news_tab ul li a:active {
  color: #ffffff;
}
#news_tab ul li a:hover::before, #news_tab ul li a:active::before,
.news_tab ul li a:hover::before,
.news_tab ul li a:active::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(3);
  background: var(--btn-hover-bgcolor);
}
@media only screen and (max-width: 767px) {
  #news_tab ul li a:hover::before, #news_tab ul li a:active::before,
  .news_tab ul li a:hover::before,
  .news_tab ul li a:active::before {
    transform: translate(-50%, -50%) scale(6);
  }
}

.boxed {
  background: #f7f6f6;
  padding: 35px 60px 40px;
  border-radius: 30px;
  margin-top: 2em;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .boxed {
    padding: 25px 40px 30px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .boxed {
    padding: 15px 25px 20px;
    border-radius: 10px;
  }
}
.boxed > *:first-child {
  margin-top: 0;
}
.boxed > *:last-child {
  margin-bottom: 0;
}

ul.deco {
  list-style-type: none;
  margin-left: -12px;
}
ul.deco > li::before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background-color: #94b1cd;
  border-radius: 50%;
  transform: translateX(-1.2ex);
}

.about_img_slider > div {
  position: relative;
}
.about_img_slider .swiper {
  overflow: hidden;
  border-radius: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .about_img_slider .swiper {
    border-radius: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .about_img_slider .swiper {
    border-radius: 40px;
    margin-bottom: 1.5em;
  }
}
.about_img_slider img {
  width: 100%;
  display: block;
}
.about_img_slider .swiper_manipulator {
  display: flex;
  align-items: center;
  justify-content: end;
  position: absolute;
  right: -30px;
  bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .about_img_slider .swiper_manipulator {
    right: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .about_img_slider .swiper_manipulator {
    right: -10px;
  }
}
.about_img_slider .swiper_manipulator .swiper_nav {
  display: flex;
}
.about_img_slider .swiper_manipulator .swiper_nav .swiper-button-prev,
.about_img_slider .swiper_manipulator .swiper_nav .swiper-button-next {
  width: 60px;
  height: 60px;
  background: var(--btn-bgcolor);
  left: auto;
  right: auto;
  position: static;
  margin: 1px;
  transition: 0.3s all;
}
.about_img_slider .swiper_manipulator .swiper_nav .swiper-button-prev:hover, .about_img_slider .swiper_manipulator .swiper_nav .swiper-button-prev:active,
.about_img_slider .swiper_manipulator .swiper_nav .swiper-button-next:hover,
.about_img_slider .swiper_manipulator .swiper_nav .swiper-button-next:active {
  background: var(--btn-hover-bgcolor);
}
.about_img_slider .swiper_manipulator .swiper_nav .swiper-button-prev::after,
.about_img_slider .swiper_manipulator .swiper_nav .swiper-button-next::after {
  content: none;
}
.about_img_slider .swiper_manipulator .swiper_nav .swiper-button-prev {
  border-radius: 10px 0 0 10px;
}
.about_img_slider .swiper_manipulator .swiper_nav .swiper-button-prev img {
  transform: scaleX(-1);
}
.about_img_slider .swiper_manipulator .swiper_nav .swiper-button-next {
  border-radius: 0 10px 10px 0;
}
.about_img_slider .swiper_manipulator .swiper-pagination {
  left: auto;
  right: auto;
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-right: 20px;
}
.about_img_slider .swiper_manipulator .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  display: block;
  background: #ffffff;
  opacity: 1;
  transition: 0.3s all;
  transform: scale(0.4);
}
.about_img_slider .swiper_manipulator .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #94b1cd;
  transform: scale(1);
}
@media only screen and (max-width: 767px) {
  .about_img_slider._horizontally_long .swiper_manipulator {
    bottom: 15px;
  }
  .about_img_slider._horizontally_long .swiper_manipulator .swiper_nav .swiper-button-prev,
  .about_img_slider._horizontally_long .swiper_manipulator .swiper_nav .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .about_img_slider._horizontally_long .swiper-pagination {
    margin-right: 10px;
  }
  .about_img_slider._horizontally_long .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .about_img_slider._horizontally_long .swiper_manipulator {
    bottom: 5px;
  }
  .about_img_slider._horizontally_long .swiper_manipulator .swiper_nav .swiper-button-prev,
  .about_img_slider._horizontally_long .swiper_manipulator .swiper_nav .swiper-button-next {
    width: 35px;
    height: 35px;
  }
  .about_img_slider._horizontally_long .swiper-pagination {
    margin-right: 5px;
  }
}

.center {
  text-align: center;
}
/*# sourceMappingURL=common.css.map */
