@charset "UTF-8";
/*
    Template: swell
    Theme Name: www.shibuya-bunkamuradori-ladies.jp
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ハンバーガーメニュー */
.global-nav-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: #d91d5c;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* ハンバーガーアイコンのライン */
.global-nav-toggle::before,
.global-nav-toggle::after,
.global-nav-toggle span {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.global-nav-toggle::before {
    transform: translateY(-6px);
}

.global-nav-toggle::after {
    transform: translateY(6px);
}

.global-nav-toggle span {
    display: block;
}

/* アクティブ時 - ×マーク */
.global-nav-toggle.active {
    background-color: transparent;
    box-shadow: none;
}

.global-nav-toggle.active::before {
    transform: rotate(45deg) translateY(0);
    background-color: #999;
}

.global-nav-toggle.active::after {
    transform: rotate(-45deg) translateY(0);
    background-color: #999;
}

.global-nav-toggle.active span {
    opacity: 0;
}

/* CLOSEテキスト */
.global-nav-toggle.active::after {
    content: 'CLOSE';
    position: absolute;
    top: -30px;
    right: -5px;
    color: #999;
    font-size: 14px;
    letter-spacing: 1px;
    width: auto;
    height: auto;
    background: none;
    transform: none;
}

/* PC表示の調整 */
@media (min-width: 960px) {
    .global-nav-toggle {
        top: 30px;
        right: 30px;
    }
}

/* モバイルメニュー */
.global-nav {
    /* position: fixed; */
    /* top: 0; */
    /* left: 0; */
    /* width: 100%; */
    /* height: 100%; */
    /* background-color: #f5e6e0; */
    /* transform: translateX(100%); */
    /* transition: transform 0.3s ease; */
    /* z-index: 9999; */
    /* overflow-y: auto; */
    /* display: none; */
}

.global-nav.active {
    display: block;
    transform: translateX(0);
}

.global-nav .container {
    padding: 60px 20px 20px;
    max-width: 100%;
}

/* 閉じるボタン */
.global-nav .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10001;
}

.global-nav .close-btn::before,
.global-nav .close-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: #999;
    transform-origin: center;
}

.global-nav .close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.global-nav .close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.global-nav .close-text {
    position: absolute;
    top: -25px;
    right: -5px;
    color: #999;
    font-size: 12px;
    letter-spacing: 1px;
}

/* トップセクション */
.sp-menu-top {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

.sp-menu-top .btn-reservation {
    display: inline-block;
    background: #ff9bb3;
    color: #fff;
    text-align: center;
    padding: 20px 40px;
    margin: 0 auto 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

/* 電話・オンライン診療セクション */
.sp-menu-contact {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.sp-menu-contact .tel-box,
.sp-menu-contact .online-box {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    position: relative;
}

.sp-menu-contact .tel-box {
    background: #c8b88a;
    color: #fff;
}

.sp-menu-contact .online-box {
    background: #f4cc67;
    color: #fff;
}

.sp-menu-contact .icon {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
}

.sp-menu-contact .tel-number {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.sp-menu-contact .tel-time {
    font-size: 11px;
    color: #fff;
    opacity: 0.9;
    line-height: 1.4;
}

.sp-menu-contact .online-text {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

/* アクセスセクション */
.sp-menu-access {
    text-align: center;
    margin-bottom: 30px;
}

.sp-menu-access a {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    position: relative;
}

.sp-menu-access a::after {
    content: '›';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

/* 診療科目セクション */
.sp-menu-services {
    margin-bottom: 30px;
}

.sp-menu-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.sp-menu-services li {
    flex: 0 0 auto;
}

.sp-menu-services a {
    display: block;
    background: #ff9bb3;
    color: #fff;
    padding: 25px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* メインメニュー */
.sp-menu-nav {
    background: #fff;
    border: 1px dashed #e0c8be;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.sp-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-menu-nav > ul > li {
    border-bottom: 1px dashed #e0c8be;
    padding: 15px 0;
}

.sp-menu-nav > ul > li:last-child {
    border-bottom: none;
}

.sp-menu-nav a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    position: relative;
}

.sp-menu-nav .has-submenu {
    position: relative;
}

.sp-menu-nav .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    color: #ff9bb3;
    background: #ffe8ed;
    cursor: pointer;
    padding: 2px 8px;
    font-size: 11px;
    border-radius: 3px;
}

.sp-menu-nav .submenu {
    display: none;
    padding: 10px 0 0 20px;
}

.sp-menu-nav .submenu.active {
    display: block;
}

.sp-menu-nav .submenu li {
    padding: 8px 0;
}

.sp-menu-nav .submenu a {
    font-size: 14px;
    color: #666;
}

.note {
  color: white;
}

@media (min-width: 960px) {
  #content {
    padding-top: 8em !important;
  }
}
