/* =================================================
   MEDISMA予約 Landing Page
   Breakpoint: 640px (PC ↔ SP)
   PC content width: 1200px centered
   PC section gap: 80px / SP section gap: 50px
================================================= */

/* --------------------------------------------------
   Custom Properties
-------------------------------------------------- */
:root {
  --green:        #68ad33;
  --green-dark:   #267d00;
  --orange:       #e55927;
  --yellow:       #fee900;
  --text:         #323232;
  --text-light:   #555555;
  --bg-lightgreen: #F4F9F1;
  --bg-gray:      #f6f6f6;
  --border:       #e0e0e0;

  --font: 'IBM Plex Sans JP', sans-serif;
  --content-w: 1200px;
  --gap: 80px;
}

body,
.nav_wrap,
#mainvisual,
header,
footer,
section {
  min-width: 1240px;
}

@media screen and (max-width: 640px) {
  body,
  .nav_wrap,
  #mainvisual,
  header,
  footer,
  section {
    min-width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --gap: 50px;
  }
}

/* --------------------------------------------------
   Reset & Base
-------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button {
  font-family: var(--font);
}

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

  *ヘッダー

==================================================================================================================================*/
.header {
  position: absolute;
  width: 100%;
  height: 107px;
}

.header_inner {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
/* .header.reserve .header_inner{
  width: 1240px;
} */


/*----------ロゴ----------*/
.header_logo {
  position: absolute;
  top: 40px;
  z-index: 11;
}

.header_logo a {
  display: block;
}

.header_logo img {
  width: 240px;
}

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


/* --------------------------------------------------
   Container
-------------------------------------------------- */
.container {
  max-width: var(--content-w);
  margin-inline: auto;
}

/* --------------------------------------------------
   Image Switch: PC / SP
-------------------------------------------------- */
.img-pc { display: block; width: 100%; }
.img-sp { display: none;  width: 100%; }
.sp { display: none; }

@media (max-width: 640px) {
  .img-pc { display: none; }
  .img-sp { display: block; }
  .sp{
    display:block;
  }
}

/* --------------------------------------------------
   Sections — Common
-------------------------------------------------- */
.sec {
  padding-block: var(--gap);
}

/* --------------------------------------------------
   SECTION 01: Hero / MV
-------------------------------------------------- */
.sec-hero {
  padding:100px 0 0 0;
  /* padding-block: 0; */
  background-color: #fff;
  background-image:url(../images/pc/fv-bg.png);
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
}

.sec-hero .container {
  /* Hero image goes full width of content area */
  padding:40px 40px 0;
}


@media (max-width: 640px) {

  .sec-hero{
    padding:55px 0 0;
    background-image:url(../images/sp/sp-fv-gb.png);
  }
  .sec-hero .container{
    padding:20px 5% 0;
  }
}

/* --------------------------------------------------
   CTA Banner
-------------------------------------------------- */
.cta-banner {
  background: var(--green);
  padding: 44px 20px;
  text-align: center;
}

.cta-inner {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-copy {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  white-space: nowrap;
}

.cta-copy mark {
  background: var(--yellow);
  color: #333;
  padding: 0 6px;
  border-radius: 2px;
}

.cta-box{
  display:flex;
  justify-content: center;
  align-items: center;
  gap:24px;
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  min-width: 380px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-tag {
  display: block;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 20px;
  text-align: center;
  border-radius: 50px 50px 0 0;
}

.cta-btn.document .cta-tag {
  background: var(--green-dark);
  color: #fff;
}

.cta-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.cta-btn.document .cta-label {
  color: var(--green-dark);
}

.cta-arrow {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 640px) {
  .cta-banner {
    padding: 32px 16px;
  }

  .cta-copy {
    font-size: 24px;
    white-space: normal;
    line-height:1.5;
  }

  .cta-box {
    flex-direction: column;
    gap: 16px;
  }

  .cta-btn {
    min-width: 0;
    width: 100%;
    max-width: 380px;
  }

  .cta-label {
    font-size: 16px;
    padding: 10px 24px;
  }
}

/* --------------------------------------------------
   SECTION 02: Problems
-------------------------------------------------- */
.sec-problems {
  background: #fff;
}

/* --------------------------------------------------
   SECTION 03: Comparison (選ばれる理由)
-------------------------------------------------- */
.sec-comparison {
  background: var(--bg-lightgreen);
}

@media (max-width: 640px) {
  .sec-comparison {
    padding:40px 5%;
  }
}

/* --------------------------------------------------
   SECTION 04: Features (主な機能)
-------------------------------------------------- */
.sec-features {
  background: #fff;
}

/* --------------------------------------------------
   Section Heading (FAQ用)
-------------------------------------------------- */
.sec-heading {
  text-align: center;
  margin-bottom: 48px;
}

.sec-heading h2 {
  display: inline-block;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--text);
  padding-bottom: 18px;
  position: relative;
}

.sec-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--green-dark);
  border-radius: 2px;
}

/* --------------------------------------------------
   SECTION 05: FAQ
-------------------------------------------------- */
.sec-faq {
  background: #fff;
}

.faq-list {
  max-width: 1000px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

/* Q button */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 16px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s;
}

.faq-q:hover {
  background: #fafff7;
}

.faq-q-icon {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  width: 24px;
}

.faq-q-text {
  flex: 1;
  line-height: 1.5;
}

/* Toggle icon (+ / –) */
.faq-toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-dark);
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 2px;
  top: 50%;
  left: 50%;
}

/* Horizontal bar (always shown) */
.faq-toggle::before {
  width: 8px;
  height: 2px;
  transform: translate(-50%, -50%);
}

/* Vertical bar (hidden when open) */
.faq-toggle::after {
  width: 2px;
  height: 8px;
  transform: translate(-50%, -50%) scaleY(1);
  transition: transform 0.25s ease;
}

.faq-q[aria-expanded="true"] .faq-toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}

/* A panel — max-height accordion */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a.is-open {
  max-height: 600px;
}

.faq-a-inner {
  display: flex;
  gap: 14px;
  padding: 18px 16px 22px;
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
}

.faq-a-icon {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  width: 24px;
  padding-top: 2px;
}

.faq-a p {
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.8;
  color: var(--text-light);
  flex: 1;
}

/* --------------------------------------------------
   SECTION 06: Contact Form
-------------------------------------------------- */
.sec-form {
  background: var(--bg-lightgreen);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-eyecatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}

.form-title {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.form-lead {
  font-size: 14px;
  color: var(--text-light);
}

/* Form Card */
.contact-form {
  max-width: 740px;
  margin-inline: auto;
  background: #fff;
  border-radius: 12px;
  padding: 48px 56px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

@media (max-width: 640px) {
  .sec-form{
    padding:40px 5%;
  }
  .contact-form {
    padding: 28px 18px;
    border-radius: 8px;
  }
}

/* Form Rows */
.form-row {
  /* display: flex;
  flex-direction: column; */
  gap: 8px;
  margin-bottom: 24px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

/* Badges */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  line-height: 1.4;
}

.badge-req {
  background: var(--orange);
  color: #fff;
}

.badge-opt {
  background: #aaa;
  color: #fff;
}

/* Inputs */
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #bbb;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(104, 173, 51, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.7;
}

/* Select */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '';
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-light);
}

.form-select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(104, 173, 51, 0.15);
}

/* Agree */
.form-agree-row {
  margin-bottom: 32px;
}

.agree-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
}

.agree-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}

.agree-link {
  color: var(--green-dark);
  text-decoration: underline;
}

.agree-link:hover {
  color: var(--green);
}

/* Submit Button */
.form-submit-wrap {
  text-align: center;
}

.submit-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 80px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.12s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(104, 173, 51, 0.35);
}

.submit-btn:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 20px rgba(38, 125, 0, 0.35);
}

.submit-btn:active {
  transform: scale(0.97);
}

@media (max-width: 640px) {
  .submit-btn {
    padding: 16px 48px;
    font-size: 16px;
    width: 100%;
  }
}



.form-row input[type=text].input_name{
  width:48%;
  display:inline-block;
}
.form-row input[type=text].input_name.sei{
  margin-right: 1%;
}


/* --------------------------------------------------
   thanks page
-------------------------------------------------- */
.thanks{
  padding:80px 0 200px;
  text-align:center;
  margin-top:40px;
  font-size:18px;
}
.thanks h2{
  font-size:42px;
  margin:0 0 50px;
}
.footer{
  text-align:center;
}
.btn a{
  display:flex;
  justify-content: center;
  align-items: center;
  width:190px;
  height:60px;
  border-radius:30px;
  background:var(--green-dark);
  color:#fff;
  font-size:16px;
  font-weight:bold;
  margin:40px auto 0;
  text-decoration:none;
  box-shadow:0 5px 10px rgba(0,0,0,0.2);
}
.btn a:hover{
  box-shadow:0 0 0 rgba(0,0,0,0);
  transform:translateY(3px);
  transition:.2s;
}



@media (max-width: 640px) {

  .thanks{
    padding:50px 5% 150px;
    font-size:16px;
  }

  .thanks h2{
    font-size:34px;
  }

}

.sec-document{
  padding:160px 5% 60px;
}


@media (max-width: 640px) {

  .sec-document{
    padding:80px 5% 40px;
  }

}


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

  *ナビゲーション

==================================================================================================================================*/
@media print, screen and (min-width: 641px) {
  .nav_wrap :is(.btn_menu,.nav_btn,.sp_btn_area){
    display: none;
  }
  .nav_wrap {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    min-height: 107px;
    z-index: 10;
    border-radius: 200px;
  }
  
  .nav_wrap .sp_logo{
    display: none;
    margin-left: 100px;
  }
  .nav_wrap.reserve .sp_logo,
  .nav_wrap.consul .sp_logo{
    margin-left: 50px;
  }
  .menu_list_wrap {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  /*----------ナビメニュー----------*/
  .nav_menu {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 0 20px;
  }
  .nav_menu > li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav_menu_tit {
    display: block;
    color: var(--text-color);
    font-family: var(--not);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.12em;
    line-height: 1.5;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: 0.15s ease-out;
  }
  .parent_menu:not(.nav_menu_tit) {
    display: none;
  }
  /* ホバー */
  .nav_menu a.nav_menu_tit::before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    width: 100%;
    height: 1px;
    margin: auto;
    background-color: var(--main-color);
    transition: 0.15s ease-out;
    transform: scaleX(0);
    content: "";
    z-index: 1;
  }
  .nav_menu a.nav_menu_tit:hover {
    color: var(--main-color);
  }
  .nav_menu a.nav_menu_tit:hover::before {
    transform: scaleX(1);
  }

  /*----------ナビ固定時----------*/
  .nav_wrap.fixed {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    bottom: auto;
    margin: auto;
    width: 100%;
    max-width: 1400px;
    height: 107px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 5px 15px 0px rgba(110, 110, 110, 0.1);
    background:#fff;
  }
  .nav_wrap.fixed .sp_logo{
    position: absolute;
    z-index: 11;
    left: 0;
    display: block;
  }
  .nav_wrap.fixed .nav_menu {
    width: 1200px;
  }

  /*----------ドロップダウンメニュー----------*/
  .child_menu {
    display: none;
    flex-wrap: wrap;
    width: 280px;/*1列にしたい場合はwidthを300px前後にしてください*/
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 100%;
    left: 0%;
    z-index: 9999;
    padding: 15px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  .nav_slidebtm:hover .child_menu,
  .nav_slidebtm:focus-within > .child_menu {
    display: flex;
  }
  .child_menu a {
    display: flex;
    align-items: center;
    width: 100%;/*1列にする場合はwidth不要*/
    padding: 12px 20px;
    line-height: 1.4;
    color: var(--text-color);
    font-family: var(--not);
    font-weight: 700;
    font-size: 16px;
    position: relative;
  }
  .child_menu a:hover {
    color: var(--sub-color);
    background-color: var(--bg-color);
  }

  /* ------- メガメニュー ------- */
  .nav_menu > li.is_mega {
    position: static;
  }
  .nav_menu > li.is_mega .child_menu {
    width: 100%;
  }

  .sp_under_nav {
    display: none;
  }

  /* ボタン */
  .nav_menu .btn a{
    /* display: inline-block; */
    text-align: center;
    color: #fff;
    font-family: var(--not);
    font-size: 15px;
    letter-spacing: 0.12em;
    background: var(--orange);
    border-radius: 100px;
    padding: 14px;
    margin:0;
  }
  .nav_menu .btn.document a{
    background: var(--green-dark);
  }
  .nav_menu .btn a span{
    display: inline-block;
    margin-right: 10px;
  }
  .nav_menu .btn a span img{
    vertical-align: middle;
  }
  .nav_menu .btn a:hover{
    opacity: 0.8;
  }
}

@media screen and (max-width: 640px) {
  .nav_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
  }
  .nav_wrap .sp_logo {
    width: calc(100% - 55px);
  }
  .nav_wrap .sp_logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 55px;
    padding: 5px;
  }
  .nav_wrap .sp_logo img {
    width: auto;
    height: 30px;
  }

  /* ------- ハンバーガーボタン ------- */
  .btn_menu {
    position: relative;
    right: 0;
    color: #fff;
    width: 55px;
    background: var(--green-dark);
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: right 0.6s cubic-bezier(.19, 1, .22, 1);
  }
  .btn_menu i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: auto;
    font-style: normal;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
  .btn_menu span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 35px;
    height: 2px;
    background: #fff;
    transition: all 0.6s cubic-bezier(.19, 1, .22, 1);
    opacity: 1;
  }
  .btn_menu span:nth-of-type(1) {
    top: 10px;
  }
  .btn_menu span:nth-of-type(2) {
    top: 20px;
  }
  .btn_menu span:nth-of-type(3) {
    top: 30px;
  }

  /* MENUボタン押下時 */
  .btn_menu.active {
    right: calc(100% - 55px);
  }
  .btn_menu.active span:nth-of-type(1) {
    top: 20px;
    transform: rotate(225deg);
  }

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

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

  /* ------- スライドメニュー ------- */
  .menu_list_wrap {
    width: calc(100% - 55px);
    height: 100%;
    transition: right 0.6s cubic-bezier(.19, 1, .22, 1);
    background: var(--green-dark);
    line-height: 1.6;
    padding: 15px;
    position: fixed;
    top: 0;
    right: calc(-100% - 55px);
    z-index: 2;
    overflow: hidden;
  }
  /* 展開時 */
  body.nav-open .menu_list_wrap {
    overflow-y: scroll;
    overscroll-behavior-y: none;
    right: 0;
  }

  .menu_list_wrap,
  .menu_list_wrap a {
    color: #fff;
  }
  .menu_list_wrap a {
    display: block;
  }
  .nav_menu > li {
    border-bottom: 1px solid #fff;
  }
  .nav_menu > li:first-child {
    border-top: 1px solid #fff;
  }
  .nav_menu > li:nth-last-child(-n+2){
    border-bottom: none;
/*     margin-top: 10px; */
  }
  .nav_menu > li .btn a{
    background: #fff;
    padding: 20px;
    border-radius: 30px;
    color:#333;
    text-align:center;
  }
  .nav_menu > li .btn a span{
    display:none;
  }
  .nav_menu .nav_menu_tit,
  .nav_menu .parent_menu {
    padding: 15px 10px;
  }
  .nav_menu .nav_menu_en {
    display: none!important;
  }

  /* ------- 下層のあるメニュー ------- */
  .nav_menu .child_menu {
    padding-left: 15px;
    padding-bottom: 10px;
  }
  .nav_menu .child_menu a {
    padding: 5px 10px 5px 1.2em;
    text-indent: -1.2em;
  }
  .nav_menu .child_menu a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-right: 10px;
  }

  /* アコーディオンやメガでない時に、展開中に含まれる扉ページのリンクを非表示 */
  .nav_menu .nav_slidebtm:not(.is_accord,.is_mega) .child_menu a.sp:first-of-type {
    display: none!important;
  }

  /* ------- アコーディオン&メガメニュー ------- */
  .nav_slidebtm.is_accord,
  .nav_slidebtm.is_mega {
    cursor: pointer;
  }
  .nav_slidebtm.is_accord .parent_menu,
  .nav_slidebtm.is_mega .parent_menu {
    position: relative;
  }
  .nav_slidebtm:not(.is_accord,.is_mega) .parent_menu:not(.nav_menu_tit) {
    display: none;
  }
  .nav_slidebtm.is_accord .parent_menu::before,
  .nav_slidebtm.is_mega .parent_menu::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f067";
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    border: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  .nav_slidebtm.is_accord > a.nav_menu_tit,
  .nav_slidebtm.is_mega > a.nav_menu_tit {
    display: none;
  }
  .nav_slidebtm.is_accord .child_menu,
  .nav_slidebtm.is_mega .child_menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: height 0.5s cubic-bezier(.19, 1, .22, 1);
  }

  /* アコーディオン&メガメニュー展開時 */
  .nav_slidebtm.is_accord.active .parent_menu::before,
  .nav_slidebtm.is_mega.active .parent_menu::before {
    content: "\f068";
  }
  .nav_slidebtm.is_accord.active .child_menu,
  .nav_slidebtm.is_mega.active .child_menu {
    opacity: 1;
    visibility: visible;
  }

  /*WEB予約、問診、問い合わせ*/
  .nav_btn > li {
    margin-top: 5px;
  }
  .nav_btn > li a {
    color: var(--main-color);
    padding: 10px 15px;
    background: #fff;
  }
  .nav_btn > li a i {
    letter-spacing: 0;
    margin-right: 5px;
  }

  /*SNSボタン*/
  .menu_list_wrap .sp_btn_area {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .menu_list_wrap .sp_btn_area li {
    width: calc((100% - 10px) / 3);
  }
  .menu_list_wrap .sp_btn_area li a {
    background-color: #fff;
    color: var(--main-color);
    text-align: center;
    font-size: 12px;
    padding-top: 7px;
    padding-bottom: 3px;
    border-radius: 5px;
  }
  .menu_list_wrap .sp_btn_area li a i {
    display: block;
    font-size: 18px;
    letter-spacing: 0;
    margin-bottom: 3px;
  }

  /* 下部固定メニュー */
  .sp_under_nav {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    height: 52px;
  }
  .sp_under_nav ul {
    display: flex;
    justify-content: center;
    height: 100%;
    background: #fff;
  }
  .sp_under_nav li {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    box-sizing: border-box;
    text-align: center;
  }
  .sp_under_nav li a{
    background-color: var(--main-color);
  }
  .sp_under_nav li:nth-child(2) a{
    background-color: var(--sub-color);
  }
  .sp_under_nav li a {
    position: relative;
    display: block;
    color: #fff;
    font-weight: bold;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sp_under_nav li a:hover{
    color: #fff;
  }
  .sp_under_nav li a i {
    margin-right: 5px;
  }
  .sp_under_nav li a[href="tel:準備中"]{
    pointer-events: none;
    padding: 2px 2% 18px;
    background: #aaa;
  }
  .sp_under_nav li a[href="tel:準備中"]::after {
    content: "（準備中）";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 90%;
  }

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

.sec-corp{
  padding:0 5% 40px;
}
.copy{
  text-align:center;
  padding:20px 0;
  font-size:12px;
}