@charset "utf-8";

/* -------------
  - *基本設定
  - *header
  - *固定ボタン
  - *nav
  - *pulldown
  - *ページトップボタン
  - *footer
  - *h1
  - *ボタン
  - *schedule（MPCLOUD）
  - *common
------------- */

:root {
  --text-color: #333;
  /*メイン色*/
  --main-color: #319eb1;
  /*サブ色*/
  --sub-color: #479776;
  /*背景色*/
  --bg-color: #e3f2f4;
  /*境界線色*/
  --border-color: #88c2c9;
  /*font*/
  --font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body,
.nav_wrap.fixed,
header,
footer {
  min-width: 1240px;
}
@media (min-width: 641px) and (max-width: 1024px) {
  body,
  .nav_wrap.fixed,
  header,
  footer {
    min-width: 1300px;
  }
}
@media screen and (max-width: 640px) {
  body,
  .nav_wrap.fixed,
  header,
  footer {
    min-width: 100%;
  }
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  position: relative;
}

@media screen and (max-width: 640px) {
  body {
    font-size: 14px;
  }

  /* ナビ展開時スクロール禁止処理 */
  body.nav-open {
    overflow: hidden !important;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

iframe {
  max-width: 100%;
  vertical-align: top;
}

table {
  width: 100%;
}

a {
  color: var(--main-color);
  text-decoration: none;
  transition: color .3s, background .3s, opacity .3s;
}
a:hover {
  color: var(--sub-color);
}

/*tel*/
[href^="tel"]:hover {
  cursor: default;
}
a[href="tel:準備中"] {
  pointer-events: none;
}

::selection {
  background-color: rgb(0 0 0 / .2);
}
::-moz-selection {
  background-color: rgb(0 0 0 / .2);
}

@media print{
  html {
    -webkit-print-color-adjust: exact;
  }
  body {
    zoom: 80%;
  }
  .fixed {
    position: inherit !important;
  }
}


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

  *診療時間表

==================================================================*/
.office_hour_table {
  background: #fff;
  line-height: 1.5;
}

.office_hour_table th,
.office_hour_table td {
  vertical-align: middle;
  text-align: center;
  padding: 15px 3px;
}

.office_hour_table tr:not(:first-child) th,
.office_hour_table tr:not(:first-child) td {
  white-space: nowrap;
}

.office_hour_table tr:not(:last-child) th,
.office_hour_table tr:not(:last-child) td {
  border-bottom: 1px solid #efefef;
}

.office_hour_table th {
  width: 27%;
}

.office_hour_table tr:not(:first-child) th {
  letter-spacing: .04em;
  border-right: 1px solid #efefef;
}

.office_hour_table tr:not(:first-child) td {
  color: #319eb1;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.office_hour_asterisk {
  font-size: 12px;
  margin-right: -1.1em;
}

.office_hour_note {
  margin-top: 20px;
}

@media print, screen and (min-width: 641px) {
  .office_hour_table tr:first-child th,
  .office_hour_table tr:first-child td {
    padding: 9px 3px;
  }
}

@media screen and (max-width: 640px) {
  .office_hour_table {
    font-size: clamp(12px, 3.7vw, 14px);
  }
  .office_hour_table th,
  .office_hour_table td {
    padding: 10px 3px;
  }
}


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

  *header

==================================================================*/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.header_inner {
  display: flex;
  justify-content: space-between;
}

.header_logo {
  max-width: 430px;
  width: 23%;
}

.header_logo a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: #9dd1da;
}

@media (hover: hover) {
  .header_logo a:hover {
    opacity: 0.8;
  }
}

.header_right {
  width: calc(100% - 23%);
  display: flex;
  justify-content: flex-end;
  padding-left: 1.6%;
}

.header_info {
  width: calc(100% - 260px - 2.4% - 13%);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  gap: 10px 0;
}

.header h1 {
  width: 100%;
  text-align: right;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.header_info_address {
  font-size: 15px;
  line-height: 1.5;
}

.header_info_tel {
  flex-shrink: 0;
  width: 260px;
  min-height: 80px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-18deg, #75cad9, #9cd0d9);
  color: #fff;
  margin-left: 2.4%;
}

.header_info_tel_tit {
  font-size: 15px;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  padding-inline: 30px;
  margin-bottom: 10px;
  position: relative;
}

.header_info_tel_tit::before,
.header_info_tel_tit::after {
  display: block;
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 0;
}

.header_info_tel_tit::before {
  transform: rotate(66deg);
  transform-origin: right bottom;
  left: 0;
}

.header_info_tel_tit::after {
  transform: rotate(-66deg);
  transform-origin: left bottom;
  right: 0;
}

.header_info_tel_num {
  font-size: 28px;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
  padding-left: 26px;
  background: url(../images/icon_tel_white.png) left center/auto 22px no-repeat;
}

.header_btn {
  width: 13%;
  flex-shrink: 0;
  display: flex;
}

.header_btn li {
  width: 50%;
  font-size: 35px;
  line-height: 1;
  letter-spacing: 0;
}

.header_btn li a {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
}

@media (hover: hover) {
  .header_btn li a:hover {
    opacity: 0.8;
  }
}

.header_btn .header_btn_line a {
  background: #3eb134;
}

.header_btn .header_btn_instagram a {
  background: linear-gradient(45deg, #fbe18a 0%, #fcbb45 20%, #f75274 38%, #d53692 52%, #8f39ce 74%, #5b4fe9 100%);
}

@media screen and (max-width: 640px) {
  header {
    height: 60px;
  }

  .header_inner {
    display: none!important;
  }
}


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

  *固定ボタン

==================================================================*/
.fixed_btn {
  position: fixed;
  right: 110px;
  bottom: 0;
  z-index: 11;
  display: flex;
  gap: 0 5px;
}

.fixed_btn a,
.fixed_btn > * {
  color: #fff;
}

.fixed_btn > * {
  flex-shrink: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 95px;
  background: #f0b04b;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  padding: 0 30px;
}

.fixed_btn_head {
  display: block;
  font-size: 15px;
}

.fixed_btn_head_fsL {
  font-size: 20px;
}

.fixed_btn_head {
  margin-left: 55px;
}

.fixed_btn_head > * {
  display: block;
  width: fit-content;
  padding-inline: 3px;
  margin-inline: auto;
  position: relative;
}

.fixed_btn_head > *::before,
.fixed_btn_head > *::after {
  display: block;
  content: '';
  width: 1px;
  height: 22px;
  background: currentColor;
  transform-origin: left bottom;
  position: absolute;
  bottom: 0;
}

.fixed_btn_head > *::before {
  transform: rotate(-24deg);
  left: 0;
}

.fixed_btn_head > *::after {
  transform: rotate(24deg);
  right: 0;
}

.fixed_btn_tit {
  display: flex;
  align-items: center;
  gap: 0 15px;
  font-size: 24px;
  line-height: 1;
}

.fixed_btn_icon {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
}

.fixed_btn_icon i {
  font-size: 26px;
}

.fixed_btn_line {
  background: #68b162;
}

.fixed_btn_line .fixed_btn_icon i {
  color: #68b162;
}

.fixed_btn_line .fixed_btn_head {
  font-size: 12px;
}

.fixed_btn_line .fixed_btn_tit {
  font-size: 20px;
}

.fixed_btn_tel {
  background: linear-gradient(-18deg, #75cad9, #9cd0d9);
}

.fixed_btn_tel .fixed_btn_tit {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: .1em;
}

@media (hover: hover) {
  .fixed_btn a:hover {
    background-color: var(--sub-color)!important;
  }
}

@media screen and (max-width: 640px) {
  .fixed_btn {
    display: none!important;
  }
}


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

  *nav

================================================================================================================================== */
.nav_wrap {
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}

.nav_wrap {
  position: absolute;
  top: 116px;
  left: 0;
  z-index: 12;
  width: 100%;
  height: auto;
  opacity: 1;
}

/* スクロール時設定 */
.nav_wrap.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: auto;
  background: #fff;
}

.nav_wrap a {
  color: var(--text-color);
}

/* ------ ナビゲーション ------ */
nav {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  background: rgb(255 255 255 / .8);
}

.nav_list > li {
  position: relative;
  z-index: 1;
}

/* ==============================================
  *PC nav
============================================== */
@media print, screen and (min-width: 641px) {
  nav {
    border-radius: 20px;
  }

  .nav_list {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 40px;
  }

  .nav_list > li {
    flex-shrink: 0;
  }

  .nav_list > li:not(:first-child)::before {
    content: "/";
    letter-spacing: 0;
    position: absolute;
    left: -20px;
    top: 5px;
    transform: translateX(-50%);
  }

  .nav_list > li > a,
  .nav_list > li > p {
    display: block;
    font-size: 16px;
    padding-block: 5px;
    text-align: center;
  }

  /* 英語 */
  .nav_list_en {
    display: block;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    color: #3bc2d9;
    font-size: 12px;
    text-align: center;
  }

  /* ----- スマホ用非表示 ----- */
  .btn_menu, .sp_btn_area, .sp_cta_btn, .pulldown_btn {
    display: none!important;
  }
}

/* ==============================================
  *SP nav
============================================== */
@media screen and (max-width: 640px) {
  .nav-open {
    overflow: hidden;
  }

  .nav_wrap {
    position: fixed;
    top: 0;
    right: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-open .nav_wrap {
    position: fixed;
  }

  .nav_wrap_inner {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 60px;
    padding: 5px 0;
  }

  .nav_fixed .nav_wrap_inner {
    position: fixed;
    background: #e4ebeb;
    top: 0;
    left: 0;
    transition: .2s;
  }

  .nav-open .nav_wrap_inner {
    position: fixed;
    background: #fff;
  }

  .nav_wrap .sp_logo {
    width: calc(100% - 60px);
  }

  .nav-open .nav_wrap .sp_logo {
    display: none !important;
  }

  .nav-open .nav_wrap .sp_logo.fixed {
    position: fixed;
    display: block !important;
  }

  .nav_wrap .sp_logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    margin: 0 auto;
  }

  .nav_wrap .sp_logo a img {
    width: auto;
    height: auto;
    max-height: 50px;
    padding: 0 10px;
  }

  /* ----- ハンバーガーボタン ----- */
  .btn_menu {
    position: fixed;
    top: 5px;
    right: 10px;
    display: block;
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;
    background: var(--main-color);
    border: none;
    color: #ffffff;
    text-align: center;
  }

  .btn_menu .btn_line {
    position: absolute;
    right: 0;
    left: 0;
    display: block;
    width: 25px;
    height: 1px;
    margin: auto;
    background: #ffffff;
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .btn_menu .btn_line:nth-of-type(1) {
    top: 10px;
  }

  .btn_menu .btn_line:nth-of-type(2) {
    top: 18px;
  }

  .btn_menu .btn_line:nth-of-type(3) {
    top: 26px;
  }

  .btn_menu .btn_text {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    margin: auto;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.1em;
  }

  /* メニューが開いている時 */
  .btn_menu.active {
    z-index: 3;
  }

  .btn_menu.active .btn_line:nth-of-type(1) {
    top: 20px;
    transform: rotate(225deg);
  }

  .btn_menu.active .btn_line:nth-of-type(2) {
    opacity: 0;
  }

  .btn_menu.active .btn_line:nth-of-type(3) {
    top: 20px;
    transform: rotate(-225deg);
  }

  /* ----- ナビゲーション ----- */
  nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    display: none;
    width: 100%;
    height: 100%;
    padding: 70px 15px 60px;
    background: #fff;
    overflow: hidden;
    animation: spNavFade .6s;
  }

  @keyframes spNavFade {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  /* 展開時 */
  body.nav-open nav {
    display: block;
    right: 0;
    overflow-y: scroll;
  }

  .nav_list > li {
    border-bottom: 1px solid var(--border-color);
  }

  .nav_list > li > a,
  .nav_list > li > p {
    display: block;
    padding: 12px 22px;
  }

  .nav_list > li > a::before,
  .pulldown_btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 12px;
    height: 1px;
    background: var(--border-color);
  }

  /* スマホ時不要、非表示 */
  .pulldown > a,
  .pulldown > p:not(.pulldown_btn),
  .nav_list_en {
    display: none!important;
  }

  /* ------ 開閉ボタン（pulldown、mega） ------ */
  .pulldown_btn {
    cursor: pointer;
    position: relative;
  }

  .pulldown_btn + a,
  .pulldown_btn + p {
    display: none!important;
  }

  .pulldown_btn_plus {
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }

  .nav_open .pulldown_btn_plus {
    display: none!important;
  }

  .pulldown_btn_plus::before,
  .pulldown_btn_plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--main-color);
    transition: transform 0.3s;
  }

  .pulldown_btn_plus::before {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .pulldown_btn_plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .pulldown_btn.active .pulldown_btn_plus::before {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .pulldown_btn.active .pulldown_btn_plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  /* ------ SNSボタン ------ */
  .sp_btn_area {
    display: flex;
    flex-flow: row wrap;
    gap: 5px;
    margin: 32px 0 0;
  }

  .sp_btn_area li {
    width: 100%;
  }

  .sp_btn_area:has(li:nth-of-type(2n)) li {
    width: calc(50% - 5px / 2);
  }

  .sp_btn_area a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    background: var(--main-color);
    color: #fff;
    font-size: 93%;
  }

  /* ------ 固定ボタン ------ */
  /* 共通 */
  .sp_cta_btn {
    display: none;
    position: fixed;
  }

  .sp_cta_btn ul {
    display: flex;
    justify-content: center;
    height: 100%;
  }

  .sp_cta_btn ul li {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
  }

  .sp_cta_btn li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: var(--main-color);
    color: #ffffff !important;
  }

  .sp_cta_btn li a[href="tel:準備中"] {
    padding-bottom: 20px;
    background: #aaaaaa;
    pointer-events: none;
  }

  .sp_cta_btn li a[href="tel:準備中"]::after {
    content: "（準備中）";
    position: absolute;
    bottom: 5px;
    margin: auto;
    font-size: 80%;
    text-align: center;
  }

  .sp_cta_btn li a i {
    margin-right: 5px;
  }

  .sp_cta_btn li:nth-child(2) a {
    background: #f0b04b;
  }

  .sp_cta_btn li:nth-child(3) a {
    background: #68b162;
  }

  /* 下部固定ボタン */
  .sp_cta_btn.btn_under {
    bottom: 0;
    z-index: 9;
    display: block;
    width: 100%;
    height: 55px;
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 700;
  }

  .sp_cta_btn.btn_under li a{
    flex-direction: column;
    gap:5px;
  }
  .sp_cta_btn.btn_under li a .fixed_btn_head{
    margin-left:0;
  font-size: 8px;
  }
.sp_cta_btn.btn_under li a .fixed_btn_head_fsL{
    font-size: 14px;
    line-height: 0;
}
.sp_cta_btn.btn_under li a .fixed_btn_head>*:before,
.sp_cta_btn.btn_under li a .fixed_btn_head>*:after{
  height: 11px;
  bottom: 2px;
}
  .sp_cta_btn.btn_under li a .fixed_btn_icon{
    width: 17px;
  }
  .sp_cta_btn.btn_under li a .fixed_btn_tit{
    gap: 0 5px;
    font-size: 12px;
  }
    .sp_cta_btn.btn_under .fixed_btn_icon i {
      margin-right:0;
      font-size: 10px;
      color: #68b162;
      letter-spacing: normal;
    }

  /* ハンバーガーメニュー内上部 */
  .sp_cta_btn.btn_top {
    left: 10px;
    width: calc(100% - 75px);
    height: 50px;
  }

  .nav-open .sp_cta_btn.btn_top {
    display: block;
  }

  .sp_cta_btn.btn_top ul {
    gap: 5px;
  }


  /* ----- ナビ展開時の後ろの背景 ----- */
  .nav_overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255);
    visibility: hidden;
    opacity: 0;
  }

  /* navの展開時は画面を固定する */
  body.nav-open .nav_overlay {
    display: block;
    visibility: visible;
    opacity: 1;
  }

  /* ナビ内診療時間表 */
  .nav_schedule_wrap {
    font-family: var(--font-family);
    font-weight: 500;
    line-height: 2;
    margin-top: 32px;
  }

  .nav_schedule_wrap .office_hour_table {
    background: #f7f7f7;
  }
}

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

  *pulldown

================================================================================================================================== */
.pulldown_box {
  display: none;
  background: #ffffff;
  font-size: 14px;
}

.pulldown_box a {
  display: block;
  padding: 15px 10px;
}

/* ==============================================
  *PC pulldown
============================================== */
@media print, screen and (min-width: 641px) {
  .pulldown_box {
    box-shadow: 0 0 5px #bdbdbd;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    width: 280px;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    transform: translate(-50%);
  }

  .pulldown_box li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .pulldown_box li:last-child {
    border: none;
  }

  .pulldown_box a:hover {
    background: var(--bg-color);
  }

  /* ----- 2列 ----- */
  .double .pulldown_box {
    width: 600px;
  }

  .double .pulldown_box::before,
  .double .pulldown_box::after {
    display: block;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--border-color);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  .double .pulldown_box::before {
    width: 1px;
    height: 100%;
    background: var(--border-color);
  }

  .double .pulldown_box::after {
    width: 100%;
    height: 1px;
    background: #fff;
  }

  .double .pulldown_box ul {
    display: flex;
    flex-wrap: wrap;
  }

  .double .pulldown_box li {
    width: 50%;
    border-bottom: 1px solid var(--border-color);
  }

  .double .pulldown_box li a {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
}

/* ==============================================
  *SP pulldown
============================================== */
@media screen and (max-width: 640px) {
  .pulldown {
    transform: translateZ(0);
    /* Safariでの挙動制御のためこちらは削除しないでください */
  }

  /* ----- プルダウンのナビゲーション ----- */
  .pulldown_box {
    margin: 5px 0 12px;
    padding: 12px;
    background: var(--bg-color);
    font-size: 93%;
  }

  .pulldown_box ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 12px;
  }

  .pulldown_box li {
    width: calc((100% - 12px) / 2);
  }

  .pulldown_box a {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0 .5em;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .pulldown_box a::before {
    content: "-";
  }

  /* ----- プルダウン（常時展開パターン） ----- */
  .nav_wrap.nav_open .pulldown_box {
    display: block !important;
  }
}

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

  *mega

================================================================================================================================== */
.mega {
  position: static !important;
}

/* ----- 選択範囲拡張 ------ */
.mega:hover .nav_item> :is(a, p)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: -1;
  width: 120%;
  height: 50px;

  /* 確認用 */
  /* background: #000000; */
  transform: translateX(-50%);
}

/* ----- メガメニューのボックス ----- */
.mega_box {
  box-shadow: 0 0 5px #bdbdbd;
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  z-index: 2;
  display: none;
  width: calc(100% - 100px);
  height: auto;
  padding: 10px;
  background: rgb(255, 255, 255);
  overflow-y: auto;
  transform: translateX(-50%);
}

/* 固定時の設定 */
.fixed .mega_box {
  margin: 0 auto;
}

.fixed .mega:hover span::after {
  height: 15px;
}

/* ----- メガメニューのインナー ----- */
.mega_inner {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
  gap: 50px;
  width: 100%;
  height: 100%;
  max-height: 70vh;
  margin: 0 auto !important;
  padding: 30px;
  overflow: auto;
}

/* スクロールバーの横幅指定 */
.mega_inner::-webkit-scrollbar {
  width: 5px;
}

/* スクロールバーの背景色・角丸指定 */
.mega_inner::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 10px;
}

/* スクロールバーの色・角丸指定 */
.mega_inner::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 10px;
}

.mega_inner>* {
  width: fit-content;
  height: fit-content;
}

/* ----- メガメニューのナビゲーション----- */
.mega_item .title {
  margin-bottom: 15px;
}

.mega_item .title a {
  display: inline-block;
  padding: 5px 20px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
}

.mega_item .title a:hover {
  background: #ffffff;
  color: var(--main-color);
}

.mega_item .title p {
  display: inline-block;
  padding: 5px 20px;
  background: var(--text-color);
  color: #ffffff;
}

.mega_item ul {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 10px;
}

.mega_item a {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: fit-content;
  padding: 0 0 0 15px;
  border: none;
  color: var(--text-color);
  font-size: 14px;
  text-align: start;
}

.mega_item a:hover {
  background: none;
  color: var(--main-color);
}

.mega_item ul li a::before {
  content: "-" !important;
  position: absolute;
  top: 0;
  left: 0;
}

/* タイトルリンクのみの場合 */
.mega_item.title_link ul {
  display: flex;
  flex-flow: wrap;
  gap: 20px 40px;
}

/* ==============================================
  *SP mega
============================================== */
@media screen and (max-width: 640px) {
  .mega {
    position: relative;
    transform: translateZ(0);
    /* Safariでの挙動制御のためこちらは削除しないでください */
  }

  .mega .nav_item {
    padding-right: 32px;
  }

  /* ----- 選択範囲拡張 ------ */
  .mega:hover .nav_item> :is(a, p)::after {
    display: none !important;
  }

  /* ----- メガメニューのボックス ----- */
  .mega_box {
    box-shadow: none;
    position: static;
    width: 100% !important;
    margin: 5px 0 12px;
    padding: 12px 22px;
    background: var(--bg-color);
    transform: translate(0);
  }

  /* ----- メガメニューのインナー ----- */
  .mega_inner {
    justify-content: flex-start;
    align-items: stretch;
    gap: 30px;
    max-height: 300px;
    padding: 0;
  }

  .mega_inner>* {
    width: 100%;
    height: fit-content;
  }

  /* ----- メガメニューのナビゲーション----- */
  .mega_item .title {
    margin-bottom: 10px;
  }

  .mega_item .title a {
    width: 100%;
    padding: 5px 16px;
    text-align: start;
  }

  .mega_item li {
    width: fit-content !important;
  }

  .mega_item a {
    font-size: 13px;
  }

  .mega_item a:hover {
    color: #ffffff;
  }

  /* タイトルリンクのみの場合 */
  .mega_item.title_link ul {
    gap: 5px 20px;
  }

  /* ----- メガメニュー（常時展開パターン） ----- */
  .nav_wrap.nav_open .mega_box {
    display: block !important;
  }
}


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

  *ページトップボタン

============================================================================*/
.pagetop {
  background: #6bb4c1;
  cursor: pointer;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 11;
}

.pagetop span {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 105px;
  height: 95px;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 500;
  font-size: 21px;
  color: #fff;
}

@media (hover: hover) {
  .pagetop {
    transition: background .3s;
  }
  .pagetop:hover {
    background: var(--sub-color);
  }
}

@media screen and (max-width: 640px) {
  .pagetop {
    bottom: 60px;
  }

  .pagetop span {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
}

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

  *footer

============================================================================*/
.footer {
  position: relative;
  width: 100%;
}

.footer_inner {
  max-width: 1200px;
  margin-inline: auto;
}

@media screen and (max-width: 640px) {
  .footer_inner {
    padding-inline: 5%;
  }
}


/*--------------- 医院概要 --------------- */
.footer_info_logo {
  text-align: center;
  padding-bottom: 50px;
  margin-bottom: 45px;
  position: relative;
}
.footer_info_logo a {
  display: block;
  max-width: 430px;
  margin-inline: auto;
}
.footer_info_logo::before {
  display: block;
  content: "";
  width: calc(100vw / 2);
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  right: -90px;
}
.footer_info address > * {
  display: flex;
  align-items: center;
  gap: 0 20px;
  line-height: 1.9;
}
.footer_info address > *:not(:last-child) {
  margin-bottom: 20px;
}
.footer_info address > * > span {
  flex-shrink: 0;
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
}
.footer_info address .footer_info_tel {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: .1em;
  line-height: 1;
}
.footer_info_tel a {
  color: var(--text-color);
}
.footer_info_tel a span {
  font-size: 39%;
  letter-spacing: .1em;
  padding-right: 10px;
}
.footer_info_department {
  display: flex;
  align-items: center;
  gap: 0 35px;
  background: #fff;
  padding: 10px;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 30px;
}
.footer_info_department dt {
  flex-shrink: 0;
  background: #319eb1;
  padding: 7px 15px;
  color: #fff;
}
.footer_info_schedule {
  margin-top: 40px;
}


.footer_info_access_map iframe {
  width: 100%;
  height: 440px;
}

.footer_info_access_guide {
  background: #f6f6f6;
  padding: 20px 30px;
  line-height: 2.4;
  margin-top: 30px;
}
.footer_info_access_guide_list li {
  padding-left: 17px;
  position: relative;
}
.footer_info_access_guide_list li::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #9cd0d9;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc((2.4em - 12px) / 2);
}

.footer_info_access .btn01 {
  margin-top: 30px;
}


@media print, screen and (min-width: 641px) {
  .footer_info {
    background: linear-gradient(to right, #9cd0d9 0%, #9cd0d9 50%, #fff 50%, #fff 100%);
    padding-top: 60px;
    padding-bottom: 80px;
    overflow: hidden;
  }
  .footer_info .footer_inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer_info_left {
    width: 510px;
  }

  .footer_info_right {
    width: 520px;
    padding-top: 20px;
  }
  .footer_info_access_guide {
    font-size: 14px;
  }
  .footer_info_access .btn01 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer_info_access .btn01 a {
    width: calc((100% - 20px) / 2);
  }
}


@media screen and (max-width: 640px) {
  .footer_info .footer_inner {
    padding-inline: 0;
  }
  .footer_info .footer_inner > * {
    padding-inline: 5%;
  }
  .footer_info_left {
    padding-block: 30px 40px;
    background: #9cd0d9;
  }
  .footer_info_logo {
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  .footer_info_logo a {
    width: 90%;
  }
  .footer_info_logo::before {
    width: 100%;
    right: 0;
  }
  .footer_info address > * {
    gap: 0 10px;
  }
  .footer_info address > *:not(:last-child) {
    margin-bottom: 10px;
  }
  .footer_info address > * > span {
    width: 40px;
    height: 40px;
  }
  .footer_info address .footer_info_tel {
    font-size: clamp(24px, 8vw, 36px);
  }
  .footer_info_department {
    gap: 0 20px;
  }

  .footer_info_right {
    padding-block: 50px;
  }
  .footer_info_access_map iframe {
    height: 300px;
  }
  .footer_info_access_guide {
    padding-inline: 6%;
  }
  .footer_info_access .btn01 {
    text-align: center;
  }
  .footer_info_access .btn01 a:not(:last-child) {
    margin-bottom: 10px;
  }
}


/*--------------- ナビ --------------- */
.footer_nav {
  background: #f7f7f7;
  padding-top: 75px;
  padding-bottom: 115px;
  line-height: 1.6;
}

.footer_nav a {
  color: var(--text-color);
  display: inline-block;
}

@media (hover: hover) {
  .footer_nav a:hover {
    color: var(--main-color);
  }
}

.footer_nav_fixed,
.footer_nav_sub_list {
  display: grid;
  gap: 22px 30px;
}

.footer_nav_fixed {
  grid-template-columns: repeat(2, auto);
}

.footer_nav_sub_tit:not(:last-child) {
  margin-bottom: 22px;
}

.footer_nav_fixed li a,
.footer_nav_sub_tit > * {
  padding-left: 12px;
  position: relative;
}
.footer_nav_fixed li a::before,
.footer_nav_sub_tit > *::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #9cd0d9;
  border-radius: 50%;
  position: absolute;
  top: calc((1.6em - 8px) / 2);
  left: 0;
}

.footer_nav_sub_list {
  font-size: 88%;
  grid-template-columns: repeat(4, auto);
}

.footer_nav_sub_list li a {
  padding-left: .5em;
  text-indent: -.5em;
}

.footer_nav_sub_list li a::before {
  content: "-";
  color: #53add5;
}

@media print, screen and (min-width: 641px) {
  .footer_nav .footer_inner {
    display: flex;
    align-items: flex-start;
  }

  .footer_nav_fixed {
    width: 30%;
  }

  .footer_nav_sub {
    width: 70%;
    padding-left: 60px;
  }
}

@media screen and (max-width: 640px) {
  .footer_nav {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .footer_nav_fixed,
  .footer_nav_sub_list {
    gap: 15px 30px;
  }

  .footer_nav_fixed {
    margin-bottom: 15px;
  }

  .footer_nav_sub_tit:not(:last-child) {
    margin-bottom: 15px;
  }

  .footer_nav_sub_list {
    font-size: 93%;
    grid-template-columns: repeat(2, auto);
  }
}

/*--------------- コピーライト --------------- */
.copy {
  padding: 38px 20px 100px;
  background: #edf8f9;
  line-height: 1.4;
  text-align: center;
}
.copy small {
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 500;
  color: #319eb1;
  font-size: 13px;
}

@media screen and (max-width: 640px) {
  .copy {
    padding: 15px 5% 70px;
  }
}

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

  *h1

==================================================================*/
h1 {
  font-size: 14px;
  line-height: 1.4;
}

@media screen and (max-width: 640px) {
  h1 {
    padding: 5px 5%;
    background: var(--bg-color);
    text-align: center;
  }
}

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

  *ボタン

==================================================================*/
.btn01 a {
  display: inline-block;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-size: 113%;
  letter-spacing: .1em;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  background: var(--main-color);
  border-radius: 60px;
  padding: 10px 50px 10px 35px;
  position: relative;
}
.btn01 a::after {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/arrow.png) left top/100% auto no-repeat;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

@media (hover: hover) {
  .btn01 a:hover {
    background: var(--sub-color);
  }
}

.btnflex {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

  *schedule（MPCLOUD）

============================================================================*/
#mpcloud_schedule {
  width: 220px;
  position: fixed;
  bottom: 15px;
  right: 22px;
  border-radius: 15px;
  background-color: rgb(255 255 255 / 0.9);
  z-index: 100;
  font-size: 14px;
  letter-spacing: 0.08em;
}
#mpcloud_schedule section {
  border-radius: 15px;
  box-shadow: 0 8px 22px 8px rgb(0 0 0 / 0.1);
}
.shcedule_title {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid #aaa;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 10px 0;
  text-align: center;
}
.shcedule_title i {
  position: relative;
  top: -2px;
  right: -25px;
  font-style: normal;
  font-size: 12px;
  cursor: pointer;
}
.schedule_time {
  margin: 8px 0 0 0;
}
.schedule_time dt {
  font-weight: bold;
}
.shcedule_box dt {
  background: #eee;
  text-align: center;
}
.shcedule_box dd {
  height: auto;
  vertical-align: top;
}
.shcedule_box dd i {
  display: inline-block;
  width: 17px;
  height: 17px;
  background-size: 17px 17px;
  padding: 2px 0 2px 22px;
  margin-left: 15px;
  vertical-align: inherit;
}
.shcedule_today {
  padding: 10px 16px;
}
.schedule_comment {
  border-top: 1px solid #d6d6d6;
  padding: 8px 12px;
  font-size: 14px;
}

@media screen and (max-width: 640px) {
  #mpcloud_schedule {
    width: 100%;
    right: 0;
    left: 0;
    border-radius: 0;
  }

  .time_close {
    right: 20px;
    font-size: 17px;
  }

  .schedule_time {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .schedule_time dt {
    width: 35%;
    margin-bottom: 5px;
  }

  .schedule_time dd {
    width: 65%;
    margin-bottom: 5px;
  }

  .schedule_time dd i {
    margin: 0 3px 0 15px;
    vertical-align: text-bottom;
  }
}

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

  *common

============================================================================*/
.w010par{width:10%!important}.w020par{width:20%!important}.w025par{width:25%!important}.w050par{width:50%!important}.w075par{width:75%!important}.w100par{width:100%!important}.w010{width:10px!important}.w020{width:20px!important}.w030{width:30px!important}.w040{width:40px!important}.w050{width:50px!important}.w060{width:60px!important}.w070{width:70px!important}.w080{width:80px!important}.w090{width:90px!important}.w100{width:100px!important}.w110{width:110px!important}.w120{width:120px!important}.w130{width:130px!important}.w140{width:140px!important}.w150{width:150px!important}.w160{width:160px!important}.w170{width:170px!important}.w180{width:180px!important}.w190{width:190px!important}.w200{width:200px!important}.w210{width:210px!important}.w220{width:220px!important}.w230{width:230px!important}.w240{width:240px!important}.w250{width:250px!important}.w255{width:255px!important}.w260{width:260px!important}.w270{width:270px!important}.w280{width:280px!important}.w290{width:290px!important}.w300{width:300px!important}.w305{width:305px!important}.w310{width:310px!important}.w320{width:320px!important}.w330{width:330px!important}.w340{width:340px!important}.w350{width:350px!important}.w360{width:360px!important}.w365{width:365px!important}.w370{width:370px!important}.w380{width:380px!important}.w390{width:390px!important}.w400{width:400px!important}.w410{width:400px!important}.w415{width:415px!important}.w420{width:420px!important}.w430{width:430px!important}.w435{width:435px!important}.w440{width:440px!important}.w450{width:450px!important}.w460{width:460px!important}.w470{width:470px!important}.w480{width:480px!important}.w490{width:490px!important}.w500{width:500px!important}.w510{width:510px!important}.w520{width:520px!important}.w530{width:530px!important}.w540{width:540px!important}.w550{width:550px!important}.w560{width:560px!important}.w570{width:570px!important}.w580{width:580px!important}.w590{width:590px!important}.w600{width:600px!important}.w610{width:610px!important}.w620{width:620px!important}.w630{width:630px!important}.w640{width:640px!important}.w650{width:650px!important}.w660{width:660px!important}.w670{width:670px!important}.w680{width:680px!important}.w690{width:690px!important}.w700{width:700px!important}.w710{width:710px!important}.w720{width:720px!important}.w730{width:730px!important}.w740{width:740px!important}.w750{width:750px!important}.w760{width:760px!important}.w765{width:765px!important}.w960{width:960px!important}.w980{width:980px!important}.h030{height:30px!important}.h180{height:180px!important}.h190{height:190px!important}.h200{height:200px!important}.h240{height:240px!important}.h250{height:250px!important}.h280{height:280px!important}.h300{height:300px!important}.h350{height:350px!important}.mt00{margin-top:0!important}.mt01{margin-top:1px!important}.mt02{margin-top:2px!important}.mt03{margin-top:3px!important}.mt04{margin-top:4px!important}.mt05{margin-top:5px!important}.mt06{margin-top:6px!important}.mt07{margin-top:7px!important}.mt08{margin-top:8px!important}.mt09{margin-top:9px!important}.mt10{margin-top:10px!important}.mt15{margin-top:15px!important}.mt20{margin-top:20px!important}.mt25{margin-top:25px!important}.mt30{margin-top:30px!important}.mt35{margin-top:35px!important}.mt40{margin-top:40px!important}.mt45{margin-top:45px!important}.mt50{margin-top:50px!important}.mt60{margin-top:60px!important}.mt70{margin-top:70px!important}.mt80{margin-top:80px!important}.mt90{margin-top:90px!important}.mt100{margin-top:100px!important}.mt110{margin-top:110px!important}.mt120{margin-top:120px!important}.mr00{margin-right:0!important}.mr01{margin-right:1px!important}.mr02{margin-right:2px!important}.mr03{margin-right:3px!important}.mr04{margin-right:4px!important}.mr05{margin-right:5px!important}.mr06{margin-right:6px!important}.mr07{margin-right:7px!important}.mr08{margin-right:8px!important}.mr09{margin-right:9px!important}.mr10{margin-right:10px!important}.mr15{margin-right:15px!important}.mr20{margin-right:20px!important}.mr25{margin-right:25px!important}.mr30{margin-right:30px!important}.mr35{margin-right:35px!important}.mr40{margin-right:40px!important}.mr45{margin-right:45px!important}.mr50{margin-right:50px!important}.mr60{margin-right:60px!important}.mr70{margin-right:70px!important}.mr80{margin-right:80px!important}.mr90{margin-right:90px!important}.mr100{margin-right:100px!important}.mb00{margin-bottom:0!important}.mb01{margin-bottom:1px!important}.mb02{margin-bottom:2px!important}.mb03{margin-bottom:3px!important}.mb04{margin-bottom:4px!important}.mb05{margin-bottom:5px!important}.mb06{margin-bottom:6px!important}.mb07{margin-bottom:7px!important}.mb08{margin-bottom:8px!important}.mb09{margin-bottom:9px!important}.mb10{margin-bottom:10px!important}.mb15{margin-bottom:15px!important}.mb20{margin-bottom:20px!important}.mb25{margin-bottom:25px!important}.mb30{margin-bottom:30px!important}.mb35{margin-bottom:35px!important}.mb40{margin-bottom:40px!important}.mb45{margin-bottom:45px!important}.mb50{margin-bottom:50px!important}.mb60{margin-bottom:60px!important}.mb70{margin-bottom:70px!important}.mb80{margin-bottom:80px!important}.mb90{margin-bottom:90px!important}.mb100{margin-bottom:100px!important}.ml00{margin-left:0!important}.ml01{margin-left:1px!important}.ml02{margin-left:2px!important}.ml03{margin-left:3px!important}.ml04{margin-left:4px!important}.ml05{margin-left:5px!important}.ml06{margin-left:6px!important}.ml07{margin-left:7px!important}.ml08{margin-left:8px!important}.ml09{margin-left:9px!important}.ml10{margin-left:10px!important}.ml12{margin-left:12px!important}.ml15{margin-left:15px!important}.ml20{margin-left:20px!important}.ml25{margin-left:25px!important}.ml30{margin-left:30px!important}.ml35{margin-left:35px!important}.ml40{margin-left:40px!important}.ml45{margin-left:45px!important}.ml50{margin-left:50px!important}.ml60{margin-left:60px!important}.ml70{margin-left:70px!important}.ml80{margin-left:80px!important}.ml90{margin-left:90px!important}.ml100{margin-left:100px!important}.ml140{margin-left:140px!important}.ml160{margin-left:160px!important}.ma10{margin:10px!important}.ma15{margin:15px!important}.ma_auto{margin-left:auto;margin-right:auto!important}.pt00{padding-top:0!important}.pt01{padding-top:1px!important}.pt02{padding-top:2px!important}.pt03{padding-top:3px!important}.pt04{padding-top:4px!important}.pt05{padding-top:5px!important}.pt06{padding-top:6px!important}.pt07{padding-top:7px!important}.pt08{padding-top:8px!important}.pt09{padding-top:9px!important}.pt10{padding-top:10px!important}.pt15{padding-top:15px!important}.pt20{padding-top:20px!important}.pt25{padding-top:25px!important}.pt30{padding-top:30px!important}.pt35{padding-top:35px!important}.pt40{padding-top:40px!important}.pt45{padding-top:45px!important}.pt50{padding-top:50px!important}.pt60{padding-top:60px!important}.pt70{padding-top:70px!important}.pt80{padding-top:80px!important}.pt90{padding-top:90px!important}.pt100{padding-top:100px!important}.pt120{padding-top:120px!important}.pr00{padding-right:0!important}.pr01{padding-right:1px!important}.pr02{padding-right:2px!important}.pr03{padding-right:3px!important}.pr04{padding-right:4px!important}.pr05{padding-right:5px!important}.pr06{padding-right:6px!important}.pr07{padding-right:7px!important}.pr08{padding-right:8px!important}.pr09{padding-right:9px!important}.pr10{padding-right:10px!important}.pr15{padding-right:15px!important}.pr20{padding-right:20px!important}.pr25{padding-right:25px!important}.pr30{padding-right:30px!important}.pr35{padding-right:35px!important}.pr40{padding-right:40px!important}.pr45{padding-right:45px!important}.pr50{padding-right:50px!important}.pr60{padding-right:60px!important}.pr70{padding-right:70px!important}.pr80{padding-right:80px!important}.pr90{padding-right:90px!important}.pr100{padding-right:100px!important}.pb00{padding-bottom:0!important}.pb01{padding-bottom:1px!important}.pb02{padding-bottom:2px!important}.pb03{padding-bottom:3px!important}.pb04{padding-bottom:4px!important}.pb05{padding-bottom:5px!important}.pb06{padding-bottom:6px!important}.pb07{padding-bottom:7px!important}.pb08{padding-bottom:8px!important}.pb09{padding-bottom:9px!important}.pb10{padding-bottom:10px!important}.pb15{padding-bottom:15px!important}.pb20{padding-bottom:20px!important}.pb25{padding-bottom:25px!important}.pb30{padding-bottom:30px!important}.pb35{padding-bottom:35px!important}.pb40{padding-bottom:40px!important}.pb45{padding-bottom:45px!important}.pb50{padding-bottom:50px!important}.pb60{padding-bottom:60px!important}.pb70{padding-bottom:70px!important}.pb80{padding-bottom:80px!important}.pb90{padding-bottom:90px!important}.pb100{padding-bottom:100px!important}.pl00{padding-left:0!important}.pl01{padding-left:1px!important}.pl02{padding-left:2px!important}.pl03{padding-left:3px!important}.pl04{padding-left:4px!important}.pl05{padding-left:5px!important}.pl06{padding-left:6px!important}.pl07{padding-left:7px!important}.pl08{padding-left:8px!important}.pl09{padding-left:9px!important}.pl10{padding-left:10px!important}.pl15{padding-left:15px!important}.pl20{padding-left:20px!important}.pl25{padding-left:25px!important}.pl30{padding-left:30px!important}.pl35{padding-left:35px!important}.pl40{padding-left:40px!important}.pl45{padding-left:45px!important}.pl50{padding-left:50px!important}.pl60{padding-left:60px!important}.pl70{padding-left:70px!important}.pl80{padding-left:80px!important}.pl90{padding-left:90px!important}.pl100{padding-left:100px!important}.pa01{padding:1px!important}.pa02{padding:2px!important}.pa03{padding:3px!important}.pa04{padding:4px!important}.pa05{padding:5px!important}.pa10{padding:10px!important}.pa15{padding:15px!important}.fr{float:right!important}.fl{float:left!important}.fr10{float:right;margin-left:10px!important}.fr15{float:right;margin-left:15px!important}.fr30{float:right;margin-left:15px!important}.fl10{float:left;margin-right:10px!important}.fl15{float:left;margin-right:15px!important}.fl30{float:left;margin-right:30px!important}.txt10{font-size:10px!important}.txt11{font-size:11px!important}.txt12{font-size:12px!important}.txt13{font-size:13px!important}.txt14{font-size:14px!important}.txt15{font-size:15px!important}.txt16{font-size:16px!important}.txt17{font-size:17px!important}.txt18{font-size:18px!important}.txt19{font-size:19px!important}.txt20{font-size:20px!important}.txt21{font-size:21px!important}.txt22{font-size:22px!important}.txt23{font-size:23px!important}.txt24{font-size:24px!important}.txt25{font-size:25px!important}.txt26{font-size:26px!important}.txt27{font-size:27px!important}.txt28{font-size:28px!important}.txt29{font-size:29px!important}.txt30{font-size:30px!important}.txt31{font-size:31px!important}.txt32{font-size:32px!important}.txt33{font-size:33px!important}.txt34{font-size:34px!important}.txt35{font-size:35px!important}.txt36{font-size:36px!important}.txt37{font-size:37px!important}.txt38{font-size:38px!important}.txt39{font-size:39px!important}.txt40{font-size:40px!important}.bold{font-weight:700!important}.left{text-align:left!important}.center{text-align:center!important}.right{text-align:right!important}.clear{clear:both!important}.v_top{vertical-align:top!important}.v_mid{vertical-align:middle!important}.v_btm{vertical-align:bottom!important}.color_main{color:var(--main-color)!important}.color_red{color:#f33!important}.color_pink{color:#db8f7c!important}.color_blue{color:#6fa8d9!important}.color_green{color:var(--sub-color)!important}.color_orange{color:#db9943!important}.color_yellow{color:#f5f1a4!important}.color_beige{color:#dac58b!important}.color_brown{color:#9b8052!important}.color_purple{color:#838ab6!important}.color_black{color:var(--text-color)!important}.ls_0{letter-spacing:0!important}.ls_1{letter-spacing:1px!important}.indent{margin-left:1em!important;text-indent:-1em!important}.line_h_7{line-height:1.7!important}.clearfix:after{display:block!important;clear:both!important;content:""!important}.nowrap{white-space:nowrap!important}

@media print, screen and (min-width: 641px) {
  .sp{display:none!important}
}

@media screen and (max-width: 640px) {
  .pc{display:none!important}.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}.sp_center{text-align:center!important}
}
