@charset "UTF-8";

/*
Theme Name: HERO CMS
Author: HERO innovation
Author URI: https://hero-innovation.com/
Description: HERO innovationのCMSテーマになります。
Version: 1.0.9
*/
/* -------------
  - *基本設定
  - *header
  - *固定ボタン
  - *nav
  - *footer
  - *書式
  - *タイトル
  - *ボタン
  - *MPクラウド - スケジュール
  - *RIBON
  - *強制CSS
------------- */
:root {
  --text-color: #333;
  /*メイン色*/
  --main-color: #a9a28a;
  /*サブ色*/
  --sub-color: #4c5a72;
  /*サイドメニュー・レイアウト類の背景色*/
  --bg-color: #faf7f4;
  /*境界線色*/
  --line-color: #ccc;
  /*日本語*/
  --font-jp: "source-han-serif-jp-subset", sans-serif;
  --font-jp-weight: 400;
  /*英語*/
  --font-en: "oculi-display", sans-serif;
  --font-en-weight: 500;
  --selection-color: rgb(117, 95, 82,10%);
}

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

  *基本設定

================================================================================================================================== */
@media print {
  html {
    print-color-adjust: exact;
  }

  body {
    zoom: 80%;
  }

  .fixed {
    position: inherit !important;
  }
}

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

body {
  position: relative;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.12em;
  word-break: break-all;
  word-wrap: break-word;
}

a {
  color: var(--main-color);
  transition: background 0.2s, color 0.2s, opacity 0.2s, transform 0.2s;
}

a:hover {
  color: var(--sub-color);
}

a[href="tel:準備中"] {
  pointer-events: none;
}

::selection {
  background-color: var(--selection-color);
}

::-moz-selection {
  background-color: var(--selection-color);
}

strong {
  font-weight: bold;
}

body, .nav_wrap nav {
  min-width: 1300px;
}

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

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

.inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

/* ==============================================
  *SP 基本設定
============================================== */
@media screen and (max-width: 640px) {
  body {
    font-size: 14px;
  }

  body, .nav_wrap nav {
    min-width: auto;
  }

  .inner {
    max-width: none;
    padding-inline: 5%;
    margin-inline: 0;
  }
}

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

  *header

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

.header_inner {
  padding: 20px 50px 0;
}

.header h1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.header_logo {
  width: 442px;
  position: relative;
  z-index: 1;
}

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

/* ==============================================
  *SP header
============================================== */
@media screen and (max-width: 640px) {
  .header_inner {
    padding: 0;
  }
  .header h1 {
    margin-bottom: 5px;
  }
  .header_logo {
    width: 100%;
    height: 60px;
    padding: 5px 20px 0;
    text-align: center;
  }
  .header_logo img {
    width: auto;
    max-height: 100%;
  }
}

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

  *固定ボタン

================================================================================================================================== */
.fixed_btn {
  display: flex;
  gap: 0 8px;
  font-size: clamp(14px, .83vw, 16px);
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  line-height: 1.4;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 11;
}
.fixed_btn a,
.fixed_btn .pagetop {
  min-height: 87px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 .8vw;
  background: #4c5a72;
  color: #fff;
  border-radius: 15px;
  padding: 0 1.3vw;
}
@media (hover: hover) {
  .fixed_btn a {
    transition-duration: .5s;
    transition-timing-function: ease-in-out;
  }
  .fixed_btn a:hover {
    background-color: var(--main-color);
  }
}
.fixed_btn a img {
  width: auto;
  height: clamp(24px, 1.8vw, 34px);
}
.fixed_btn a i {
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0;
}
.fixed_btn .pagetop {
  width: 87px;
  flex-flow: column;
  gap: 15px 0;
  cursor: pointer;
  background: #9e9577;
  margin-left: 10px;
  font-family: var(--font-en);
  font-weight: var(--font-en-weight);
  padding: 0;
}
.fixed_btn .pagetop img {
  width: 16px;
}

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

/* ==============================================
  *SP 固定ボタン
============================================== */
@media screen and (max-width: 640px) {
  .fixed_btn {
    width: 100%;
    gap: 0 4px;
    font-size: clamp(12px, 3.7vw, 14px);
    letter-spacing: 0.05em;
    background: #fff;
    padding: 5px;
    right: 0;
    bottom: 0;
  }
  .fixed_btn_pc {
    display: none !important;
  }
  .fixed_btn a,
.fixed_btn .pagetop {
    min-height: auto;
  }
  .fixed_btn a {
    width: calc((100% - 8px) / 3);
    gap: 0 5px;
    padding: 10px 5px;
  }
  .fixed_btn a img {
    width: auto;
    max-height: 24px;
  }
  .fixed_btn a i {
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0;
  }
  .fixed_btn .pagetop {
    width: 60px;
    gap: 5px 0;
    aspect-ratio: 1;
    margin-left: 0;
    position: fixed;
    right: 10px;
    bottom: 80px;
  }
}

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

  *nav

================================================================================================================================== */
.nav-open {
  overflow: hidden;
}

.nav_wrap {
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  line-height: 1.6;
}

/* ------- ハンバーガーボタン ------- */
.btn_menu {
  width: 85px;
  height: 85px;
  background: #a9a28a;
  border-radius: 50%;
  border: none;
  text-align: center;
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  position: fixed;
  right: 50px;
  top: 55px;
  z-index: 10000;
}

.btn_menu span {
  display: block;
  position: absolute;
}

.btn_menu > span {
  width: 32px;
  height: 29px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn_menu > span span {
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
}

.btn_menu > span span:nth-of-type(1) {
  top: 0;
}

.btn_menu > span span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.btn_menu > span span:nth-of-type(3) {
  bottom: 0;
}

.btn_menu.active > span span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

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

.btn_menu.active > span span:nth-of-type(3) {
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

/* ------- ナビ ------- */
.menu_list_wrap {
  width: 100%;
  height: 100%;
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background: #fbf0e8;
  padding-bottom: 100px;
  font-size: 113%;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 9999;
}

/* 展開時 */
body.nav-open .menu_list_wrap {
  right: 0;
}

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

.nav_logo {
  width: 414px;
  padding-left: 50px;
  padding-top: 68px;
  margin-bottom: 165px;
}

.nav_inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  gap: 0 40px;
}

.nav_menu {
  width: 100%;
}

.nav_menu:last-child {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.nav_menu > li:not(:last-child) {
  margin-bottom: 45px;
}

.nav_menu_tit {
  white-space: nowrap;
  padding-left: 40px;
  background: url(images/arrow.png) left top 0.3em/auto 1em no-repeat;
}
@media (hover: hover) {
  a.nav_menu_tit {
    transition-timing-function: ease-in-out;
  }
  a.nav_menu_tit:hover {
    background-position: left 8px top 0.3em;
  }
}

/* ------- ドロップダウンメニュー ------- */
.pulldown {
  transform: translateZ(0); /* Safariでの挙動制御のためこちらは削除しないでください */
}

.pulldown .nav_menu_tit {
  background: none;
  cursor: pointer;
  position: relative;
}
.pulldown .nav_menu_tit::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f067";
  color: #4c5a72;
  position: absolute;
  top: 0;
  left: 0;
}
.pulldown .nav_menu_tit.active::before {
  content: "\f068";
}

.pulldown_box {
  padding-left: 40px;
  margin-top: 30px;
}
.pulldown_box > li:not(:last-child) {
  margin-bottom: 15px;
}
.pulldown_box a {
  padding-left: 24px;
  position: relative;
}
.pulldown_box a::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background: #a9a28a;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc((1.6em - 8px) / 2);
}
@media (hover: hover) {
  .pulldown_box a::after {
    display: block;
    content: "";
    width: calc(100% - 24px);
    height: 1px;
    background: currentColor;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: transform .2s ease-out;
    transform: scaleX(0);
  }
  .pulldown_box a:hover::after {
    transform: scaleX(1);
  }
}

.pulldown .pulldown_box {
  display: none;
}

/* ==============================================
  *SP nav
============================================== */
@media screen and (max-width: 640px) {
  /* ------- ハンバーガーボタン ------- */
  .btn_menu {
    width: 56px;
    height: 56px;
    right: 10px;
    top: 60px;
  }
  .btn_menu.btn_menu-top {
    top: 10px;
  }
  .btn_menu > span {
    width: 20px;
    height: 20px;
  }
  .btn_menu > span span {
    height: 2px;
  }

  /* ------- ナビ ------- */
  .menu_list_wrap {
    padding-bottom: 50px;
  }
  .nav_logo {
    width: 100%;
    height: 60px;
    padding: 5px 20px 0;
    text-align: center;
    margin-bottom: 60px;
  }
  .nav_logo img {
    width: auto;
    max-height: 100%;
  }
  .nav_inner {
    display: block;
    padding-inline: 5%;
  }
  .nav_menu:last-child {
    width: 100%;
  }
  .nav_menu:not(:last-child),
.nav_menu > li:not(:last-child) {
    margin-bottom: 15px;
  }
  .nav_menu_tit {
    white-space: normal;
    padding-left: 1.5em;
  }

  /* ------- ドロップダウンメニュー ------- */
  .pulldown {
    transform: translateZ(0); /* Safariでの挙動制御のためこちらは削除しないでください */
  }
  .pulldown_box {
    padding-left: 1.5em;
    margin-top: 15px;
  }
  .pulldown_box a {
    padding-left: 18px;
  }
}

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

  *footer

================================================================================================================================== */
.footer {
  position: relative;
  width: 100%;
  padding-bottom: 115px;
  margin-top: -120px;
}
.footer_inner {
  background: url(images/footer_wave.png) center top no-repeat;
  padding-top: 325px;
  padding-bottom: 230px;
  position: relative;
  overflow: hidden;
}
.footer_inner::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #faf7f4;
  position: absolute;
  left: 0;
  top: 118px;
}
.footer_inner > * {
  position: relative;
}

/* ==============================================
  *SP footer
============================================== */
@media screen and (max-width: 640px) {
  .footer_inner {
    background-image: url(images/footer_wave_sp.png);
    background-size: 100% auto;
    padding-top: calc(6% + 50px);
    padding-bottom: 60px;
  }
  .footer_inner::before {
    margin-top: 6%;
    top: 0;
  }
}

/* --------- footer_info --------- */
.footer_info .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer_info_left, .footer_info_right {
  width: 570px;
}
.footer_info_left {
  padding-top: 35px;
}
.footer_info_logo {
  max-width: 410px;
  text-align: center;
  margin: 0 auto 70px;
}
.footer_info_access_map {
  height: 400px;
  margin-bottom: 25px;
}
.footer_info_access_map iframe {
  width: 100%;
  height: 100%;
}
.footer_info_access_guide {
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  line-height: 1.6;
  text-align: center;
  background: #f8eae0;
  padding: 25px 10px;
}

/* ==============================================
  *SP footer_info
============================================== */
@media screen and (max-width: 640px) {
  .footer_info .inner {
    display: block;
  }
  .footer_info_left, .footer_info_right {
    width: 100%;
  }
  .footer_info_left {
    padding-top: 0;
    margin-bottom: 40px;
  }
  .footer_info_logo {
    margin-bottom: 40px;
  }
}

/* --------- 連携病院 --------- */
.footer_affiliations {
  max-width: 1480px;
  background: #fff;
  border-radius: 20px;
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  padding: 100px 0 110px;
  margin: 120px auto 0;
}
.footer_affiliations .inner {
  display: flex;
  align-items: center;
}
.footer_affiliations_tit {
  flex: 1;
  line-height: 1.4;
}
.footer_affiliations_tit_en {
  color: #a9a28a;
  font-family: var(--font-en);
  font-weight: var(--font-en-weight);
  font-size: 22px;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.footer_affiliations_tit_jp {
  font-size: 32px;
  letter-spacing: 0.12em;
}
.footer_affiliations_list {
  width: 888px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer_affiliations_list > li {
  width: 280px;
}
.footer_affiliations_list > li a {
  min-height: 90px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0 25px;
  background: #4c5a72;
  border-radius: 10px;
  color: #fff;
  font-size: 113%;
  line-height: 1.6;
  padding: 10px 20px 10px 30px;
}
@media (hover: hover) {
  .footer_affiliations_list > li a {
    transition-duration: .5s;
    transition-timing-function: ease-in-out;
  }
  .footer_affiliations_list > li a:hover {
    background-color: #a9a28a;
  }
}
.footer_affiliations_list > li a::before {
  display: block;
  content: "";
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  background: url(images/links.png) left top/100% auto no-repeat;
}

/* ==============================================
  *SP 連携病院
============================================== */
@media screen and (max-width: 640px) {
  .footer_affiliations {
    width: 89%;
    padding: 40px 0;
    margin-top: 40px;
  }
  .footer_affiliations .inner {
    display: block;
  }
  .footer_affiliations_tit {
    margin-bottom: 30px;
  }
  .footer_affiliations_tit_en {
    margin-bottom: 10px;
  }
  .footer_affiliations_tit_jp {
    font-size: clamp(16px, 5.3vw, 20px);
  }
  .footer_affiliations_list {
    width: 100%;
    display: block;
  }
  .footer_affiliations_list > li {
    width: 100%;
  }
  .footer_affiliations_list > li:not(:last-child) {
    margin-bottom: 15px;
  }
  .footer_affiliations_list > li a {
    min-height: 80px;
    gap: 0 15px;
  }
}

/* --------- footer_nav --------- */
.footer_nav {
  background: #f7e8dd;
  padding-top: 150px;
  padding-bottom: 280px;
  font-size: 113%;
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  line-height: 1.6;
}
.footer_nav a {
  display: inline-block;
  color: var(--text-color);
}
.footer_nav .inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  gap: 0 40px;
}
.footer_nav .inner > * {
  width: 100%;
}
.footer_nav .inner > *:last-child {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer_nav .inner > ul > li:not(:last-child) {
  margin-bottom: 45px;
}
.footer_nav .inner > ul > li a,
.footer_nav .inner .footer_nav_tit {
  white-space: nowrap;
  background: url(images/arrow.png) left top 0.3em/auto 1em no-repeat;
}
@media (hover: hover) {
  .footer_nav .inner > ul > li a {
    transition-timing-function: ease-in-out;
  }
  .footer_nav .inner > ul > li a:hover {
    background-position: left 8px top 0.3em;
  }
}
.footer_nav .inner > ul > li a,
.footer_nav .footer_nav_tit, .footer_nav_list {
  padding-left: 40px;
}
.footer_nav_list {
  margin-top: 30px;
}
.footer_nav_list > li:not(:last-child) {
  margin-bottom: 15px;
}
.footer_nav_list a {
  padding-left: 24px;
  position: relative;
}
@media (hover: hover) {
  .footer_nav_list a::after {
    display: block;
    content: "";
    width: calc(100% - 24px);
    height: 1px;
    background: currentColor;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: transform .2s ease-out;
    transform: scaleX(0);
  }
  .footer_nav_list a:hover::after {
    transform: scaleX(1);
  }
}
.footer_nav_list a::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background: #a9a28a;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc((1.6em - 8px) / 2);
}

/* ==============================================
  *SP footer_nav
============================================== */
@media screen and (max-width: 640px) {
  .footer_nav {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .footer_nav .inner {
    display: block;
  }
  .footer_nav .inner > * {
    width: 100% !important;
  }
  .footer_nav .inner > *:not(:last-child),
.footer_nav .inner > ul > li:not(:last-child) {
    margin-bottom: 15px;
  }
  .footer_nav .inner > ul > li a,
.footer_nav .footer_nav_tit, .footer_nav_list {
    padding-left: 1.5em;
  }
  .footer_nav_list {
    margin-top: 15px;
  }
  .footer_nav_list a {
    padding-left: 18px;
  }
}
@media screen and (max-width: 640px) and (hover: hover) {
  .footer_nav_list a::after {
    width: calc(100% - 18px);
  }
}

/* --------- footer_img --------- */
.footer_img {
  text-align: center;
  margin-top: -125px;
}

/* ==============================================
  *SP footer_img
============================================== */
@media screen and (max-width: 640px) {
  .footer_img {
    margin-top: 0;
  }
}

/* --------- footer_sns --------- */
.footer_sns {
  margin-top: 75px;
}
.footer_sns ul {
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer_sns ul a {
  color: #a9a28a;
}
@media (hover: hover) {
  .footer_sns ul a:hover {
    color: var(--sub-color);
  }
}

/* ==============================================
  *SP footer_sns
============================================== */
@media screen and (max-width: 640px) {
  .footer_sns {
    margin-top: 50px;
  }
}

/* --------- コピーライト --------- */
.copy {
  line-height: 1.3;
  text-align: center;
  margin-top: 25px;
}

.copy small {
  font-size: 13px;
}

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

  *診療時間表

================================================================================================================================== */
.office_hour table {
  width: 100%;
  line-height: 1.5;
  word-break: normal;
}

.office_hour table td,
.office_hour table th {
  border: none;
  background: #fff;
  padding: 25px 3px;
  text-align: center;
  vertical-align: middle;
}

.office_hour table tr:first-child th,
.office_hour table tr:first-child td {
  background-color: #a9a28a;
  color: #fff;
}

.office_hour table tr:not(:first-child, :last-child) th,
.office_hour table tr:not(:first-child, :last-child) td {
  border-bottom: 1px solid #ede0d3;
}

.office_hour table th {
  width: 30%;
  font-weight: normal;
}

.office_hour table td {
  width: 10%;
}

.office_hour .note {
  margin-top: 25px;
}
.office_hour .note p:not(:last-child) {
  margin-bottom: 12px;
}
.office_hour .note .closed {
  color: #a9a28a;
  font-weight: bold;
}

/* ==============================================
  *SP 診療時間表
============================================== */
@media screen and (max-width: 640px) {
  .office_hour table td,
.office_hour table th {
    padding: 15px 3px;
  }
  .office_hour .note {
    margin-top: 15px;
  }
  .office_hour .note p:not(:last-child) {
    margin-bottom: 0;
  }
}

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

  *書式

================================================================================================================================== */
.maincolor {
  color: var(--main-color);
}

.subcolor {
  color: var(--sub-color);
}

.indent {
  position: relative;
  display: flex;
  font-size: 100%;
}

.indent .sign {
  flex-shrink: 0;
}

.yellowline {
  text-decoration: underline;
  text-decoration-color: rgb(255, 245, 157);
  text-decoration-skip-ink: none;
  text-decoration-thickness: 0.5em;
  text-underline-offset: -0.175em;
}

.caution {
  color: #c52b2b;
}

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

  *タイトル

================================================================================================================================== */
h1 {
  color: #9f9f9f;
  font-size: 13px;
  line-height: 1.3;
}

/* ==============================================
  *SP タイトル
============================================== */
@media screen and (max-width: 640px) {
  h1 {
    text-align: center;
    padding-inline: 5%;
    margin-top: 10px;
  }
}

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

  *ボタン

================================================================================================================================== */
/* ----- 横並び用 ----- */
.btnflex {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.btnflex_center {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 10px;
}

/* ----- ボタン ----- */
.btn01 > *,
.btn01 a {
  color: #fff;
}
.btn01 > * {
  display: inline-block;
  background-color: #4c5a72;
  border-radius: 42px;
  font-size: 113%;
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-align: center;
  padding: 28px 50px;
}
.btn01 > *::after {
  content: "→";
  padding-left: 40px;
}

@media (hover: hover) {
  .btn01 a {
    transition-duration: .5s;
    transition-timing-function: ease-in-out;
  }
  .btn01 a:hover {
    background-color: #a9a28a;
  }
}

/* 準備中 */
.btn01.coming > * {
  pointer-events: none;
  position: relative;
}

.btn01.coming > *::before {
  content: "準備中";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  transform: translate(-50%, -50%);
}

/* ==============================================
  *SP　ボタン
============================================== */
@media screen and (max-width: 640px) {
  .btn01 > * {
    padding: 20px 30px;
  }
  .btn01 > *::after {
    padding-left: 1em;
  }
}

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

  *MPクラウド - スケジュール

================================================================================================================================== */
.sec_mpcloud {
  padding: 0 !important;
}

#mpcloud_schedule {
  position: fixed;
  bottom: 15px;
  left: 22px;
  z-index: 10001;
  width: 220px;
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
}

#mpcloud_schedule section {
  box-shadow: 0 8px 22px 8px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.shcedule_box {
  box-shadow: 0 8px 22px 8px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.shcedule_title {
  padding: 3px 0 0;
  border-bottom: 2px solid var(--line-color);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  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: var(--line-color);
  text-align: center;
}

.shcedule_box dd {
  height: auto;
  text-align: center;
  vertical-align: top;
}

.shcedule_today {
  padding: 10px 16px;
}

.schedule_comment {
  max-height: 200px;
  padding: 8px 12px;
  border-top: 1px solid var(--line-color);
  font-size: 14px;
  overflow-x: hidden;
  overflow-y: scroll;
}

/* ==============================================
  *SP MPクラウド
============================================== */
@media screen and (max-width: 640px) {
  #mpcloud_schedule {
    bottom: 60px;
  }
}

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

  *RIBON

================================================================================================================================== */
.ribon-link {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  height: auto;
  background-image: url(images/ribon_banner.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fa6565;
  border-radius: 5px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.ribon-link::before {
  content: "";
  display: block;
  padding-top: 36%;
}

.ribon-link:hover {
  opacity: 0.75;
  transition: 0.3s;
}

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

  *強制CSS

================================================================================================================================== */
.sp {
  display: none !important;
}

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

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 5px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

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

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr80 {
  margin-right: 5px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mr100 {
  margin-right: 100px !important;
}

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

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 5px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

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

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.ml80 {
  margin-left: 5px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.ml100 {
  margin-left: 100px !important;
}

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

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 5px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr30 {
  padding-right: 30px !important;
}

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

.pr50 {
  padding-right: 50px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr80 {
  padding-right: 5px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pr100 {
  padding-right: 100px !important;
}

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

.pb10 {
  padding-bottom: 10px !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: 5px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

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

.pl10 {
  padding-left: 10px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pl80 {
  padding-left: 5px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pl100 {
  padding-left: 100px !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;
}

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

.fsL {
  font-size: 140%;
}

.serif {
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
}

/* ==============================================
  *SP 強制CSS
============================================== */
@media screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}