@charset "UTF-8";
/*===============================================================================

	リセットCSS

===============================================================================*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
figcaption,
figure {
  margin: 0;
  padding: 0;
}

address,
em {
  font-style: normal;
}

th {
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: left;
}

legend {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-size: 100%;
  font-weight: normal;
}

img,
fieldset {
  border: 0;
}

img {
  vertical-align: bottom;
}

li {
  list-style-type: none;
}

address,
body,
dd,
dl,
dt,
form,
h1,
h2,
h3,
h4,
h5,
h6,
option,
p,
pre,
select {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

img {
  vertical-align: bottom;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a img {
  border: none;
}

@media screen and (max-width: 640px) {
  img {
    max-width: 100%;
    height: auto;
  }
}
/*===============================================================================

	初期設定

===============================================================================*/
/* フォントデータの読み込み
************************************************************/
@font-face {
  font-family: "AGaramondPro-Italic";
  src: url("../fonts/AGaramondPro-Italic.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "AGaramondPro-Regular";
  src: url("../fonts/AGaramondPro-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/* 基本設定
************************************************************/
body {
  position: relative;
  color: #2d403d;
  font-size: 15px;
  font-weight: 500;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: justify;
}

a {
  color: #2d403d;
  text-decoration: none;
}

a:hover {
  color: #C0AB9A;
}

.anchor {
  display: block;
  padding-top: 120px;
  margin-top: -120px;
}

/*tel*/
[href^=tel]:hover {
  cursor: default;
}

::selection {
  background-color: #99C1DA;
}

::-moz-selection {
  background-color: #99C1DA;
}

body,
header,
footer {
  min-width: 1240px;
}

.underline {
  border-bottom: solid 1px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  *,
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  body {
    font-size: 14px;
  }
  body,
  .page-header .inner,
  header,
  footer {
    min-width: 100%;
  }
}
/*===============================================================================

	共通レイアウト

===============================================================================*/
/* ヘッダー
************************************************************/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 424px;
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
  z-index: 111;
}

.header .inner {
  position: relative;
  width: 100%;
  height: inherit;
  padding-top: 40px;
  margin: auto;
  box-sizing: border-box;
}

.header .header-logo {
  position: absolute;
  top: 60px;
  left: 38px;
}

.header .header-logo,
.header img {
  width: 411px;
  height: auto;
}
@media screen and (max-width: 1350px) {
  .header .header-logo,
  .header img {
    width: 320px;
  }
}

.header .fixed-contact,
.header .fixed-contact img {
  height: auto;
}

.header-info {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}

.header .address {
  display: block;
  position: absolute;
  top: 33px;
  right: 320px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 1500px) {
  .header .address {
    top: 40px;
    right: 90px;
    font-size: 10px;
  }
}
.header .tel {
  display: block;
  position: absolute;
  top: 15px;
  right: 40px;
  color: #fff;
  font-size: 30px;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.1em;
}

.header .tel:before {
  content: "";
  position: absolute;
  /* top: 7px; */
  top: 17px;
  left: -20px;
  width: 15px;
  height: 19px;
  background: url("../img/common/icon-tel-white.png") no-repeat top center;
}

@media screen and (max-width: 1500px) {
  .header .tel {
    top: 5px;
    right: 90px;
  }
}
.header .twitter {
  display: none;
  position: absolute;
  top: 20px;
  right: 40px;
}

.header .twitter img {
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 640px) {
  header {
    display: none;
  }
}
/* ヘッダーナビ
************************************************************/
.header-navi {
  position: absolute;
  top: 340px;
  right: 0;
  width: 100%;
  min-width: 1200px;
  height: 100px;
  padding: 20px 0 0 0;
  padding-right: 38px;
  background-color: rgba(255, 255, 255, 0.7);
  box-sizing: border-box;
  z-index: 9999;
}

.header-navi.top:not(.is-fixed) {
  top: 89px;
  height: 80px;
  padding-right: 38px;
  background: transparent;
}

.header-navi:after {
  content: "";
  display: block;
  clear: both;
}

.header-navi ul {
  display: flex;
  justify-content: space-between;
  width: 1100px;
  height: inherit;
  margin: auto;
  text-align: center;
}

.header-navi.top:not(.is-fixed) ul {
  float: right;
  width: 832px;
}

.header-navi li {
  position: relative;
  height: inherit;
}

.header-navi li a {
  display: block;
  position: relative;
  padding: 0 0;
  color: #2d403d;
  font-size: 18px;
  font-weight: bold;
  font-family: "Shippori Mincho", sans-serif;
  text-align: center;
  /* vertical-align: middle; */
}

.header-navi.top:not(.is-fixed) li a {
  color: #fff;
}

.header-navi li a:hover,
.header-navi li.is-active a {
  color: #2d403d;
}

.header-navi.top:not(.is-fixed) li a:hover,
.header-navi.top:not(.is-fixed) li.is-active a {
  color: #fff;
}

.header-navi.top:not(.is-fixed) li a:hover::before {
  content: "";
  position: absolute;
  top: -23px;
  left: 0;
  right: 0;
  width: 30px;
  height: 20px;
  margin: auto;
  background: url("../img/common/global-navi-hover.png") no-repeat top center;
}

.header-navi li a span {
  display: block;
  position: relative;
  margin-top: 7px;
  color: #d1b697;
  font-size: 13px;
  font-family: "segoe", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
}

.header-navi.top:not(.is-fixed) li a span {
  color: #fff;
}

.header-navi li a span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #2d403d;
  transition: 0.15s ease-out;
  transform: scaleX(0);
  z-index: 1;
}

.header-navi.top:not(.is-fixed) li a span::before {
  background-color: #fff;
}

.header-navi li a:hover span::before,
.header-navi li.is-active a span::before {
  transform: scaleX(1);
}

.header-navi ul li .sub-menu {
  display: none;
  position: absolute;
  top: 80%;
  /* top: 88%; */
  left: -50%;
  width: 200%;
  background-color: rgba(240, 240, 240, 0.8);
}

.header-navi.is-fixed ul li .sub-menu {
  top: 88%;
}

.header-navi.top:not(.is-fixed) ul li .sub-menu {
  top: 88%;
}

.header-navi ul li .sub-menu a {
  display: block;
  position: relative;
  padding: 13px 20px;
  color: #565656 !important;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

.header-navi ul li .sub-menu a::after,
.header-navi ul li .sub-menu a::before {
  display: none;
}

.header-navi ul li .sub-menu a:hover {
  background-color: rgba(99, 164, 193, 0.3);
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.header-navi.is-fixed {
  width: 100%;
  min-width: 1300px;
  height: 80px;
  padding-top: 10px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.7);
  box-sizing: border-box;
}

.header-navi.is-fixed ul {
  float: none;
  width: 1100px;
  margin: auto;
}

.header-navi.is-fixed ul li {
  height: auto;
}

.header-navi.is-fixed ul li a {
  color: #555;
}

.header-navi.is-fixed li a:hover::before {
  display: none;
}

.header-navi.is-fixed li a span {
  color: #d1b697;
}

.header-navi.is-fixed li a span::before {
  background-color: #d1b697;
}

@media screen and (max-width: 640px) {
  .header-navi {
    display: none;
  }
}
/* ヘッダー SP
************************************************************/
@media screen and (max-width: 640px) {
  .is-fixed {
    position: fixed;
    width: 100%;
  }
  .is-fixed li {
    display: block;
  }
  .header-sp-button {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: calc(100% - 66px);
    margin-left: 4px;
    z-index: 1;
  }
  .header-sp-button li {
    text-align: center;
  }
  .header-sp-button li:nth-of-type(1) {
    width: 19%;
  }
  .header-sp-button li:nth-of-type(2) a {
    padding-top: 9px;
    line-height: 18px;
  }
  .header-sp-button li:nth-of-type(n+2) {
    width: calc(33.3333333333% - 20px);
  }
  .header-sp-button li a {
    display: block;
    height: 54px;
    margin: 4px;
    color: #fff;
    font-size: 3.2vw;
    font-weight: 400;
    font-family: "Noto Sans JP", sans-serif !important;
    line-height: 54px;
    border-radius: 5px;
    background: #a8d7c8;
  }
  .header-sp-button li:nth-child(3) a {
    font-size: 3.2vw;
  }
  .header-sp-button li svg {
    position: relative;
    top: 0px;
    left: -5px;
    color: #fff;
    font-size: 1.1em !important;
  }
  .header-sp-button li i {
    font-size: 1.2em;
  }
  .header-sp-button li:nth-child(2) i {
    font-size: 1.2em !important;
  }
  .header-sp {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 62px;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
    -webkit-overflow-scrolling: touch;
    z-index: 9998;
  }
  .header-sp-content {
    z-index: 999;
  }
  .header-sp .header-logo {
    display: block;
    position: relative;
    top: 0;
    width: 100%;
    height: 62px;
    text-align: left;
    background: #fff;
  }
  .header-sp .header-logo span,
  .header-sp .header-logo img {
    display: block;
    padding: 5px 0 0 15px;
  }
  .header-sp .header-logo img {
    position: relative;
    width: 256px;
    height: 55px;
    z-index: 9999;
  }
  .header-sp-content {
    position: absolute;
    top: 0;
    right: 0;
  }
  .header-sp-navi {
    display: none;
    padding: 10px 0;
    background: #427E72;
  }
  .header-sp-navi li {
    display: block;
    float: left;
    width: 100%;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.4;
    text-align: center;
    padding-inline: 30px;
    position: relative;
  }
  .header-sp-navi li:last-of-type a {
    border-bottom: none;
  }
  .header-sp-navi li i {
    position: relative;
    top: -1px;
    left: -6px;
    margin-right: 4%;
    color: #ba9275;
    font-size: 11px;
    vertical-align: middle;
  }
  .header-sp-navi i.fa-facebook-square,
  .header-sp ul li i.fa-home {
    font-size: 16px;
  }
  .header-sp-navi li a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 60px;
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
    font-size: 18px;
    font-family: "Shippori Mincho", serif;
    text-decoration: none;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    vertical-align: middle;
  }
  .header-sp-navi li.has-child .parent {
    position: absolute;
    top: 10px;
    right: 30px;
    width: 40px;
    height: 40px;
    border: 1px solid #2d403d;
  }
  .header-sp-navi li.has-child .parent::after {
    content: "\f067";
    position: absolute;
    top: 7px;
    right: 12.5px;
    font-size: 1em;
    font-weight: bold;
    font-family: "Font Awesome 5 free";
  }
  .header-sp-navi li.has-child .parent.is-active::after {
    content: "\f068" !important;
    position: absolute;
    font-size: 1em;
    font-weight: bold;
    font-family: "Font Awesome 5 free";
  }
  .header-sp-navi li .sub-menu li {
    padding: 0;
  }
  .header-sp-navi li .sub-menu li:last-of-type a {
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  }
  .header-sp-navi li .sub-menu li a {
    font-size: 16px;
    height: 50px;
  }
}
/* ハンバーガーメニュー
************************************************************/
@media screen and (max-width: 640px) {
  .navi-toggle {
    display: block;
    position: relative;
    height: 62px;
    padding: 0 4%;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 2;
  }
  .navi-toggle a {
    display: block;
    position: absolute;
    /*top: 5px;*/
    right: 0px;
    width: 62px;
    height: 62px;
    text-align: center;
    background-color: #437E72;
    z-index: 9999999;
  }
  .navi-toggle a i {
    position: relative;
    top: 25px;
    left: -2px;
    bottom: 6px;
    margin-right: 2%;
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    font-style: normal;
  }
  .navi-toggle a span {
    display: block;
    position: absolute;
    left: 16px;
    width: 33px;
    height: 2px;
    background: #fff;
    transition: all 0.4s;
  }
  .navi-toggle a span:nth-child(1) {
    top: calc(50% - 10px);
  }
  .navi-toggle a span:nth-child(2) {
    top: 50%;
  }
  .navi-toggle a span:nth-child(3) {
    top: calc(50% + 10px);
  }
  .navi-toggle a.is-active {
    background: #437E72;
  }
  .navi-toggle a.is-active i {
    color: #fff;
  }
  .navi-toggle a.is-active span {
    background: #fff;
  }
  .navi-toggle a.is-active span:nth-child(1) {
    transform: translateY(10px) rotate(225deg);
  }
  .navi-toggle a.is-active span:nth-child(2) {
    opacity: 0;
  }
  .navi-toggle a.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-225deg);
  }
}
/* 固定CTA
************************************************************/
.fixed-contact {
  position: fixed;
  top: 194px;
  right: 0;
  transition: 0.2s ease-in-out;
  z-index: 99999;
}

.fixed-contact._pc {
  display: flex;
  justify-content: space-around;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.fixed-contact li {
  margin-bottom: 10px;
}

.fixed-contact li a {
  display: block;
  position: relative;
  padding: 58px 15px 15px;
  color: #fff;
  font-size: 16px;
  font-family: "Shippori Mincho", sans-serif;
  background-color: #0a9273;
  letter-spacing: 0.1em;
}

.fixed-contact li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  right: 16px;
  width: 26px;
  height: 24px;
  background-repeat: no-repeat no-repeat;
  background-position: center top;
  background-size: contain;
}

.fixed-contact li:nth-of-type(1) a::before {
  background-image: url("../img/common/icon-calendar.png");
}

.fixed-contact li a:hover {
  opacity: 0.7;
}

/* ページヘッダー
************************************************************/
.page-header {
  display: block;
  position: relative;
  min-width: 1240px;
  height: 440px;
  background-image: url("../img/common/bg-page-header.webp");
  background-position: center center;
  background-repeat: no-repeat no-repeat;
  background-size: cover;
  /*z-index: -1;*/
}

.page-header .inner {
  display: table;
  position: relative;
  width: 1200px;
  height: inherit;
  margin: 0 auto;
  background-repeat: no-repeat;
}

.page-header .ja {
  display: block;
  position: relative;
}

.page-header .title {
  display: table-cell;
  padding-bottom: 2px;
  text-align: center;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
  vertical-align: middle;
}

.page-header .title .ja {
  top: 0;
  left: 0;
  font-weight: bold;
  font-family: "Shippori Mincho", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  color: #2d403d;
}
@media screen and (max-width: 640px) {
  .page-header .title .ja {
    font-size: 21px;
  }
}

.page-header .title .en {
  display: block;
  font-family: "segoe", sans-serif;
  font-size: 15px;
  line-height: 1.87;
  letter-spacing: 0.05em;
  text-align: center;
  color: #d1b697;
}

@media screen and (max-width: 640px) {
  .page-header {
    background-position: center;
    background-attachment: scroll;
    min-width: 100%;
    height: 200px;
    margin-top: 62px;
  }
  .page-header .inner {
    width: auto;
    height: inherit;
  }
}
/* メインエリア
************************************************************/
main {
  display: block;
}

/* .top-wrapper {
	padding-top: 100px;
	padding-bottom: 100px;
} */
.main-content {
  position: relative;
  width: 1200px;
  padding-top: 70px;
  padding-bottom: 100px;
  margin: 0 auto;
}

.main-content::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 640px) {
  .main-content {
    width: auto;
    padding-bottom: 70px;
  }
}
/* パンくずリスト
************************************************************/
.breadcrumb {
  position: relative;
  width: auto;
  margin: 0 auto 30px;
  font-size: 14px;
  z-index: 998;
}

.breadcrumb:last-child {
  margin: 0 auto;
}

.breadcrumb i {
  margin-right: 5px;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb li {
  float: left;
  margin-right: 5px;
}

.breadcrumb li:after {
  content: ">";
  padding-left: 10px;
  font-family: FontAwesome;
}

.breadcrumb li:last-child:after {
  content: "";
}

.breadcrumb li:last-child a {
  color: #d04634 !important;
}

@media screen and (max-width: 640px) {
  .breadcrumb {
    width: 92%;
    margin: -10px 4% 40px;
  }
  .breadcrumb li {
    display: inline-block;
  }
}
/* フッター
************************************************************/
footer {
  position: relative;
  width: 100%;
  background-color: #fff;
}

.footer-information {
  position: relative;
  z-index: 2;
}
.footer-information::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background-color: #2169a7;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .footer-information::before {
    display: none;
  }
}

.footer-information .inner {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  padding: 0px;
  margin: 0 auto;
}
.footer-information .inner .__left {
  width: 600px;
  max-width: 100%;
}
@media screen and (max-width: 640px) {
  .footer-information .inner .__left {
    margin-bottom: 40px;
  }
}
.footer-information .inner .__left img {
  width: 100%;
}
.footer-information .inner .__right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 500px;
  max-width: 100%;
}

.footer-information .content-left {
  width: 100%;
  text-align: center;
  padding: 55px 0 55px 0;
}

.footer-information .content-right {
  width: 100%;
}

.footer-tel {
  display: flex;
}

.footer-tel .tel {
  display: block;
  position: relative;
  padding: 0 0 0 29px;
  margin-bottom: 3px;
  color: #595656;
  font-size: 30px;
  font-family: "AGaramondPro-Regular", sans-serif;
  letter-spacing: 2px;
  /*letter-spacing: 0.17em;*/
}

.footer-tel .tel:after {
  content: "";
  position: absolute;
  /* top: 5px; */
  /* top: 10px; */
  top: 11px;
  left: 0;
  width: 16px;
  height: 21px;
  background: url("../img/common/icon-tel-blue.png") no-repeat top center;
}

.footer-tel .twitter {
  width: 30px;
  height: 30px;
  padding: 8px 0 0 7px;
}

.footer-tel .twitter img {
  width: 30px;
  height: 30px;
}

.footer-address {
  display: block;
  margin-bottom: 30px;
}

.footer-category .title {
  display: block;
  position: relative;
  margin-bottom: 20px;
  color: #595656;
  font-size: 16px;
  font-family: "Shippori Mincho", sans-serif;
}

.footer-category .title:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 150px;
  height: 1px;
  background-color: #cccccc;
}

.footer-category ul {
  display: flex;
}

.footer-category ul li {
  font-size: 14px;
  font-weight: bold;
}

.footer-category ul li:first-child,
.footer-category ul li:nth-child(2) {
  margin-right: 20px;
}

.footer-information .schedule-table {
  width: 100%;
}

.footer-navi .inner {
  width: 1200px;
  padding: 17px 0 33px;
  margin: 0 auto;
}

.footer-navi ul {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 1088px;
  height: inherit;
  margin: 0 auto;
  text-align: center;
}

.footer-navi ul li {
  position: relative;
  height: inherit;
}

.footer-navi ul li a {
  display: block;
  position: relative;
  padding: 0;
  color: #2d403d;
  font-size: 18px;
  font-weight: bold;
  font-family: "Shippori Mincho", sans-serif;
  text-align: center;
  vertical-align: middle;
}

.footer-navi ul li a:hover::before {
  content: "";
  position: absolute;
  top: -23px;
  left: 0;
  right: 0;
  width: 30px;
  height: 20px;
  margin: auto;
  background: url("../img/common/global-navi-hover.png") no-repeat top center;
}

.footer-navi ul li a:hover {
  color: #2d403d;
}

.footer-navi ul li a span {
  display: block;
  position: relative;
  margin-top: 7px;
  opacity: 0.8;
  font-family: "segoe", sans-serif;
  font-size: 13px;
  letter-spacing: 0.65px;
  text-align: center;
  color: #d1b697;
}

.footer-navi ul li a span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #2d403d;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
  transform: scaleX(0);
  z-index: 1;
}

.footer-navi ul li a:hover span::before {
  transform: scaleX(1);
}

.footer-banner2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 55px 20px 20px;
  background-color: #2e6357;
}

.footer-copyright {
  padding: 12px 20px 12px;
  text-align: center;
  background-color: #2e6357;
}

.footer-copyright small {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 640px) {
  .footer-information .inner {
    display: block;
    width: auto;
    padding: 40px 6%;
  }
  .footer-information .content-left {
    width: auto;
    padding: 0;
    margin: 0 auto 30px;
    text-align: center;
  }
  .footer-information .content-center {
    width: auto;
    padding: 0;
  }
  .footer-information .content-right {
    width: auto;
  }
  .footer-information .content-left a img {
    width: 200px;
  }
  .footer-tel {
    justify-content: center;
  }
  .footer-tel .tel {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
  }
  .footer-tel .twitter {
    width: auto;
    height: auto;
    padding: 6px 0 0 7px;
  }
  .footer-category {
    margin-bottom: 20px;
  }
  .footer-navi {
    display: none;
  }
}
/*===============================================================================

	パーツ・コンポーネント

===============================================================================*/
/* タイトル
************************************************************/
h1 {
  position: absolute;
  top: 24px;
  left: 37px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  z-index: 9990;
}

.section-title.-style-01 {
  position: relative;
  color: #b5e5da;
  font-size: 100px;
  font-family: "orlando", sans-serif;
  line-height: 1;
  text-align: center;
  margin-bottom: 15px;
}

.section-title.-style-01.-sm {
  color: #b5cdd6;
  font-size: 78px;
}

.section-title-ja {
  display: block;
  margin-bottom: 60px;
  color: #437e72;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.15em;
  font-family: "Shippori Mincho", sans-serif;
  text-align: center;
}

.section-title.-style-02 {
  position: relative;
  margin-bottom: 30px;
  color: #63a4c1;
  font-size: 26px;
  font-weight: bold;
  font-family: "Shippori Mincho", sans-serif;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-align: left;
}

.section-title.-style-02.fs18 {
  margin-bottom: 10px;
  font-size: 18px;
}

.section-title.-style-03 {
  position: relative;
  padding: 5px 0 10px 15px;
  margin-bottom: 25px;
  color: #63a4c1;
  font-size: 20px;
  font-weight: bold;
  font-family: "Shippori Mincho", sans-serif;
  letter-spacing: 0.1em;
  border-left: 8px solid #63a4c1;
  border-bottom: 1px solid #63a4c1;
}

@media screen and (max-width: 640px) {
  h1 {
    position: absolute;
    top: 10px;
    left: 10px;
    width: auto;
    color: #fff;
    font-size: 12px;
    z-index: 9990;
  }
  .section-title.-style-01,
  .section-title.-style-02,
  .section-title.-style-03 {
    width: 100%;
    margin-bottom: 25px;
    box-sizing: border-box;
  }
  .section-title.-style-01 {
    margin-bottom: 0;
    font-size: 50px;
  }
  .section-title.-style-01.-sm {
    font-size: 37px;
  }
  .section-title-ja {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .section-title.-style-02::before {
    bottom: 0;
    left: 0;
    right: 0;
    width: 40px;
    height: 57px;
    margin: auto;
    background-image: url(../img/tit02_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
}
/* リスト
************************************************************/
ul.style-01 {
  padding: 35px 15px 25px 45px;
  background-color: #f7f7f7;
}

ul.style-01:after {
  content: "";
  display: block;
  clear: both;
}

ul.style-01._mt20 span {
  padding-left: 2em;
}

ul.style-01 li {
  float: left;
  position: relative;
  padding-left: 0.9em;
  padding-right: 5%;
  margin-bottom: 15px;
}

ul.style-01 li:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 3px;
  height: 3px;
  border: 1px solid #DAC58B;
  border-radius: 100%;
  background-color: #DAC58B;
}

ul.style-02 {
  padding: 30px;
  font-size: 14.5px;
  border: 3px solid #eee;
}

ul.style-02 li {
  position: relative;
  padding-left: 0.9em;
  margin-bottom: 10px;
}

ul.style-02 li:last-child {
  margin-bottom: 0;
}

ul.style-02 li:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 3px;
  height: 3px;
  border: 1px solid #E0D0BF;
  border-radius: 100%;
  background-color: #E0D0BF;
}

ul.style-02 li i {
  margin-right: 8px;
}

/* ボタン
************************************************************/
.more-button.-style-01 {
  position: relative;
  margin-bottom: 10px;
}

.more-button.-style-01 a {
  display: inline-block;
  position: relative;
  padding: 10px 15px;
  color: #72c6b2;
  font-size: 13px;
  font-weight: bold;
  font-family: "AGaramondPro-Regular", sans-serif;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  border-top: 1px solid #97d1a6;
  border-bottom: 1px solid #97d1a6;
  transition: ease-in-out 0.1s;
}

.more-button.-style-01 a:hover {
  color: #fff;
  background-color: #72c6b2;
}

@media screen and (max-width: 640px) {
  .more-button.-style-01 a {
    display: block;
  }
}
.more-button.-style-02 a {
  display: inline-block;
  position: relative;
  padding: 10px 15px;
  line-height: 1;
  border-top: 1px solid #2d403d;
  border-bottom: 1px solid #2d403d;
  text-align: center;
  color: #2d403d;
  font-weight: bold;
  transition: ease-in-out 0.1s;
  font-size: 13px;
  font-family: "Shippori Mincho", sans-serif;
  letter-spacing: 0.1em;
}

.more-button.-style-02 a:hover {
  color: #fff;
  background-color: #2d403d;
}

/* テーブル
************************************************************/
.schedule-table {
  margin-bottom: 21px;
  border-spacing: 0;
  border-collapse: collapse;
  white-space: nowrap;
}

.schedule-table td,
.schedule-table th {
  border-bottom: 1px solid #496a63;
  vertical-align: middle;
}

.schedule-table th {
  padding: 10px 15px 8px 0px;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.schedule-table td {
  padding: 10px 13px 10px 13px;
  color: #22a386;
}

.schedule-table tr:first-child td {
  color: #2d403d;
}

.schedule-caption li {
  display: inline-block;
  padding-left: 1.5em;
  position: relative;
  color: #2d403d;
  font-weight: bold;
  font-size: 13px;
}
.schedule-caption li::before {
  content: "※";
  position: absolute;
  top: 0.5px;
  left: 0;
  width: 0;
  height: 0;
}

.schedule-cat {
  display: inline-block;
  width: 40px;
  height: 20px;
  margin-right: 10px;
  padding-top: 4px;
  background-color: rgba(10, 146, 115, 0.72);
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .schedule-table {
    white-space: inherit;
  }
  .schedule-table td,
  .schedule-table th {
    padding: 2% 1%;
  }
  .schedule-table th {
    width: 105px;
    font-size: 12.5px;
  }
  .schedule-table td {
    font-size: 13px;
  }
}
table.style-01 {
  width: 100%;
  border-spacing: 1px;
  border-collapse: separate;
  background-color: #ccc;
}

table.style-01 td,
table.style-01 th {
  padding: 8px 20px;
}

table.style-01 th {
  font-weight: bold;
  text-align: left;
  background-color: #FAFAFA;
}

table.style-01 th span {
  font-size: 13px;
}

table.style-01 td {
  text-align: center;
  background-color: #ffffff;
}

table.style-01.-smoke th {
  text-align: center;
}

@media screen and (max-width: 640px) {
  table.style-01,
  table.style-01 th {
    white-space: inherit;
  }
  table.style-01.-smoke td,
  table.style-01.-smoke th {
    padding: 1%;
  }
  table.style-01 th.w20 {
    width: 20%;
  }
  table.style-01 th.w40 {
    width: 40%;
  }
  table.style-01.-medical-checkup-list td,
  table.style-01.-medical-checkup-list th {
    padding: 8px 10px;
  }
}
._image-fr {
  display: block;
  position: relative;
  float: right;
  margin-left: 30px;
  margin-bottom: 0 !important;
  text-align: center;
}

._image-fr img {
  max-width: 300px;
  height: auto;
  margin-bottom: 7px;
  border-radius: 3px;
}

._image-fr dd {
  padding-left: 20px;
  color: #1F2774;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3;
  text-align: left;
}

@media screen and (max-width: 640px) {
  ._image-fr {
    float: none;
    margin-left: 0;
    text-align: center;
  }
  ._image-fr img {
    width: auto;
    max-width: 100%;
    margin-bottom: 15px;
  }
}
._section-box-01 {
  position: relative;
  width: 1200px;
  margin: 0 auto 100px;
}

._section-box-02 {
  margin-bottom: 100px;
}

._text-box {
  position: relative;
  margin-bottom: 50px;
}

._text-box p {
  margin-bottom: 1em;
}

@media screen and (max-width: 640px) {
  ._section-box-01 {
    width: auto;
    margin: 0 6% 80px;
  }
  ._section-box-02 {
    width: auto;
    margin: 0 6% 80px;
  }
  ._section-box-02:last-child {
    margin-bottom: 0;
  }
  ._text-box {
    float: none;
    width: auto;
    padding: 0;
    border: none;
  }
}
.footer-banners {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 78px;
  padding: 45px 20px 40px;
  position: relative;
  z-index: 2;
  background-color: rgba(97, 167, 151, 0.2);
  position: relative;
}
.footer-banners::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  background: repeating-linear-gradient(135deg, transparent, transparent 8px, #fff 8px, #fff 10px);
  pointer-events: none;
}
.footer-banners::before {
  z-index: -1;
}
.footer-banners .__item {
  width: 350px;
  text-align: center;
}
.footer-banners .__item:last-of-type .__text img {
  margin-right: 8px;
}
.footer-banners .__item:last-of-type .__link {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 22px;
}
.footer-banners .__text {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.2em;
  color: #3b4b55;
}
.footer-banners .__text img {
  position: relative;
  top: -4px;
  margin-right: 5px;
}
.footer-banners .__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  border: solid 1px #61a797;
  background-color: #fff;
  line-height: 1;
  font-family: "Jost", sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: left;
  color: #61a797;
}

/*===============================================================================

	トップページ

===============================================================================*/
/* キービジュアル
************************************************************/
.top-branding {
  display: block;
  position: relative;
  min-width: 1240px;
  height: 850px;
}
@media screen and (max-width: 640px) {
  .top-branding {
    min-width: auto;
    width: 100%;
    height: auto;
    height: 620px;
  }
}

.top-branding .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 1200px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .top-branding .inner {
    display: block;
  }
}

.top-branding .bg {
  height: 850px;
}
@media screen and (max-width: 640px) {
  .top-branding .bg {
    height: 620px;
  }
}

.top-branding .__contents {
  width: 48%;
  max-width: 560px;
  padding-top: 370px;
}
@media screen and (max-width: 640px) {
  .top-branding .__contents {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 25px;
    padding: 220px 10px 0;
  }
}
.top-branding .catch {
  margin-bottom: 43px;
}
.top-branding .catch h2 {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  font-family: "Shippori Mincho", serif;
  font-size: 35px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .top-branding .catch h2 {
    font-size: 20px;
  }
}
.top-branding .__hr {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #fff;
  margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
  .top-branding .__hr {
    width: 335px;
    max-width: 100%;
    margin-bottom: 15px;
  }
}
.top-branding .__hr::before {
  content: "";
  position: absolute;
  top: -3.5px;
  left: -2px;
  width: 7px;
  height: 7px;
  border-radius: 10px;
  background-color: #fff;
}
.top-branding .__hr::after {
  content: "";
  position: absolute;
  top: -3.5px;
  right: -2px;
  width: 7px;
  height: 7px;
  border-radius: 10px;
  background-color: #fff;
}
.top-branding .__lead {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.94;
  letter-spacing: 2.7px;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .top-branding .__lead {
    font-size: 15px;
  }
}
.top-branding .__en {
  font-family: "orlando", sans-serif;
  font-size: 60px;
  color: #ebf2ba;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .top-branding .__en {
    font-size: 30px;
  }
}
.top-branding .__banner {
  position: absolute;
  bottom: 173px;
  right: 0;
}
@media screen and (max-width: 640px) {
  .top-branding .__banner {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 0 10px;
    height: 250px;
    bottom: 85px;
  }
}
@media screen and (max-width: 640px) {
  .top-branding .__schedule {
    display: none;
  }
}
.top-branding .__img01 {
  position: absolute;
  bottom: -112px;
  left: -122px;
}
@media screen and (max-width: 640px) {
  .top-branding .__img01 {
    bottom: 138px;
    left: 250px;
    right: auto;
    width: 110px;
    height: auto;
  }
}
.top-branding .__img02 {
  position: absolute;
  bottom: -204px;
  left: 37px;
}
@media screen and (max-width: 1200px) {
  .top-branding .__img02 {
    left: 26px;
  }
}
@media screen and (max-width: 640px) {
  .top-branding .__img02 {
    bottom: -25px;
    width: 160px;
  }
}
.top-branding .__img03 {
  position: absolute;
  bottom: -204px;
  right: -30px;
}
@media screen and (max-width: 1200px) {
  .top-branding .__img03 {
    right: -10px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 640px) {
  .top-branding .__img03 {
    bottom: -25px;
    right: auto;
    left: 190px;
    width: 160px;
  }
}

/* お知らせ
************************************************************/
.top-news {
  padding: 85px 0 79px 0;
}

.top-news ._section-box-01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  width: 1000px;
  max-width: 100%;
}
@media screen and (max-width: 640px) {
  .top-news ._section-box-01 {
    width: auto;
  }
}

.top-news .content-left {
  width: 180px;
  padding: 33px 0 0 12px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .top-news .content-left {
    width: 100%;
    padding: 33px 0 0 0px;
  }
}

.top-news .content-right {
  width: calc(100% - 180px - 30px);
  padding: 42px 0 0 6px;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .top-news .content-right {
    width: 100%;
    padding: 42px 0 0 0;
  }
}

.top-news .content-left h3 {
  margin-bottom: 10px;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 2.4px;
  text-align: center;
  color: #437e72;
}

.top-news .content-left .title-en {
  margin-bottom: 15px;
  font-size: 60px;
  line-height: 1;
  text-align: center;
  color: #b5e5da;
  font-family: "orlando", sans-serif;
  letter-spacing: 0.14em;
}

.top-news .content-left .bg {
  position: absolute;
  top: 27px;
  left: -90px;
  width: 146px;
  height: 146px;
  z-index: -1;
}

.top-news .news-list li:not(:last-of-type) {
  margin-bottom: 29px !important;
}

.top-news .news-list li a {
  display: inline-block;
  /* width: fit-content; */
  position: relative;
  width: 68%;
  color: #2d403d;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* border-bottom: 1px solid #2d403d; */
  box-sizing: border-box;
  overflow: hidden;
}

.top-news .news-list .date {
  margin-right: 29px;
  color: #2d403d;
}

@media screen and (max-width: 640px) {
  .top-news ._section-box-01 {
    display: block;
  }
  .top-news .content-left {
    width: auto;
  }
  .top-news .content-right {
    width: auto;
  }
  .top-news .content-left h3 {
    text-align: center;
  }
  .top-news .content-left .title-en {
    text-align: center;
  }
  .top-news .content-left .bg {
    left: 0;
    right: 0;
    margin: auto;
  }
  .top-news .news-list li {
    text-align: left;
  }
  .top-news .news-list li a {
    width: 100%;
    padding-top: 15px;
  }
}
/* 当院の特徴
************************************************************/
.top-feature {
  padding: 0 0 133px 0;
  position: relative;
}
.top-feature::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/top/feature-bg01.webp") no-repeat 50% 100%;
  background-size: 100% auto;
  mix-blend-mode: screen;
  background-blend-mode: screen;
  opacity: 0.6;
}

.top-feature ._section-box-01 {
  width: 100%;
  max-width: 1680px;
  margin-bottom: 0;
}

@media screen and (max-width: 1300px) {
  .top-feature ._section-box-01 {
    width: 100%;
  }
}
.top-feature .section-bg {
  position: absolute;
  top: 16px;
  left: 212px;
  z-index: 1;
}

.top-feature .section-title-ja {
  margin-bottom: 43px;
}

.top-feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  list-style: none;
  z-index: 100;
}

.top-feature-list li {
  width: 16.6666666667%;
  height: 430px;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
}

.top-feature-list li:nth-of-type(1) {
  background-image: url("../img/top/feature-01-bg.jpg");
}

.top-feature-list li:nth-of-type(2) {
  margin-top: 40px;
  background-image: url("../img/top/feature-02-bg.jpg");
}

.top-feature-list li:nth-of-type(3) {
  background-image: url("../img/top/feature-03-bg.jpg");
}

.top-feature-list li:nth-of-type(4) {
  margin-top: 40px;
  background-image: url("../img/top/feature-04-bg.jpg");
}

.top-feature-list li:nth-of-type(5) {
  background-image: url("../img/top/feature-05-bg.jpg");
}

.top-feature-list li:nth-of-type(6) {
  margin-top: 40px;
  background-image: url("../img/top/feature-06-bg.jpg");
}

.top-feature-list li a {
  display: block;
  position: relative;
  padding: 10px 10px;
}

.top-feature-list li a:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #596A63;
  opacity: 0.3;
  z-index: 0;
}

.top-feature-list li a:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #499C89;
  opacity: 0.9;
  z-index: 0;
}

.top-feature-list li a .bg {
  position: relative;
  height: 410px;
  padding: 55px 0 39px 0;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0);
  box-sizing: border-box;
  z-index: 10;
}

.top-feature-list li a:hover .bg {
  border: 1px solid #fff;
}

.top-feature-list li a i {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto 80px;
  color: #fff;
  font-size: 40px;
  font-family: "AGaramondPro-Italic", sans-serif;
  line-height: 120px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.2);
}

.top-feature-list li a p {
  margin-bottom: 33px;
  color: #fff;
  font-size: 18px;
  font-family: "Shippori Mincho", sans-serif;
}

.top-feature-list li a .button {
  display: inline-block;
  position: relative;
  padding: 10px 15px;
  margin: auto;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  font-family: "AGaramondPro-Regular", sans-serif;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transition: ease-in-out 0.1s;
}

@media screen and (max-width: 1680px) {
  .top-feature-list li a p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  .top-feature-list {
    width: 840px;
    margin: auto;
  }
  .top-feature-list li {
    width: 280px;
  }
  .top-feature-list li:nth-of-type(1),
  .top-feature-list li:nth-of-type(2),
  .top-feature-list li:nth-of-type(3) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .top-feature {
    padding: 0 0 80px 0;
  }
  .top-feature ._section-box-01 {
    width: auto;
  }
  .top-feature-list {
    width: 100%;
  }
  .top-feature .section-bg {
    display: none;
  }
  .top-feature-list li {
    width: 50%;
  }
  .top-feature-list li:nth-of-type(2),
  .top-feature-list li:nth-of-type(4),
  .top-feature-list li:nth-of-type(6) {
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .top-feature-list li {
    width: 100%;
  }
  .top-feature-list li:nth-of-type(4),
  .top-feature-list li:nth-of-type(5),
  .top-feature-list li:nth-of-type(6) {
    margin-bottom: 20px;
  }
}
/* 診療のご案内
************************************************************/
.top-medical {
  padding: 130px 0 166px 0;
  overflow: hidden;
}

.top-medical ._section-box-01 {
  position: relative;
  margin-bottom: 0;
}

.top-medical .bg-01 {
  position: absolute;
  right: -170px;
  top: -116px;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .top-medical .bg-01 {
    width: 70%;
    height: auto;
    right: -70px;
    top: -20px;
  }
}

.top-medical .section-title.-style-01 {
  margin-bottom: 15px;
}

.top-medical .section-title-ja {
  margin: 20px 0 90px;
  color: #437e72;
  font-size: 26px;
  letter-spacing: 0.15em;
  font-family: "Shippori Mincho", sans-serif;
}
@media screen and (max-width: 640px) {
  .top-medical .section-title-ja {
    margin: 20px 0 40px;
  }
}

.top-medical-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px;
  margin-bottom: 70px;
}
@media screen and (max-width: 640px) {
  .top-medical-cards {
    grid-template-columns: 1fr;
  }
}
.top-medical-cards .__card {
  position: relative;
}
.top-medical-cards .__card a {
  display: block;
  position: relative;
  min-height: 418px;
  background-color: #2e6357;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .top-medical-cards .__card a {
    padding: 30px 20px;
  }
}
.top-medical-cards .__card a::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 1px solid #fff;
  z-index: -1;
}
.top-medical-cards .__card a {
  position: relative;
}
.top-medical-cards .__card a::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 28%;
  background: repeating-linear-gradient(135deg, transparent, transparent 9px, rgba(255, 255, 255, 0.2) 9px, rgba(255, 255, 255, 0.2) 10px);
  pointer-events: none;
}
.top-medical-cards .__card:last-of-type a {
  background-color: #2c506f;
}
.top-medical-cards .__img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}
@media screen and (max-width: 640px) {
  .top-medical-cards .__img {
    height: 125px;
  }
}
.top-medical-cards .__title {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .top-medical-cards .__title {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.top-medical-cards .__en {
  margin-bottom: 25px;
  font-family: "segoe", sans-serif;
  font-size: 15px;
  line-height: 1.87;
  text-align: center;
  color: #d1b697;
}
@media screen and (max-width: 640px) {
  .top-medical-cards .__en {
    margin-bottom: 20px;
  }
}
.top-medical-cards .__text {
  width: 100%;
  max-width: 422px;
  margin: 0 auto 30px;
  text-align: left;
  font-size: 15px;
  line-height: 1.87;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .top-medical-cards .__text {
    padding-inline: 20px;
    font-size: 14px;
  }
}

.top-medical-subheading {
  margin: 0 auto 28px;
  position: relative;
  text-align: center;
}
.top-medical-subheading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #437e72;
}
.top-medical-subheading span {
  display: inline-block;
  margin: auto;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  color: #437e72;
  padding: 0 40px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

.top-medical-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  max-width: 1168px;
  margin: auto;
  z-index: 100;
}

.top-medical-list li {
  width: 20%;
}

.top-medical-list li a {
  display: block;
  width: 100%;
  height: 460px;
  padding: 38px 30px 0 30px;
  box-sizing: border-box;
  background-color: #fff;
}

.top-medical-list li:nth-of-type(1) a,
.top-medical-list li:nth-of-type(2) a {
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  border-left: 1px solid #efefef;
}

.top-medical-list li:nth-of-type(3) a {
  border: 1px solid #efefef;
  border-right: 1px solid #efefef;
}

.top-medical-list li:nth-of-type(4) a {
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  border-right: 1px solid #efefef;
}

.top-medical-list li:nth-of-type(5) a,
.top-medical-list li:nth-of-type(6) a {
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
}

.top-medical-list li:nth-of-type(7) a {
  border-bottom: 1px solid #efefef;
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
}

.top-medical-list .__img {
  text-align: center;
  display: block;
  margin: 0 auto 28px;
}

.top-medical-list li a h4 {
  margin-bottom: 27px;
}

.top-medical-list li a h4 .ja {
  display: block;
  position: relative;
  margin-bottom: 4px;
  color: #2d403d;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho", sans-serif;
  text-align: center;
}

.top-medical-list li a h4 .en {
  display: block;
  color: #2d403d;
  font-size: 13px;
  font-family: "AGaramondPro-Italic";
  text-align: center;
  letter-spacing: 0.1em;
}

.top-medical-list li a p {
  font-size: 15px;
  line-height: 1.87;
  letter-spacing: 0.05em;
  min-height: 130px;
}

.top-medical-list li a:hover {
  background: -moz-linear-gradient(top, rgb(152, 199, 216) 50%, rgb(123, 186, 207));
  background: -webkit-linear-gradient(top, rgb(152, 199, 216) 50%, rgb(123, 186, 207));
  background: linear-gradient(to bottom, rgb(152, 199, 216) 50%, rgb(123, 186, 207));
}

.top-medical-list li a:hover h4 .ja,
.top-medical-list li a:hover h4 .en,
.top-medical-list li a:hover p {
  color: #fff;
}

.top-medical-list .__btn {
  text-align: center;
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
  .top-medical-list li:nth-of-type(1) a {
    border-right: 1px solid #efefef;
  }
  .top-medical-list li:nth-of-type(3) a,
  .top-medical-list li:nth-of-type(5) a {
    border-right: 1px solid #efefef;
  }
  .top-medical-list li:nth-of-type(4) a {
    border-left: 1px solid #efefef;
  }
}
@media screen and (max-width: 640px) {
  .top-medical {
    padding: 60px 0 40px 0;
  }
  .top-medical .section-title.-style-01 {
    text-align: center;
  }
  .top-medical .section-title-ja {
    font-size: 20px;
    text-align: center;
  }
  .top-medical-list li {
    width: 50%;
  }
  .top-medical-list li a {
    height: auto;
    padding: 145px 20px 40px 20px;
  }
  .top-medical-list li:nth-of-type(2) a,
  .top-medical-list li:nth-of-type(4) a {
    border-right: 1px solid #efefef;
  }
  .top-medical-list li:nth-of-type(1) a,
  .top-medical-list li:nth-of-type(2) a,
  .top-medical-list li:nth-of-type(3) a,
  .top-medical-list li:nth-of-type(4) a {
    border-bottom: none;
  }
  .top-medical-list li:nth-of-type(4) a {
    border-left: none;
  }
}
@media screen and (max-width: 480px) {
  .top-medical {
    padding: 60px 0 40px 0;
  }
  .top-medical-list li {
    width: 100%;
  }
  .top-medical-list li a {
    padding: 110px 20px 40px 20px;
  }
  .top-medical-list li:nth-of-type(1) a h4 .ja:before {
    top: -69px;
  }
  .top-medical-list li:nth-of-type(2) a h4 .ja:before {
    top: -67px;
  }
  .top-medical-list li:nth-of-type(3) a h4 .ja:before {
    top: -72px;
  }
  .top-medical-list li:nth-of-type(4) a h4 .ja:before {
    top: -56px;
  }
  .top-medical-list li:nth-of-type(5) a h4 .ja:before {
    top: -70px;
  }
  .top-medical-list li:nth-of-type(6) a h4 .ja:before {
    top: -62px;
  }
  .top-medical-list li:nth-of-type(1) a {
    border-right: 1px solid #efefef;
  }
  .top-medical-list li:nth-of-type(4) a {
    border-left: 1px solid #efefef;
  }
  .top-medical-list li:nth-of-type(5) a {
    border-top: 1px solid #efefef;
    border-right: 1px solid #efefef;
  }
  .top-medical-list li:nth-of-type(6) a {
    border-top: none;
    border-right: 1px solid #efefef;
  }
}
/* ご挨拶
************************************************************/
.top-greeting {
  position: relative;
  padding: 122px 0 0 0;
}

.top-greeting .bg-01 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.top-greeting .bg-02 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 261px;
  background-color: #fafafa;
  z-index: 5;
}

.top-greeting ._section-box-01 {
  position: relative;
  width: 1150px;
  min-height: 850px;
  padding: 85px 107px 70px 515px;
  margin: auto;
  background: #fff;
  box-sizing: border-box;
  z-index: 100;
}
.top-greeting ._section-box-01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  width: 319px;
  height: 280px;
  background: url("../img/top/greeting-bg01.png") no-repeat 50% 50%;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .top-greeting ._section-box-01::before {
    display: none;
  }
}

.top-greeting .image-01 {
  position: absolute;
  top: -44px;
  left: -185px;
  width: 600px;
  height: 450px;
  z-index: 200;
}

.top-greeting .image-02 {
  position: absolute;
  top: 486px;
  left: -145px;
  width: 314px;
  height: 228px;
  z-index: 200;
}

.top-greeting .profile {
  position: absolute;
  top: 441px;
  left: 210px;
  width: 180px;
  text-align: center;
}

.top-greeting .profile .image {
  width: 150px;
  margin: 0 auto 24px;
}

.top-greeting .profile .image img {
  width: 100%;
  height: auto;
}

.top-greeting .profile .name {
  margin-bottom: 13px;
  color: #2d403d;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.05em;
  font-family: "Shippori Mincho", serif;
}

.top-greeting .profile .name span {
  font-size: 13px;
  letter-spacing: 0.05em;
  display: block;
}

.top-greeting .section-title.-style-01 {
  padding-right: 10px;
  margin-bottom: 9px;
  text-align: right;
}

.top-greeting .section-title-ja {
  padding-right: 27px;
  margin-bottom: 76px;
  text-align: right;
}

.top-greeting .message p {
  margin-bottom: 35px;
  color: #2d403d;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0;
}

@media screen and (max-width: 640px) {
  .top-greeting {
    padding: 40px 0 0 0;
  }
  .top-greeting ._section-box-01 {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0 6% 80px;
  }
  .top-greeting .section-title.-style-01 {
    padding-right: 0;
    text-align: center;
  }
  .top-greeting .section-title-ja {
    margin-bottom: 50px;
    text-align: center;
  }
  .top-greeting .bg-01 {
    display: none;
  }
  .top-greeting .image-01,
  .top-greeting .image-02 {
    display: none;
  }
  .top-greeting .profile {
    position: relative;
    top: 0;
    left: 0;
    width: 210px;
    margin: 0 auto 20px;
  }
  .top-greeting .profile .image {
    width: 100%;
  }
  .top-greeting .message p {
    margin-bottom: 16px;
    line-height: 1.75;
  }
}
/* コラム
************************************************************/
.top-column {
  padding: 145px 0 86px 0;
}

.top-column ._section-box-01 {
  margin-bottom: 0;
}

@media screen and (max-width: 1400px) {
  .top-column ._section-box-01 {
    width: 1100px;
  }
}
.top-column .section-title.-style-01 {
  position: relative;
  font-size: 60px;
  text-align: left;
}

.top-column .section-title.-style-01:after {
  content: "";
  position: absolute;
  top: 39px;
  left: 288px;
  width: 200px;
  height: 1px;
  background-color: #2d403d;
}

.top-column .section-title-ja {
  padding: 0 0 0 9px;
  margin: 0 0 49px 0;
  font-size: 18px;
  text-align: left;
}

.top-column .more-button {
  position: absolute;
  top: 24px;
  right: 0;
}

.top-column-list {
  display: flex;
  justify-content: space-between;
}

.top-column-list li {
  width: 44%;
}

.top-column-list li a {
  display: flex;
}

.top-column-list li .date {
  order: 2;
  width: 5%;
  box-sizing: border-box;
  padding: 9px 0 0 0;
}

.top-column-list li .date .text {
  display: block;
  color: #2d403d;
  line-height: 1;
  letter-spacing: 0.08em;
  transform: rotate(90deg);
}

.top-column-list li .date .text time {
  padding-right: 19px;
}

.top-column-list li .content {
  order: 1;
  width: 95%;
  box-sizing: border-box;
}

.top-column-list li .image {
  position: relative;
  margin-bottom: 28px;
}

.top-column-list li .image img {
  width: 100%;
  height: auto;
}

.top-column-list li .button {
  display: inline-block;
  position: absolute;
  right: 20px;
  bottom: 13px;
  color: #63a4c1;
  font-size: 13px;
  font-family: "AGaramondPro-Regular", sans-serif;
  line-height: 1;
  letter-spacing: 0.1em;
}

.top-column-list li .button span {
  position: relative;
}

.top-column-list li .button span:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -11px;
  width: 30px;
  height: 3px;
  background-color: #63a4c1;
}

.top-column-list li .description {
  padding: 0 8px 0 8px;
}

.top-column-list li .description h4 {
  margin-bottom: 22px;
  color: #2d403d;
  font-size: 20px;
  /*font-family: "Shippori Mincho", sans-serif;*/
}

.top-column-list li .description p {
  color: #2d403d;
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 640px) {
  .top-column {
    padding: 40px 0 86px 0;
  }
  .top-column ._section-box-01 {
    width: auto;
  }
  .top-column .section-title.-style-01 {
    text-align: center;
  }
  .top-column .section-title.-style-01:after {
    display: none;
  }
  .top-column .section-title-ja {
    margin-bottom: 20px;
    text-align: center;
  }
  .top-column .more-button {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto 30px;
    text-align: center;
  }
  .top-column-list {
    display: block;
  }
  .top-column-list li {
    width: 48%;
    margin-bottom: 30px;
  }
  .top-column-list li .date {
    width: auto;
    margin: 0 0 10px 0;
  }
  .top-column-list li .date .text {
    transform: none;
  }
  .top-column-list li .content {
    width: auto;
  }
  .top-column-list li a {
    display: block;
  }
  .top-column-list li .image {
    margin-bottom: 10px;
  }
  .top-column-list li .description h4 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 550px) {
  .top-column-list {
    display: block;
  }
  .top-column-list li {
    width: 100%;
  }
}
/* ペインクリニックとは
************************************************************/
.top-about {
  position: relative;
  padding: 90px 0 160px;
  position: relative;
}
.top-about::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 150px;
  background: repeating-linear-gradient(135deg, transparent, transparent 9px, rgba(255, 255, 255, 0.2) 9px, rgba(255, 255, 255, 0.2) 10px);
  pointer-events: none;
}
@media screen and (max-width: 640px) {
  .top-about {
    padding: 50px 0 30px;
  }
}
.top-about::before {
  z-index: 10;
}

.top-about-deco01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 698px;
  background: url("../img/top/about-bg01.png") no-repeat 50% 50%;
  background-size: cover;
}

.top-about-deco02 {
  position: absolute;
  top: 698px;
  left: 0;
  width: 100%;
  height: calc(100% - 698px);
  background: url("../img/top/about-bg02.png") no-repeat 50% 50%;
  background-size: cover;
}

.top-about-heading {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 90px;
}
@media screen and (max-width: 640px) {
  .top-about-heading {
    margin: 0 auto 60px;
  }
}
.top-about-heading .__en {
  margin-bottom: 20px;
  font-family: "orlando", sans-serif;
  font-size: 110px;
  line-height: 1;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .top-about-heading .__en {
    font-size: 50px;
  }
}
.top-about-heading .__jp {
  position: relative;
  text-align: right;
}
.top-about-heading .__jp span {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .top-about-heading .__jp span {
    font-size: 20px;
  }
}
.top-about-heading .__jp span::before {
  content: "";
  position: absolute;
  top: calc(50% + 4px);
  left: -120px;
  width: 100px;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .top-about-heading .__jp span::before {
    left: -75px;
    width: 50px;
  }
}

.top-about-subheading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 580px;
  height: 56px;
  margin: 0 auto 57px;
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: #fff;
  color: #2567a7;
  position: relative;
}
@media screen and (max-width: 640px) {
  .top-about-subheading {
    margin: 0 auto 30px;
    font-size: 18px;
  }
}
.top-about-subheading::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  border: 1px solid #fff;
}

.top-about-subheading-wrap {
  position: relative;
}
.top-about-subheading-wrap::before {
  content: "";
  position: absolute;
  inset: 79px 0 0 0;
  width: 88%;
  height: 100px;
  margin: auto;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 640px) {
  .top-about-subheading-wrap::before {
    display: none;
  }
}

.top-about-cards01 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 640px) {
  .top-about-cards01 {
    grid-template-columns: 346px;
    justify-content: center;
  }
}
.top-about-cards01 .__img {
  width: 100%;
}
.top-about-cards01 .__title {
  height: 70px;
  padding: 20px 10px;
  background-color: #76b3e9;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .top-about-cards01 .__title {
    height: 60px;
    padding: 14px 10px;
    font-size: 18px;
  }
}
.top-about-cards01 .__text {
  min-height: 225px;
  padding: 35px 25px 30px 25px;
  background-color: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .top-about-cards01 .__text {
    min-height: auto;
    padding: 20px 20px;
  }
}
.top-about-cards01 .__text p {
  font-size: 15px;
  line-height: 2.13;
  text-align: left;
  color: #2d403d;
}

.top-about-banner01 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}
.top-about-banner01 .__banner {
  width: 100%;
  max-width: 500px;
}
.top-about-banner01 .__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background: url("../img//common/icon-btn01-white.png") no-repeat calc(100% - 17px) 50%;
  background-size: 25px;
  background-color: #2368a7;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  transition: 0.2s;
}
.top-about-banner01 .__link:hover {
  opacity: 0.8;
}

.top-about-banner02 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.top-about-banner02 .__banner {
  width: 100%;
  max-width: 328px;
}
.top-about-banner02 .__link {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 120px;
  padding-top: 15px;
  background: url("../img//common/icon-btn01-white.png") no-repeat 50% calc(100% - 14px);
  background-size: 25px;
  background-color: #2186de;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  transition: 0.2s;
}
.top-about-banner02 .__link:hover {
  opacity: 0.8;
}

/* アクセス
************************************************************/
.top-access {
  display: flex;
}

.top-access .content-left {
  position: relative;
  width: 62%;
}

.top-access .content-left iframe {
  width: 100%;
  height: 740px;
  vertical-align: bottom;
}

.top-access .content-right {
  position: relative;
  width: 38%;
  padding: 46px 0 0 0;
  background-color: #459582;
  box-sizing: border-box;
  overflow: hidden;
}

.top-access .content-right .section-title.-style-01 {
  position: relative;
  color: #fff;
  font-size: 60px;
  text-align: left;
}

.top-access .content-right .section-title.-style-01:after {
  content: "";
  position: absolute;
  top: 39px;
  right: 93px;
  width: 200px;
  height: 1px;
  background-color: #fff;
}

@media screen and (max-width: 1420px) {
  .top-access .content-right .section-title.-style-01:after {
    width: 150px;
  }
}
.top-access .content-right .section-title-ja {
  padding: 0 0 0 9px;
  margin: 0 0 40px 0;
  color: #fff;
  font-size: 18px;
  text-align: left;
}

.top-access .bg {
  position: absolute;
  right: 0px;
  bottom: 0%;
  width: 405px;
  height: 319px;
}
.top-access .bg img {
  width: 100%;
  height: auto;
}

.top-access-info {
  max-width: 580px;
  padding: 0 0 0 50px;
  margin: 0 auto 0 0;
}

.top-access-info .item-01 {
  padding: 0 0 0 11px;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 640px) {
  .top-access-info .item-01 {
    padding: 0 0 0 0;
  }
}

.top-access-info .item-01 p {
  color: #fff;
  font-size: 15px;
}

.top-access-info .item-01 p span {
  font-size: 16px;
  font-weight: bold;
}

.top-access-info .item-02 {
  padding: 19px 0 0 12px;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 640px) {
  .top-access-info .item-02 {
    padding: 19px 0 0 0;
  }
}

.top-access-info .item-02 h4 {
  position: relative;
  color: #fff;
  padding: 0 0 0 35px;
  margin: 0 0 13px 0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
}

.top-access-info .item-02 h4:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 23px;
  background: url("../img/top/access-info-02-icon.png") no-repeat top center;
  background-size: contain;
}

.top-access-info .item-02 ul li {
  margin-bottom: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .top-access-info .item-02 ul li {
    font-size: 14px;
  }
}

.top-access-info .item-02 ul li:last-child {
  margin-bottom: 15px;
}

.top-access-info .item-03 {
  padding: 20px 0 0 15px;
}
@media screen and (max-width: 640px) {
  .top-access-info .item-03 {
    padding: 20px 0 0 0;
  }
}

.top-access-info .item-03 h4 {
  position: relative;
  padding: 0 0 0 35px;
  margin: 0 0 13px 0;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
}

.top-access-info .item-03 h4:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 21px;
  background: url("../img/top/access-info-03-icon.png") no-repeat top center;
}

.top-access-info .item-03 ul li {
  margin-bottom: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}

.top-access-info .item-03 ul li:last-child {
  margin-bottom: 15px;
}

@media screen and (max-width: 640px) {
  .top-access {
    display: block;
  }
  .top-access .content-left {
    width: auto;
  }
  .top-access .content-right {
    width: auto;
  }
  .top-access .content-left iframe {
    height: 400px;
  }
  .top-access .content-right .section-title.-style-01:after {
    display: none;
  }
  .top-access-info {
    padding: 0 20px;
  }
}
/*===============================================================================

	お知らせページ

===============================================================================*/
/* お知らせ一覧
************************************************************/
.archives-news .news-list > li {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
}

.archives-news .news-list > li .title {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: bold;
}

.archives-news .news-list > li .date {
  display: block;
}

.archives-news .news-list > li .content p strong {
  margin-left: 20px;
  color: #1F2774;
  font-size: 17.5px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*===============================================================================

	施設紹介ページ

===============================================================================*/
/* 当院の特徴
************************************************************/
.feature-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  max-width: 1168px;
  margin: auto;
  z-index: 100;
}

.feature-list .anchor {
  display: block;
  padding-top: 230px;
  margin-top: -230px;
}

.feature-list li {
  display: block;
  width: 32%;
  padding: 160px 30px 30px 30px;
  margin-bottom: 40px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-sizing: border-box;
}

.feature-list li h3 {
  position: relative;
  margin-bottom: 15px;
  color: #2d403d;
  font-size: 20px;
  font-family: "Shippori Mincho", sans-serif;
  text-align: center;
}

.feature-list li h3:before {
  content: "";
  position: absolute;
  top: -134px;
  left: 0;
  right: 0;
  width: 120px;
  height: 120px;
  margin: auto;
  background-repeat: no-repeat no-repeat;
  background-position: top center;
}

.feature-list li:nth-of-type(1) h3:before {
  background-image: url("../img/clinic/feature-number-01.png");
}

.feature-list li:nth-of-type(2) h3:before {
  background-image: url("../img/clinic/feature-number-02.png");
}

.feature-list li:nth-of-type(3) h3:before {
  background-image: url("../img/clinic/feature-number-03.png");
}

.feature-list li:nth-of-type(4) h3:before {
  background-image: url("../img/clinic/feature-number-04.png");
}

.feature-list li:nth-of-type(5) h3:before {
  background-image: url("../img/clinic/feature-number-05.png");
}

.feature-list li:nth-of-type(6) h3:before {
  background-image: url("../img/clinic/feature-number-06.png");
}

@media screen and (max-width: 640px) {
  .feature-list {
    display: block;
  }
  .feature-list .anchor {
    display: block;
    padding-top: 230px;
    margin-top: -230px;
  }
  .feature-list li {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* 医院紹介
************************************************************/
.clinic-introduction {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.clinic-introduction .flexslider {
  float: left;
  position: relative;
  width: 78%;
}

.clinic-introduction .flexslider li .text {
  display: block;
  position: relative;
  width: fit-content;
  padding: 8px 10px;
  margin-top: -60px;
  margin-left: 20px;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.9);
}

.clinic-introduction .flex-control-thumbs .flex-active img {
  border: 5px solid #aaa;
}

.clinic-introduction .flex-control-nav.flex-control-thumbs {
  position: absolute;
  top: 0;
  right: -28%;
  width: 25%;
}

.clinic-introduction .flex-control-thumbs li {
  position: relative;
  width: 46%;
  margin: 0 0 2% 4%;
  background-color: #fff;
}

.flex-control-thumbs li:nth-child(5n) {
  padding-right: 0;
}

@media screen and (max-width: 640px) {
  .clinic-introduction {
    width: auto;
    /* margin-bottom: 60px; */
    margin: 0 6% 60px;
  }
  .clinic-introduction .flexslider {
    float: none;
    width: 100%;
  }
  .clinic-introduction .flexslider li .text {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    text-align: center;
  }
  .clinic-introduction .flex-control-nav.flex-control-thumbs {
    position: relative;
    top: auto;
    right: auto;
    bottom: 7%;
    width: auto;
    z-index: 2;
  }
  .clinic-introduction .flex-control-thumbs li {
    position: relative;
    width: 14.3%;
    margin: 0 0 1% 2%;
  }
  .clinic-introduction .flex-control-thumbs img {
    border: 3px solid #e0e0e0;
  }
}
/* 医院概要
************************************************************/
.clinic-information {
  position: relative;
  font-size: 14.5px;
}

.clinic-information ul {
  margin-bottom: 15px;
}

.clinic-information li {
  padding: 8px 0;
  border-bottom: 1px solid #E5E6EF;
}

.clinic-information li:first-child {
  padding: 0 0 8px 0;
}

.clinic-information li:last-child {
  border: none;
}

.clinic-information dl:after {
  content: "";
  display: block;
  clear: both;
}

.clinic-information dt {
  float: left;
  width: 25%;
  padding-left: 2px;
  color: #63a4c1;
  font-weight: bold;
  box-sizing: border-box;
}

.clinic-information dd {
  float: left;
  width: 75%;
}

.clinic-information .schedule-table {
  width: 100%;
  font-size: 14px;
  border: 1px solid #e4e4e4;
}

.clinic-information .schedule-table tr:first-child th,
.clinic-information .schedule-table tr:first-child td {
  font-weight: bold;
  background-color: #d6e8f0;
}

.clinic-information .schedule li {
  border-bottom: none;
}

@media screen and (max-width: 640px) {
  .clinic-information dt {
    width: 30%;
  }
  .clinic-information dd {
    width: 70%;
  }
  .clinic-information .schedule .schedule-table {
    width: 100%;
  }
  .clinic-information dd span {
    display: block;
  }
}
/*===============================================================================

	健康診査ページ

===============================================================================*/
._section-box-02.section-medical-checkup {
  width: 960px;
  margin: 0 auto 100px;
}

@media screen and (max-width: 640px) {
  ._section-box-02.section-medical-checkup {
    width: auto;
    margin: 0 6% 80px;
  }
}
/*===============================================================================

	ショートコード

===============================================================================*/
/* 表示切り替え用 */
._pc-inline {
  display: inline !important;
}

._pc-table {
  display: none !important;
}

._sp {
  display: none !important;
}

._sp-inline {
  display: none !important;
}

._sp-inline-ip {
  display: none !important;
}

._sp-table {
  display: none !important;
}

@media screen and (max-width: 640px) {
  ._pc {
    display: none !important;
  }
  ._pc-inline {
    display: none !important;
  }
  ._pc-table {
    display: table !important;
  }
  ._sp {
    display: block !important;
  }
  ._sp-inline {
    display: inline !important;
  }
  ._sp-table {
    display: table !important;
  }
  ._sp-center {
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  ._sp-inline-ip {
    display: inline !important;
  }
}
/* 汎用的なもの */
._left {
  text-align: left !important;
}

._center {
  text-align: center !important;
}

._right {
  text-align: right;
}

._clear {
  clear: both;
}

._clearfix:after {
  display: block;
  clear: both;
  content: "";
}

._indent {
  margin-left: 1em !important;
  text-indent: -1em;
}

._vertical-top {
  vertical-align: top;
}

._vertical-middle {
  vertical-align: middle;
}

._vertical-bottom {
  vertical-align: bottom;
}

._fr {
  float: right;
}

._fl {
  float: left;
}

._fr10 {
  float: right;
  margin-left: 10px;
}

._fr15 {
  float: right;
  margin-left: 15px;
}

._fr30 {
  float: right;
  margin-left: 15px;
}

._fl10 {
  float: left;
  margin-right: 10px;
}

._fl15 {
  float: left;
  margin-right: 15px;
}

._fl30 {
  float: left;
  margin-right: 30px;
}

/* カラー */
._color-red {
  color: #f33;
}

._color-pink {
  color: #ed8c96;
}

._color-blue {
  color: #00408f;
}

._color-green {
  color: #479f9d;
}

._color-ore {
  color: #ff8327;
}

._color-yellow {
  color: #ffeb8b;
}

._color-beige {
  color: #dac58b;
}

._color-brown {
  color: #9b8052;
}

._color-navy {
  color: #1f2774;
}

._color-black {
  color: #3e3a39;
}

/* フォントサイズ */
._text10 {
  font-size: 10px;
}

._text11 {
  font-size: 11px;
}

._text12 {
  font-size: 12px;
}

._text13 {
  font-size: 13px;
}

._text14 {
  font-size: 14px;
}

._text15 {
  font-size: 15px;
}

._text16 {
  font-size: 16px;
}

._text17 {
  font-size: 17px;
}

._text18 {
  font-size: 18px;
}

._text19 {
  font-size: 19px;
}

._text20 {
  font-size: 20px;
}

._text21 {
  font-size: 21px;
}

._text22 {
  font-size: 22px;
}

._text23 {
  font-size: 23px;
}

._text24 {
  font-size: 24px;
}

._text25 {
  font-size: 25px;
}

._text26 {
  font-size: 26px;
}

._text27 {
  font-size: 27px;
}

._text28 {
  font-size: 28px;
}

._text29 {
  font-size: 29px;
}

._text30 {
  font-size: 30px;
}

._text31 {
  font-size: 31px;
}

._text32 {
  font-size: 32px;
}

._text33 {
  font-size: 33px;
}

._text34 {
  font-size: 34px;
}

._text35 {
  font-size: 35px;
}

._text36 {
  font-size: 36px;
}

._text37 {
  font-size: 37px;
}

._text38 {
  font-size: 38px;
}

._text39 {
  font-size: 39px;
}

._text40 {
  font-size: 40px;
}

/* フォントウェイト */
._bold {
  font-weight: 700;
}

/* 幅・余白 */
._w010par {
  width: 10%;
}

._w020par {
  width: 20%;
}

._w025par {
  width: 25%;
}

._w050par {
  width: 50%;
}

._w075par {
  width: 75%;
}

._w100par {
  width: 100%;
}

._w010 {
  width: 10px;
}

._w020 {
  width: 20px;
}

._w030 {
  width: 30px;
}

._w040 {
  width: 40px;
}

._w050 {
  width: 50px;
}

._w060 {
  width: 60px;
}

._w070 {
  width: 70px;
}

._w080 {
  width: 80px;
}

._w090 {
  width: 90px;
}

._w100 {
  width: 100px;
}

._w110 {
  width: 110px;
}

._w120 {
  width: 120px;
}

._w130 {
  width: 130px;
}

._w140 {
  width: 140px;
}

._w150 {
  width: 150px;
}

._w160 {
  width: 160px;
}

._w170 {
  width: 170px;
}

._w180 {
  width: 180px;
}

._w190 {
  width: 190px;
}

._w200 {
  width: 200px;
}

._w210 {
  width: 210px;
}

._w220 {
  width: 220px;
}

._w230 {
  width: 230px;
}

._w240 {
  width: 240px;
}

._w250 {
  width: 250px;
}

._w255 {
  width: 255px;
}

._w260 {
  width: 260px;
}

._w270 {
  width: 270px;
}

._w280 {
  width: 280px;
}

._w290 {
  width: 290px;
}

._w300 {
  width: 300px;
}

._w305 {
  width: 305px;
}

._w310 {
  width: 310px;
}

._w320 {
  width: 320px;
}

._w330 {
  width: 330px;
}

._w340 {
  width: 340px;
}

._w350 {
  width: 350px;
}

._w360 {
  width: 360px;
}

._w365 {
  width: 365px;
}

._w370 {
  width: 370px;
}

._w380 {
  width: 380px;
}

._w390 {
  width: 390px;
}

._w400 {
  width: 400px;
}

._w410 {
  width: 400px;
}

._w415 {
  width: 415px;
}

._w420 {
  width: 420px;
}

._w430 {
  width: 430px;
}

._w435 {
  width: 435px;
}

._w440 {
  width: 440px;
}

._w450 {
  width: 450px;
}

._w460 {
  width: 460px;
}

._w470 {
  width: 470px;
}

._w480 {
  width: 480px;
}

._w490 {
  width: 490px;
}

._w500 {
  width: 500px;
}

._w510 {
  width: 510px;
}

._w520 {
  width: 520px;
}

._w530 {
  width: 530px;
}

._w540 {
  width: 540px;
}

._w550 {
  width: 550px;
}

._w560 {
  width: 560px;
}

._w570 {
  width: 570px;
}

._w580 {
  width: 580px;
}

._w590 {
  width: 590px;
}

._w600 {
  width: 600px;
}

._w610 {
  width: 610px;
}

._w620 {
  width: 620px;
}

._w630 {
  width: 630px;
}

._w640 {
  width: 640px;
}

._w650 {
  width: 650px;
}

._w660 {
  width: 660px;
}

._w670 {
  width: 670px;
}

._w680 {
  width: 680px;
}

._w690 {
  width: 690px;
}

._w700 {
  width: 700px;
}

._w710 {
  width: 710px;
}

._w720 {
  width: 720px;
}

._w730 {
  width: 730px;
}

._w740 {
  width: 740px;
}

._w750 {
  width: 750px;
}

._w760 {
  width: 760px;
}

._w765 {
  width: 765px;
}

._w960 {
  width: 960px;
}

._w980 {
  width: 980px;
}

._h030 {
  height: 30px;
}

._h180 {
  height: 180px;
}

._h190 {
  height: 190px;
}

._h200 {
  height: 200px;
}

._h240 {
  height: 240px;
}

._h250 {
  height: 250px;
}

._h280 {
  height: 280px;
}

._h300 {
  height: 300px;
}

._h350 {
  height: 350px;
}

._mt00 {
  margin-top: 0 !important;
}

._mt01 {
  margin-top: 1px;
}

._mt02 {
  margin-top: 2px;
}

._mt03 {
  margin-top: 3px;
}

._mt04 {
  margin-top: 4px;
}

._mt05 {
  margin-top: 5px;
}

._mt06 {
  margin-top: 6px;
}

._mt07 {
  margin-top: 7px;
}

._mt08 {
  margin-top: 8px;
}

._mt09 {
  margin-top: 9px;
}

._mt10 {
  margin-top: 10px;
}

._mt15 {
  margin-top: 15px;
}

._mt20 {
  margin-top: 20px;
}

._mt25 {
  margin-top: 25px;
}

._mt30 {
  margin-top: 30px;
}

._mt35 {
  margin-top: 35px;
}

._mt40 {
  margin-top: 40px;
}

._mt45 {
  margin-top: 45px;
}

._mt50 {
  margin-top: 50px;
}

._mt60 {
  margin-top: 60px;
}

._mt70 {
  margin-top: 70px;
}

._mt80 {
  margin-top: 80px;
}

._mt90 {
  margin-top: 90px;
}

._mt100 {
  margin-top: 100px;
}

._mt110 {
  margin-top: 110px;
}

._mt120 {
  margin-top: 120px;
}

._mr00 {
  margin-right: 0 !important;
}

._mr01 {
  margin-right: 1px;
}

._mr02 {
  margin-right: 2px;
}

._mr03 {
  margin-right: 3px;
}

._mr04 {
  margin-right: 4px;
}

._mr05 {
  margin-right: 5px;
}

._mr06 {
  margin-right: 6px;
}

._mr07 {
  margin-right: 7px;
}

._mr08 {
  margin-right: 8px;
}

._mr09 {
  margin-right: 9px;
}

._mr10 {
  margin-right: 10px;
}

._mr15 {
  margin-right: 15px;
}

._mr20 {
  margin-right: 20px;
}

._mr25 {
  margin-right: 25px;
}

._mr30 {
  margin-right: 30px;
}

._mr35 {
  margin-right: 35px;
}

._mr40 {
  margin-right: 40px;
}

._mr45 {
  margin-right: 45px;
}

._mr50 {
  margin-right: 50px;
}

._mr60 {
  margin-right: 60px;
}

._mr70 {
  margin-right: 70px;
}

._mr80 {
  margin-right: 80px;
}

._mr90 {
  margin-right: 90px;
}

._mr100 {
  margin-right: 100px;
}

._mb00 {
  margin-bottom: 0 !important;
}

._mb01 {
  margin-bottom: 1px;
}

._mb02 {
  margin-bottom: 2px;
}

._mb03 {
  margin-bottom: 3px;
}

._mb04 {
  margin-bottom: 4px;
}

._mb05 {
  margin-bottom: 5px;
}

._mb06 {
  margin-bottom: 6px;
}

._mb07 {
  margin-bottom: 7px;
}

._mb08 {
  margin-bottom: 8px;
}

._mb09 {
  margin-bottom: 9px;
}

._mb10 {
  margin-bottom: 10px;
}

._mb15 {
  margin-bottom: 15px;
}

._mb20 {
  margin-bottom: 20px;
}

._mb25 {
  margin-bottom: 25px;
}

._mb30 {
  margin-bottom: 30px;
}

._mb35 {
  margin-bottom: 35px;
}

._mb40 {
  margin-bottom: 40px;
}

._mb45 {
  margin-bottom: 45px;
}

._mb50 {
  margin-bottom: 50px;
}

._mb60 {
  margin-bottom: 60px;
}

._mb70 {
  margin-bottom: 70px;
}

._mb80 {
  margin-bottom: 80px;
}

._mb90 {
  margin-bottom: 90px;
}

._mb100 {
  margin-bottom: 100px;
}

._ml00 {
  margin-left: 0 !important;
}

._ml01 {
  margin-left: 1px;
}

._ml02 {
  margin-left: 2px;
}

._ml03 {
  margin-left: 3px;
}

._ml04 {
  margin-left: 4px;
}

._ml05 {
  margin-left: 5px;
}

._ml06 {
  margin-left: 6px;
}

._ml07 {
  margin-left: 7px;
}

._ml08 {
  margin-left: 8px;
}

._ml09 {
  margin-left: 9px;
}

._ml10 {
  margin-left: 10px;
}

._ml12 {
  margin-left: 12px;
}

._ml15 {
  margin-left: 15px;
}

._ml20 {
  margin-left: 20px;
}

._ml25 {
  margin-left: 25px;
}

._ml30 {
  margin-left: 30px;
}

._ml35 {
  margin-left: 35px;
}

._ml40 {
  margin-left: 40px;
}

._ml45 {
  margin-left: 45px;
}

._ml50 {
  margin-left: 50px;
}

._ml60 {
  margin-left: 60px;
}

._ml70 {
  margin-left: 70px;
}

._ml80 {
  margin-left: 80px;
}

._ml90 {
  margin-left: 90px;
}

._ml100 {
  margin-left: 100px;
}

._ml140 {
  margin-left: 140px;
}

._ml160 {
  margin-left: 160px;
}

._ma10 {
  margin: 10px;
}

._ma15 {
  margin: 15px;
}

._ma-auto {
  margin-left: auto;
  margin-right: auto;
}

._pt00 {
  padding-top: 0 !important;
}

._pt01 {
  padding-top: 1px;
}

._pt02 {
  padding-top: 2px;
}

._pt03 {
  padding-top: 3px;
}

._pt04 {
  padding-top: 4px;
}

._pt05 {
  padding-top: 5px;
}

._pt06 {
  padding-top: 6px;
}

._pt07 {
  padding-top: 7px;
}

._pt08 {
  padding-top: 8px;
}

._pt09 {
  padding-top: 9px;
}

._pt10 {
  padding-top: 10px;
}

._pt15 {
  padding-top: 15px;
}

._pt20 {
  padding-top: 20px;
}

._pt25 {
  padding-top: 25px;
}

._pt30 {
  padding-top: 30px;
}

._pt35 {
  padding-top: 35px;
}

._pt40 {
  padding-top: 40px;
}

._pt45 {
  padding-top: 45px;
}

._pt50 {
  padding-top: 50px;
}

._pt60 {
  padding-top: 60px;
}

._pt70 {
  padding-top: 70px;
}

._pt80 {
  padding-top: 80px;
}

._pt90 {
  padding-top: 90px;
}

._pt100 {
  padding-top: 100px;
}

._pt120 {
  padding-top: 120px;
}

._pr00 {
  padding-right: 0 !important;
}

._pr01 {
  padding-right: 1px;
}

._pr02 {
  padding-right: 2px;
}

._pr03 {
  padding-right: 3px;
}

._pr04 {
  padding-right: 4px;
}

._pr05 {
  padding-right: 5px;
}

._pr06 {
  padding-right: 6px;
}

._pr07 {
  padding-right: 7px;
}

._pr08 {
  padding-right: 8px;
}

._pr09 {
  padding-right: 9px;
}

._pr10 {
  padding-right: 10px;
}

._pr15 {
  padding-right: 15px;
}

._pr20 {
  padding-right: 20px;
}

._pr25 {
  padding-right: 25px;
}

._pr30 {
  padding-right: 30px;
}

._pr35 {
  padding-right: 35px;
}

._pr40 {
  padding-right: 40px !important;
}

._pr45 {
  padding-right: 45px;
}

._pr50 {
  padding-right: 50px;
}

._pr60 {
  padding-right: 60px;
}

._pr70 {
  padding-right: 70px;
}

._pr80 {
  padding-right: 80px;
}

._pr90 {
  padding-right: 90px;
}

._pr100 {
  padding-right: 100px;
}

._pb00 {
  padding-bottom: 0 !important;
}

._pb01 {
  padding-bottom: 1px;
}

._pb02 {
  padding-bottom: 2px;
}

._pb03 {
  padding-bottom: 3px;
}

._pb04 {
  padding-bottom: 4px;
}

._pb05 {
  padding-bottom: 5px;
}

._pb06 {
  padding-bottom: 6px;
}

._pb07 {
  padding-bottom: 7px;
}

._pb08 {
  padding-bottom: 8px;
}

._pb09 {
  padding-bottom: 9px;
}

._pb10 {
  padding-bottom: 10px;
}

._pb15 {
  padding-bottom: 15px;
}

._pb20 {
  padding-bottom: 20px;
}

._pb25 {
  padding-bottom: 25px;
}

._pb30 {
  padding-bottom: 30px;
}

._pb35 {
  padding-bottom: 35px;
}

._pb40 {
  padding-bottom: 40px;
}

._pb45 {
  padding-bottom: 45px;
}

._pb50 {
  padding-bottom: 50px;
}

._pb60 {
  padding-bottom: 60px;
}

._pb70 {
  padding-bottom: 70px;
}

._pb80 {
  padding-bottom: 80px;
}

._pb90 {
  padding-bottom: 90px;
}

._pb100 {
  padding-bottom: 100px;
}

._pl00 {
  padding-left: 0 !important;
}

._pl01 {
  padding-left: 1px;
}

._pl02 {
  padding-left: 2px;
}

._pl03 {
  padding-left: 3px;
}

._pl04 {
  padding-left: 4px;
}

._pl05 {
  padding-left: 5px;
}

._pl06 {
  padding-left: 6px;
}

._pl07 {
  padding-left: 7px;
}

._pl08 {
  padding-left: 8px;
}

._pl09 {
  padding-left: 9px;
}

._pl10 {
  padding-left: 10px;
}

._pl15 {
  padding-left: 15px;
}

._pl20 {
  padding-left: 20px;
}

._pl25 {
  padding-left: 25px;
}

._pl30 {
  padding-left: 30px;
}

._pl35 {
  padding-left: 35px;
}

._pl40 {
  padding-left: 40px;
}

._pl45 {
  padding-left: 45px;
}

._pl50 {
  padding-left: 50px;
}

._pl60 {
  padding-left: 60px;
}

._pl70 {
  padding-left: 70px;
}

._pl80 {
  padding-left: 80px;
}

._pl90 {
  padding-left: 90px;
}

._pl100 {
  padding-left: 100px;
}

._pa01 {
  padding: 1px;
}

._pa02 {
  padding: 2px;
}

._pa03 {
  padding: 3px;
}

._pa04 {
  padding: 4px;
}

._pa05 {
  padding: 5px;
}

._pa10 {
  padding: 10px;
}

._pa15 {
  padding: 15px;
}

@media screen and (max-width: 640px) {
  ._sp-mb00 {
    margin-bottom: 0 !important;
  }
  ._sp-mr00 {
    margin-right: 0 !important;
  }
  ._sp-ml00 {
    margin-left: 0 !important;
  }
  ._sp-mt00 {
    margin-top: 0 !important;
  }
  ._sp-pb00 {
    padding-bottom: 0 !important;
  }
  ._sp-pr00 {
    padding-right: 0 !important;
  }
  ._sp-pl00 {
    padding-left: 0 !important;
  }
  ._sp-pt00 {
    padding-top: 0 !important;
  }
}
