/* =========================================
   Responsive Styles
   ========================================= */

/* Utility Classes - Default (PC) */
.u-mobile,
.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  * {
    box-sizing: border-box;
  }

  .u-desktop,
  .pc-only {
    display: none !important;
  }

  .u-mobile,
  .sp-only {
    display: block !important;
  }

  /* Base */
  html,
  body,
  .site {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* Header */
  .site-header {
    height: 70px;
    padding: 0;
  }

  .header-top {
    align-items: center;
    height: 100%;
    justify-content: space-between;
  }

  .site-branding {
    width: auto;
    padding-bottom: 0;
    flex: 1;
  }

  .site-branding img {
    height: auto;
    width: 200px;
  }

  /* Hamburger Menu */
  .hamburger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #1D536F;
    border: none;
    cursor: pointer;
    z-index: 200;
    padding: 0;
    margin-left: auto;
  }

  .hamburger-menu .bar {
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
  }

  .hamburger-menu .menu-text {
    font-size: 12px;
    color: #fff;
    font-family: var(--font-zen);
    font-weight: 500;
    line-height: 1;
  }

  .hamburger-menu.is-active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.is-active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  /* Navigation (Drawer) */
  body.home .main-navigation,
  body.front-page .main-navigation,
  body:not(.home):not(.front-page) .main-navigation,
  .main-navigation {
    position: fixed;
    top: 0 !important;
    right: -100%;
    left: auto;
    width: 80%;
    height: 100vh;
    background-color: var(--color-secondary);
    transition: 0.3s;
    z-index: 150;
    padding-top: 80px;
    overflow-y: auto;
  }

  .main-navigation.is-active {
    right: 0 !important;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
    padding-bottom: 100px;
    display: block;
    padding: 0 15px;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px dashed #eee;
    flex: none;
  }

  .nav-item::after,
  .nav-item:first-child::before {
    display: none;
  }

  .nav-item a {
    padding: 15px 20px;
    justify-content: flex-start;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: #333 !important;
    /* Change text color for mobile menu */
    position: relative;
  }

  .nav-item.has-sub-menu>a::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transition: transform 0.3s;
    transform: translateY(-50%) rotate(45deg);
  }

  .nav-item.has-sub-menu.is-open>a::after {
    transform: translateY(-50%) rotate(225deg);
  }

  .nav-item a .nav-icon {
    margin-bottom: 0;
    width: 24px;
    height: auto;
    /* Reset height */
  }

  .nav-jp {
    font-size: 16px;
    color: #ffffff !important;
  }

  .nav-en {
    font-size: 12px;
    color: #ffffff !important;
    flex: 1;
    text-align: right;
    padding-right: 30px;
  }

  .sub-menu {
    display: none !important;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f9f9f9;
    width: 100%;
    padding: 0;
  }

  .nav-item.has-sub-menu.is-open .sub-menu {
    display: block !important;
  }

  .sub-menu li a {
    color: #333 !important;
    padding: 10px;
    font-size: 14px;
  }

  /* Hero Section */
  .hero-section {
    height: 700px;
    min-height: auto;
    padding-top: 0;
  }

  .hero-text-area {
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    z-index: 2;
  }

  .hero-title-top,
  .hero-title-bottom {
    font-size: 32px;
    background: transparent;
    display: block;
    padding: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .hero-title-top::after,
  .hero-title-bottom::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 12px;
    background-repeat: repeat-y;
    background-image: url(img/deco-hero-title1_sp.webp);
    width: 300px;
  }

  .hero-features {
    bottom: 30px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 5px;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .feature-circle {
    width: 110px;
    height: 110px;
    padding: 0;
  }

  .feature-circle::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    border: 1px solid #fff;
    pointer-events: none;
    z-index: 2;
  }

  .feature-gold {
    outline: 1px solid #C4AC64;
    outline-offset: -4px;
  }

  .feature-blue {
    outline: 1px solid #78b0cd;
    outline-offset: -4px;
  }

  .feature-dark {
    outline: 1px solid #1d536f;
    outline-offset: -4px;
  }

  .circle-icon {
    top: 15px;
    width: 24px;
  }

  .circle-inner {
    width: 111%;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    padding-bottom: 0;
  }

  .circle-icon img {
    width: 100%;
  }

  .feature-text-large {
    font-size: 14px;
    margin-top: 8px;
  }

  .feature-text-small {
    font-size: 9px;
  }

  .feature-text {
    font-size: 11px;
    line-height: 1.2;
    margin-top: 8px;
  }

  .section-title-en {
    font-size: 40px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 2.8rem;
    letter-spacing: 5px;
    width: 100%;
    word-break: break-all;
  }

  /* Info Access Section */
  .info-access-container {
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }

  .info-access-left,
  .info-access-right {
    width: 100%;
    padding: 40px 0;
  }

  .info-access-left::after,
  .info-access-right::after {
    display: none;
  }

  .news-area,
  .medical-info-area,
  .access-area {
    margin-top: 0px;
    padding: 20px;
  }

  .news-area {
    margin-bottom: 30px;
  }

  .news-box {
    padding: 20px;
  }

  .medical-hours-table {
    padding: 10px 15px;
    overflow-x: auto;
  }

  .medical-hours-table table {
    min-width: 300px;
  }

  .medical-hours-table table th,
  .medical-hours-table table td {
    font-size: 15px;
    padding: 5px 2px;
  }

  .medical-hours-table .circle {
    font-size: 15px;
  }

  .medical-note {
    font-size: 16px;
  }

  .access-map {
    margin: 0 auto;
  }

  /* Features Section */

  .features-section {
    padding: 0;
    max-width: 1480px;
    margin: 50px auto;
  }

  .features-section .section-title-area {
    margin-top: 0;
  }

  .feature-row {
    flex-direction: column;
    gap: 20px;
    height: auto;
    margin: 80px 0;
  }

  .feature-row.reverse {
    flex-direction: column;
  }

  .feature-image {
    width: 90%;
    height: 250px;
    margin: 0 auto;
  }

  .feature-content {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .feature-heading {
    font-size: 22px;
  }

  .feature-subheading {
    font-size: 20px;
    line-height: 1.6;
  }

  .feature-desc {
    font-size: 16px;
  }

  .feature-title-line {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(img/deco-features-title.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 60%;
    height: 14px;
  }

  .feature-equipment-list {
    margin-top: 30px;
    gap: 5px;
  }

  .equipment-item {
    min-width: 0;
    box-sizing: border-box;
  }

  .equipment-name {
    background-color: #78b0cd;
    color: #fff;
    font-family: var(--font-zen);
    font-size: 9px;
    font-weight: bold;
    padding: 5px 0;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    margin: 0;
    display: inline-block;
    min-width: 100px;
    text-align: center;
  }

  .feature-number {
    justify-content: center;
  }

  .feature-label {
    font-size: 14px;
    margin-right: 5px;
    margin-bottom: 0;
  }

  .number {
    font-size: 60px;
    margin-right: 10px;
  }

  .feature-heading {
    font-size: 24px;
    width: 100%;
    margin-top: 5px;
  }

  .feature-heading span {
    font-size: 18px;
  }

  .feature-01::before {
    content: "";
    position: absolute;
    top: 200px;
    right: 3%;
    width: 100px;
    height: 80px;
    background: url(img/deco-feature-1.webp) no-repeat;
    background-size: contain;
    z-index: 0;
  }

  .feature-02 .deco-1 {
    top: -75px;
    right: 3%;
    width: 100px;
    height: 100px;
    background-image: url(img/deco-feature-2_1.webp);
  }

  .feature-02 .deco-2 {
    top: 110px;
    right: 3%;
    width: 100px;
    height: 160px;
    background-image: url(img/deco-feature-2_2.webp);
  }

  .feature-03 .deco-1 {
    top: 140px;
    right: 3%;
    left: auto;
    width: 150px;
    height: 150px;
  }

  .feature-03 .deco-2 {
    bottom: -100px;
    left: 3%;
    width: 111px;
    height: 121px;
    background-image: url(img/deco-feature-3_2.webp);
  }

  .feature-04 .deco-2 {
    top: 90px;
    right: 3%;
    width: 114px;
    height: 192px;
    background-image: url(img/deco-feature-4_2.webp);
  }

  .feature-04 .deco-1 {
    bottom: -70px;
    left: 3%;
    width: 96px;
    height: 80px;
    background-image: url(img/deco-feature-4_1.webp);
  }

  .feature-05 .deco-1 {
    top: 150px;
    right: 3%;
    left: auto;
    width: 114px;
    height: 109px;
    background-image: url(img/deco-feature-5.webp);
  }

  .feature-06 .deco-1 {
    top: -33px;
    left: 20%;
    width: 100px;
    height: 125px;
    background-image: url(img/deco-feature-6_1.webp);
  }

  .feature-06 .deco-2 {
    top: -33px;
    right: 10%;
    width: 100px;
    height: 125px;
    background-image: url(img/deco-feature-6_2.webp);
  }

  .feature-bottom {
    padding: 0 20px;
  }

  /* News List */
  .news-list li dl {
    display: block;
    /* Stack dt and dd */
  }

  .news-list li dt {
    width: 100%;
    margin-bottom: 5px;
  }

  .news-list li dd {
    width: 100%;
    padding-left: 0;
  }

  /* Greeting Section */
  .greeting-section {
    height: auto;
    aspect-ratio: auto;
    padding: 60px 0;
    background-position: center;
  }

  .greeting-section::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: 20px 0;
    background: url(img/bg_before_greeting_sp.webp) top / cover no-repeat;
    z-index: 0;
  }

  .greeting-inner {
    flex-direction: column-reverse;
    padding: 0 20px;
    gap: 0;
  }

  .greeting-content {
    width: 100%;
  }

  .greeting-image-area {
    position: static;
    display: flex;
    align-items: flex-start;
    width: 60%;
    min-height: auto;
    margin-left: auto;
  }

  .greeting-title {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 50px;
    font-style: normal;
    font-weight: 275;
    line-height: 100%;
    letter-spacing: 12.8px;
  }

  .greeting-subtitle-row {
    text-align: center;
    gap: 10px;
  }

  .greeting-line {
    border-top: 4px dotted #fff;
  }

  .greeting-image {
    width: 100%;
  }

  .greeting-message-title {
    font-size: 24px;
  }

  .greeting-profile-circle {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    padding: 20px;
  }

  .btn-more-circle {
    position: absolute;
    top: 22%;
    left: 30%;
    width: 80px;
    height: 80px;
  }

  .more-arrow {
    font-size: 6px;
    line-height: 1;
  }

  .greeting-profile-circle .job-title {
    font-size: 15.75px;
  }

  .greeting-profile-circle .name {
    font-size: 21px;
  }

  .greeting-profile-circle .name-kana {
    font-size: 10.5px;
  }

  .greeting-text {
    font-size: 16px;
  }

  .medical-section {
    padding: 50px 0 0;
  }

  .medical-header {
    position: relative;
    z-index: 2;
  }

  .medical-title-group .section-title {
    font-size: 48px !important;
  }

  .medical-title-group .section-subtitle {
    font-size: 24px !important;
    color: #313F46 !important;
  }

  .medical-section .deco-1 {
    top: 6%;
    left: 0;
    width: 60px;
    height: 100px;
    background-image: url(img/deco-medical-1.webp);
  }

  .medical-section .deco-2 {
    top: 6%;
    right: -3%;
    width: 70px;
    height: 100px;
    background-image: url(img/deco-medical-2.webp);
  }

  .medical-special-row {
    display: flex;
    flex-direction: column;
    padding: 0;
  }


  .special-text {
    font-family: var(--font-zen);
    font-size: 24px;
  }

  .medical-general-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .medical-general-container {
    padding: 30px 0;
  }

  .general-item {
    padding: 10px 20px;
  }

  .general-icon {
    width: 36px;
    height: 36px;
  }

  .general-icon img {
    width: 36px;
    height: 36px;
  }

  .general-item h3 {
    font-size: 16px;
  }

  .recruit-section .section-title,
  .blog-section .section-title {
    font-size: 40px;
  }

  /* 下層ページ共通 */
  .page-hero {
    height: 250px;
  }

  .page-navigation {
    height: auto;
    overflow-x: auto;
  }

  .page-nav-menu {
    width: max-content;
  }

  .reception-content {
    flex-direction: column;
  }

  .reception-info-text {
    width: 100%;
    padding: 10px;
  }

  .interior-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-hero-content {
    top: 60%;
  }

  .page-title-jp {
    font-size: 32px;
  }

  .page-title-jp::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -35px;
    height: 30px;
    background-repeat: repeat-x;
    background-image: url(img/deco-hero-title1_sp.webp);
    max-width: 600px;
  }

  .page-title-en {
    font-size: 24px;
  }

  .heading-header {
    margin-bottom: 30px;
  }

  .heading-title {
    font-size: 24px;
    padding: 15px 0;
  }

  .heading-title-en {
    font-size: 32px;
    padding: 8px 0 0px;
  }

  .heading-title-jp {
    font-size: 18px;
    padding: 10px 0 6px;
  }

  .heading-title-bg::before {
    content: '';
    display: block;
    width: 80px;
    height: 65px;
    background-size: contain;
    top: 0;
    left: -32px;
  }

  .heading-title-bg::after {
    content: '';
    display: block;
    width: 80px;
    height: 65px;
    background-size: contain;
    top: 0;
    right: -32px;
  }

  .section-title-jp {
    font-size: 22px;
  }

  .section-header-line::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 17px;
    background-color: var(--color-secondary);
    border-radius: 0 0 200px 200px;
    z-index: 1;
  }

  /* 医院紹介 */
  .office-section {
    padding: 50px 0 0;
  }

  .office-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .office-text,
  .interior-desc {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .reception-table {
    padding: 10px;
  }

  .reception-table th,
  .reception-table td {
    font-size: 15px;
    padding: 0 5px;
  }

  .reception-table tbody th {
    font-size: 15px;
  }

  .reception-table thead th {
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
  }

  .reception-table td .circle {
    font-size: 15px;
  }

  .reception-table .time-cell {
    font-size: 12px;
    line-height: 1.0;
  }

  .reception-table td .slash {
    color: #8c8c8c;
  }

  .reception-info-text p {
    font-size: 16px;
  }

  /* スタッフ紹介 */
  .staff-greeting-section,
  .staff-doctor-section {
    padding: 50px 0;
  }

  .staff-greeting-section .greeting-content,
  .staff-doctor-section .doctor-item {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 30px;
  }

  .staff-greeting-section .greeting-image,
  .staff-doctor-section .doctor-image {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }

  .staff-greeting-section .greeting-image img,
  .staff-doctor-section .doctor-image img {
    width: 60%;
    height: auto;
  }

  .staff-greeting-section .greeting-text {
    font-size: 16px;
  }

  .staff-greeting-section .greeting-profile,
  .staff-doctor-section .doctor-profile {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .staff-greeting-section .greeting-text-area,
  .staff-doctor-section .doctor-info {
    flex: 1;
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .staff-greeting-section .greeting-role,
  .doctor-role {
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    font-family: "Zen Kaku Gothic Antique";
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }

  .staff-greeting-section .greeting-name,
  .staff-doctor-section .doctor-name {
    flex-direction: column;
    gap: 5px;
  }

  .staff-greeting-section .name-jp,
  .staff-doctor-section .name-jp {
    font-size: 28px;
  }

  .staff-greeting-section .name-en,
  .staff-doctor-section .name-en {
    font-size: 20px;
  }

  .staff-doctor-section .doctor-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 0;
  }

  .staff-doctor-section .doctor-history {
    padding: 20px;
    border: 1px solid #313F46;
    box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.25);
  }

  .staff-doctor-section .history-title {
    font-size: 24px;
    border-bottom: 1px solid #313F46;
  }

  .staff-doctor-section .history-list li {
    font-size: 16px;
  }

  /* 診療案内 */

  .general-section {
    padding: 50px 0;
  }

  .general-intro {
    margin-bottom: 50px;
  }

  .general-text {
    font-size: 16px;
    text-align: left;
  }

  .block-body,
  .stage-content {
    flex-direction: column;
    gap: 20px
  }

  .block-image,
  .stage-image {
    width: 100%;
    text-align: center;
  }

  .stage-image img {
    width: 70%;
    height: auto;
  }

  .block-header {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding: 10px 0;
    border-radius: 110px;
    background: #C3AC65;
  }

  .block-header::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 2px dashed #FFF;
    border-radius: 110px;
    pointer-events: none;
  }

  .block-title {
    font-size: 24px;
    padding: 0px 20px;
  }

  .block-text {
    font-size: 16px;
  }

  .progression-intro {
    text-align: left;
    margin-bottom: 30px;
    font-size: 16px;
  }

  .section-header-line {
    background-color: var(--color-secondary);
    padding: 12px 0;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
  }

  .content-block,
  .progression-block {
    margin-bottom: 30px;
  }

  .stage-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .stage-label,
  .treatment-header,
  .ba-label {
    font-size: 20px;
    font-weight: 700;
    color: #C3AC65;
    font-family: var(--font-zen);
    margin-bottom: 20px;
    text-align: center;
    padding: 5px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 110px;
    border: 3px solid #C3AC65;
  }

  .stage-text {
    font-size: 16px;
  }

  .treatment-item {
    margin-bottom: 50px;
  }


  .laser-list-title {
    font-size: 16px;
    margin: 0;
  }

  .qa-item {
    margin-bottom: 20px;
  }

  .qa-question {
    padding: 10px;
    padding-right: 50px;
  }

  .qa-answer {
    padding: 10px;
    border: 1px solid #313F46;
  }

  .qa-text {
    font-size: 16px;
  }

  .surgery-intro-box {
    padding: 20px;
    margin-bottom: 30px;
  }

  .surgery-intro-title {
    font-size: 22px;
  }

  .surgery-condition-list li {
    font-size: 16px;
  }

  .esthetic-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 30px;
  }

  .esthetic-item-header {
    font-size: 20px;
  }

  .esthetic-item-body {
    flex-direction: column;
    padding: 20px;
    align-items: center;
  }

  .esthetic-item-image {
    width: 100%;
  }

  .esthetic-item-desc {
    font-size: 16px;
    padding: 0 20px 20px;
  }

  .esthetic-spec-table th,
  .esthetic-spec-table td {
    font-size: 14px;
    padding: 10px;
  }

  .block-text.full-width {
    text-align: left;
  }

  .risk-block {
    background: #F6F2E6;
    padding: 20px;
  }

  .risk-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
  }

  .risk-list li {
    font-size: 16px;
  }

  .whitening-image-half p {
    font-size: 16px;
  }

  .caution-title {
    font-size: 20px;
    margin: 10px 0;
  }

  .process-intro {
    text-align: left;
    margin-bottom: 30px;
    font-size: 16px;
  }


  /* 求人情報 */
  .recruit-section-page {
    padding: 40px 0;
  }

  .recruit-intro {
    font-size: 16px;
    margin-bottom: 40px;
    text-align: left;
  }

  .requirements-table {
    gap: 20px;
  }

  .requirements-row {
    flex-direction: column;
  }

  .requirements-row dt {
    width: 100%;
    padding: 15px;
    justify-content: flex-start;
    font-size: 16px;
  }

  .requirements-row dd {
    width: 100%;
    font-size: 16px;
    padding: 10px 15px;
  }

  /* ブログ */
  .blog-item-excerpt {
    font-size: 16px;
  }

  .blog-single-title {
    font-size: 24px;
  }

  .blog-single-content {
    font-size: 16px;
  }

  /* Footer */
  .site-footer {
    padding-top: 20px;
    padding-bottom: 60px;
    /* 固定フッター分 */
  }

  .footer-top {
    padding: 0;
    margin-bottom: 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-contact-row {
    flex-direction: column;
  }

  .footer-address {
    font-size: 16px;
    margin: 20px 0;
  }

  .footer-tel-box,
  .footer-web-box {
    width: 100%;
    padding: 10px 0;
  }

  .footer-tel-box .tel-label {
    margin: 5px 0 10px;
  }

  .btn-web-reserve-footer {
    width: 70%;
    margin: 0 auto;
    padding: 10px 0;
  }

  /* SP Fixed Footer */
  .sp-fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    height: 60px;
  }

  .fixed-footer-list {
    font-family: "Zen Maru Gothic";
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .fixed-footer-item {
    height: 100%;
    box-sizing: border-box;
    position: relative;
  }

  .fixed-footer-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    padding: 0;
  }

  /* Inner Border Effect */
  .fixed-footer-item a::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    pointer-events: none;
  }

  /* TEL */
  .fixed-footer-item.tel {
    width: 60px;
    flex: none;
    background-color: var(--color-primary);
  }

  .fixed-footer-item.tel .icon img {
    width: 24px;
    height: auto;
    filter: brightness(0) invert(1);
    /* White icon */
  }

  /* WEB Reserve */
  .fixed-footer-item.web {
    flex: 1.5;
    background-color: var(--color-accent);
  }

  .fixed-footer-item.web a {
    flex-direction: row;
    gap: 5px;
  }

  .fixed-footer-item.web .icon img {
    width: 28px;
    height: auto;
    filter: brightness(0) invert(1);
  }

  .fixed-footer-item.web .text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
  }

  .fixed-footer-item.web .sub {
    font-size: 10px;
    display: block;
  }

  .fixed-footer-item.web .main {
    font-size: 14px;
    font-weight: bold;
    display: block;
  }

  /* Triangle decoration */
  .fixed-footer-item.web::after {
    content: "";
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #fff transparent;
  }

  /* Access */
  .fixed-footer-item.access {
    flex: 1.5;
    background-color: var(--color-secondary);
  }

  .fixed-footer-item.access a {
    flex-direction: row;
    gap: 5px;
  }

  .fixed-footer-item.access .icon img {
    width: 24px;
    height: auto;
    filter: brightness(0) invert(1);
  }

  .fixed-footer-item.access .text {
    font-size: 14px;
    font-weight: bold;
  }

  /* Page Top */
  .fixed-footer-item.pagetop {
    width: 60px;
    flex: none;
    background-color: #fff;
    border-left: 1px solid #eee;
  }

  .fixed-footer-item.pagetop a {
    color: var(--color-text);
  }

  .fixed-footer-item.pagetop a::before {
    border-color: var(--color-text);
    /* Black border */
  }

  .fixed-footer-item.pagetop .arrow-up {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--color-text);
    border-left: 2px solid var(--color-text);
    transform: rotate(45deg);
    margin-top: 5px;
    margin-bottom: 2px;
  }

  .fixed-footer-item.pagetop .text {
    font-size: 9px;
    line-height: 1;
    text-align: center;
  }

  /* Page Top Button (Hide original in SP) */
  .page-top-btn {
    display: none;
  }
}