@font-face {
    font-family: "IBM Plex Sans JP";
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-Regular.woff2") format("woff2");
}
@font-face {
    font-family: "IBM Plex Sans JP";
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-Medium.woff2") format("woff2");
}
@font-face {
    font-family: "IBM Plex Sans JP";
    font-weight: 900;
    font-display: swap;
    src: url("../fonts/IBM_Plex_Sans_JP/IBMPlexSansJP-Bold.woff2") format("woff2");
}
.font-ibm {
    font-family: "IBM Plex Sans JP", sans-serif;
}
@font-face {
    font-family: "BIZ UDPGothic";
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/BIZ_UDPGothic/BIZUDPGothic-Regular.woff2") format("woff2");
}
@font-face {
    font-family: "BIZ UDPGothic";
    font-weight: 900;
    font-display: swap;
    src: url("../fonts/BIZ_UDPGothic/BIZUDPGothic-Bold.woff2") format("woff2");
}
.font-biz {
    font-family: "BIZ UDPGothic", sans-serif;
}
/* @font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/FontAwesome/fa-brands-400.woff2") format("woff2");
}
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("../fonts/FontAwesome/fa-solid-900.woff2") format("woff2");
} */
@media screen and (min-width: 781px) {
    .pc--hidden {
        display: none !important;
    }
}
@media screen and (max-width: 780px) {
    .sp--hidden {
        display: none !important;
    }
}
:root {
    --main-font-color: #111;
    --accent-color: #de7399;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    position: relative;
    color: var(--main-font-color);
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}
iframe,
img,
video {
    max-width: 100%;
    vertical-align: top;
}
img {
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
}
a[href^="tel:"] {
    font-family: sans-serif;
}
@media (hover: hover) {
    a {
        transition: 0.3s;
    }
    a:hover {
        opacity: 0.7;
    }
}
h1 {
    font-size: 1.6rem;
    color: var(--accent-color);
}
@media screen and (max-width: 780px) {
    h1 {
        font-size: 1.3rem;
    }
}
.seo-h1 {
    position: absolute;
    font-size: 0.4rem;
}
.inner {
    max-width: 1280px;
    padding: 1.5rem 0.7rem;
    margin: 0 auto;
}
body.page .inner {
    max-width: 1280px;
    padding: 0 0.7rem 1.5rem;
    margin: 0 auto;
}
#main {
    padding-top: var(--header-height, 0);
    padding-bottom: 3rem;
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #fff;
}
#header .header-top {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}
#header .header-top .site-logo img {
    width: 260px;
}
#header .header-top .site-logo h1 {
    font-size: 1.3rem;
    line-height: 1.2;
}
#header .global-nav {
    background-color: #f0f0f0;
}
#header .global-nav ul {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    list-style: none;
}
#header .global-nav ul li {
    flex: 1;
    max-width: calc(100% / 3); /* 3つのみリンク設置のため一応 */
}
#header .global-nav ul li:not(:last-child) {
    border-right: 2px solid #fff;
}
#header .global-nav ul li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0.4rem 0.2rem;
}
#header .global-nav ul li a img {
    height: 2.4rem;
    padding: 0 .3rem;
}
@media screen and (max-width: 780px) {
    #header .header-top {
        padding: 0.5rem 55px;
    }
    #header .header-top .site-logo img {
        width: 65%;
    }
    #header .global-nav ul li a {
        font-size: 0.9rem;
    }
    #header .global-nav ul li a img {
        height: 1.8rem;
    }
}
.hamburger-toggle {
    width: 32px;
    height: 20px;
    display: block;
    position: absolute;
    top: 43%;
    left: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transform: translateY(-50%);
}
.hamburger-toggle::after {
    content: "MENU";
    position: absolute;
    bottom: -17px;
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 0.6rem;
    text-align: center;
    color: var(--accent-color);
    transition: .3s;
}
body[data-hamburger="open"] .hamburger-toggle::after {
    content: "CLOSE";
}
.hamburger-toggle span {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 5px;
    transition: .3s;
}
.hamburger-toggle span:first-child {
    top: 0;
}
.hamburger-toggle span:nth-child(2) {
    top: 50%;
}
.hamburger-toggle span:last-child {
    top: 100%;
}
body[data-hamburger="open"] .hamburger-toggle span:first-child {
    top: 50%;
    transform: rotate(-45deg);
}
body[data-hamburger="open"] .hamburger-toggle span:nth-child(2) {
    opacity: 0;
}
body[data-hamburger="open"] .hamburger-toggle span:last-child {
    top: 50%;
    transform: rotate(45deg);
}
.hamburger-menu {
    background-color: #fff;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
body[data-hamburger="open"] {
    overflow: hidden;
}
body[data-hamburger="open"] .hamburger-menu {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
}
.hamburger-menu .hamburger-menu__inner {
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 1.5rem 1rem 10rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}
.hamburger-menu .hamburger-menu__inner::-webkit-scrollbar {
    display: none
}
.hamburger-menu .hamburger-menu__inner > * {
    padding: 0.4rem 0;
}
.hamburger-menu .menu-title {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    font-family: "BIZ UDPGothic", sans-serif;
}
.hamburger-menu .sub-title {
    display: block;
    font-size: 0.96rem;
    text-align: center;
    margin-bottom: 0.5rem;
}
.hamburger-menu .list-menu {
    list-style: none;
}
.hamburger-menu .list-menu li {
    font-size: 1.16rem;
    position: relative;
    padding: 0.3rem 30px 0.3rem 0;
    border-bottom: 1px solid var(--main-font-color);
}
.hamburger-menu .list-menu li:not(:first-child) {
    margin-top: 0.4rem;
}
.hamburger-menu .list-menu li a {
    display: block;
}
.hamburger-menu .list-menu li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--main-font-color);;
    border-right: 1px solid var(--main-font-color);;
    transform: rotate(45deg) translateY(-50%);
}
.hamburger-menu .list-menu li a img {
    height: 1.7rem;
    padding: 0 0.3rem;
}
.hamburger-menu .box-menu {
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--main-font-color);
}
.hamburger-menu .box-menu .accordion-toggle {
    position: relative;
    cursor: pointer;
}
.hamburger-menu .box-menu .accordion-toggle::before,
.hamburger-menu .box-menu .accordion-toggle::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: var(--main-font-color);
    transform: translateY(-50%);
    transform-origin: center;
    transition: .3s;
}
.hamburger-menu .box-menu .accordion-toggle::before {
    transform: translateY(-50%) rotate(90deg);
}
.hamburger-menu .box-menu .accordion-toggle:not(.is-close)::after {
    opacity: 0;
}
.hamburger-menu .box-menu .accordion__container {
    max-height: calc(100vh - 1px);
    overflow: hidden;
    transition: .5s ease;
}
.hamburger-menu .box-menu .accordion-toggle.is-close + .accordion__container {
    max-height: 0;
}
.hamburger-menu .box-menu .filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
}
.hamburger-menu .box-menu .filter-list:not(:last-child) {
    margin-bottom: 0.6rem;
}
.hamburger-menu .box-menu .filter-list li {
    width: calc((100% - 5px) / 2);
    border: 1px solid var(--main-font-color);
}
.hamburger-menu .box-menu .filter-list li a {
    position: relative;
    display: inline-block;
    font-size: 0.8rem;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 0.6rem 16px 0.6rem 16px;
}
.hamburger-menu .box-menu .filter-list li a::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 8px;
    width: 9px;
    height: 9px;
    border-top: 1px solid var(--main-font-color);
    border-right: 1px solid var(--main-font-color);
    transform: translateY(-50%) rotate(45deg);
}
.hamburger-menu .box-menu .plan-list li:nth-child(odd):last-child {
    width: 100%;
}
#footer {
    padding-top: 2rem;
    border-top: 1px solid #aaa;
}
#footer .shop-info {
    display: flex;
    gap: 2rem;
}
#footer .business-day {
    width: 60%;
}
#footer .business-day-title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}
#footer .business-day .calendar {
    width: 100%;
    aspect-ratio: 1/1;
    margin-top: 1rem;
}
#footer .business-day .calendar iframe {
    width: 100%;
    height: 100%;
}
#footer .shop-outline {
    width: calc(40% - 2rem);
}
#footer .shop-outline .shop-exterior {
    width: 100%;
}
#footer .shop-outline .logo {
    width: 100%;
    margin-top: 2rem;
}
#footer .shop-outline .shop-addr {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
}
#footer .shop-outline .closed-day {
    font-size: 1.4rem;
    font-weight: 600;
    color: #c53d43;
}
#footer .shop-outline .tel {
    display: inline-flex;
    align-items: center;
    font-size: 1.7rem;
    font-weight: 600;
}
#footer .shop-outline .tel img {
    height: 1.9rem;
}
#footer .access {
    margin-top: 3rem;
}
#footer .access-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.8rem;
    font-family: "BIZ UDPGothic", sans-serif;
    color: var(--accent-color);
    letter-spacing: -0.02em;
}
#footer .access-title svg {
    width: 1.8rem;
}
#footer .access-title svg path {
    fill: var(--accent-color);
}
#footer .access iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 3/1;
    margin-top: 1rem;
}
#footer .access .gmap-link {
    text-align: right;
    margin-top: 0.3rem;
}
#footer .access .gmap-link a {
    position: relative;
    display: inline-block;
    padding: 0.6rem 18px 0.6rem 0;
}
#footer .access .gmap-link a::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 8px;
    width: 9px;
    height: 9px;
    border-top: 1px solid var(--main-font-color);
    border-right: 1px solid var(--main-font-color);
    transform: translateY(-50%) rotate(45deg);
}
#footer .access .root {
    padding: 0 2rem;
    margin-top: 2rem;
}
.footer-nav__container {
    margin-top: 2rem;
    background-color: #f0f0f0;
    padding: 2rem;
}
#footer .footer-nav {
    display: flex;
    gap: 2rem;
}
#footer .footer-nav .footer-col {
    width: calc((100% - 4rem) / 3);
}
#footer .footer-nav ul {
    list-style: none;
}
#footer .footer-nav ul li a {
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    width: 100%;
    height: 100%;
    padding: 0.6rem 18px 0.6rem 0;
    border-bottom: 1px solid var(--main-font-color);
}
#footer .footer-nav ul li a:not([href]) {
    pointer-events: none;
}
#footer .footer-nav ul li a[href]::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 8px;
    width: 9px;
    height: 9px;
    border-top: 1px solid var(--main-font-color);
    border-right: 1px solid var(--main-font-color);
    transform: translateY(-50%) rotate(45deg);
}
#footer .footer-nav-bottom {
    margin-top: 1rem;
}
#footer .footer-nav-bottom > div {
    width: 100%;
}
#footer .footer-nav-bottom .menu {
    display: flex;
    gap: 2rem;
}
#footer .footer-nav-bottom .menu li {
    width: calc((100% - 4rem) / 3);
}
@media screen and (max-width: 780px) {
    #footer {
        padding-top: 0;
    }
    #footer .business-day-title {
        font-size: 1.3rem;
    }
    #footer .business-day .calendar {
        aspect-ratio: 3/4;
    }
    #footer .shop-info {
        flex-direction: column;
        gap: 1rem;
        padding: 0.7rem 0;
        border-bottom: 1px solid var(--main-font-color);
    }
    #footer .business-day {
        width: 100%;
    }
    #footer .access {
        padding: 0.7rem;
        margin-top: 1rem;
    }
    #footer .access-title {
        color: var(--main-font-color);
        font-size: 1.3rem;
    }
    #footer .access .root {
        padding: 0;
        margin-top: 0;
        font-size: 0.9rem;
    }
    #footer .access .map-img {
        margin-top: 1rem;
    }
    #footer .shop-outline {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        width: 100%;
        margin-top: 1rem;
    }
    #footer .shop-outline .shop-exterior {
        width: 45%;
    }
    #footer .shop-outline .logo {
        margin-top: 0;
    }
    #footer .shop-outline .shop-addr {
        margin-top: 0.4rem;
        font-size: 0.95rem;
    }
    #footer .shop-outline .closed-day {
        font-size: 1rem;
    }
    #footer .shop-outline .tel {
        font-size: 1.1rem;
    }
    #footer .shop-outline .tel img {
        height: 1.25rem;
    }
    .outline__container {
        width: calc(55% - 0.6rem);
    }
    .footer-nav__container {
        padding: 1rem 0.7rem 7rem;
        margin-top: 1rem;
    }
    #footer .footer-nav {
        gap: 1rem;
        flex-direction: column;
    }
    #footer .footer-nav .footer-col {
        width: 100%;
    }
    #footer .footer-nav ul li a {
        font-size: 1rem;
    }
    #footer .footer-nav-bottom {
        margin-top: 1rem;
    }
    #footer .footer-nav-bottom .menu {
        gap: 0;
        flex-direction: column;
    }
    #footer .footer-nav-bottom .menu li {
        width: 100%;
    }
}
.fixed-cta {
    position: fixed;
    bottom: 5px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: .3s;
}
body.scrolled .fixed-cta {
    opacity: 1;
    visibility: visible;
}
.fixed-cta a {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0.5rem;
    min-height: 80px;
    background-color: #f0f0f0;
    border-radius: 6px 0 0 6px;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
}
.fixed-cta a:hover {
    opacity: 1;
    filter: brightness(106%);
}
.fixed-cta a .comment {
    background-color: #fff;
    padding: 0.2rem 0.4rem;
}
.fixed-cta a .text {
    margin-top: 0.3rem;
}
.fixed-cta a .line-icon {
    position: absolute;
    top: 36%;
    right: 0;
    width: 30px;
}
@media screen and (max-width: 780px) {
    .fixed-cta {
        width: 100%;
        flex-direction: row;
        gap: 0.2rem;
        bottom: 0;
        background-color: #fff;
        padding: 0.2rem;
    }
    .fixed-cta a {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 1;
        width: 100%;
        min-height: unset;
        padding: 0.5rem 0.3rem;
        font-size: 0.96rem;
        border-radius: 0;
    }
    .fixed-cta a.tel {
        flex-direction: row;
    }
    .fixed-cta a .comment {
        font-size: 0.7rem;
    }
    .fixed-cta a .phone-icon {
        width: auto;
        height: 1.7rem;
        margin-right: 0.3rem;
    }
    .fixed-cta a .line-icon {
        top: 26%;
        width: 25px;
    }
}
#toTop {
    position: fixed;
    right: 135px;
    bottom: 5px;
    aspect-ratio: 1/1;
    width: 80px;
    background-color: #f0f0f0;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
body.scrolled #toTop {
    opacity: 1;
    visibility: visible;
}
#toTop span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
#toTop span::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--main-font-color);
    border-right: 1px solid var(--main-font-color);
    transform: rotate(-45deg);
}
@media screen and (max-width: 780px) {
    #toTop {
        right: 3px;
        bottom: 78px;
        width: 60px;
        font-size: 0.8rem;
    }
    #toTop span::before {
        width: 8px;
        height: 8px;
    }
}
.btn {
    text-align: center;
    margin-top: 2rem;
}
.btn a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 400px;
    font-size: 1.2rem;
    line-height: 1.2;
    padding: 1rem 30px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--main-font-color);
}
.more-btn a::before,
.more-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    display: inline-block;
    width: 2px;
    height: 10px;
    background-color: var(--main-font-color);
    transform: translateY(-50%);
}
.more-btn a::after {
    transform: translateY(-50%) rotate(90deg);
}
.arrow-btn a::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 12px;
    height: 12px;
    border-top: 1.2px solid var(--main-font-color);
    border-right: 1.2px solid var(--main-font-color);
    transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 780px) {
    .btn {
        margin-top: 1.4rem;
    }
    .btn a {
        font-size: 0.78rem;
        padding: 0.7rem 17px;
    }
    .more-btn a::before,
    .more-btn a::after {
        right: 10px;
        width: 1px;
    }
    .arrow-btn a::after {
        right: 8px;
        width: 6px;
        height: 6px;
    }
}

#body .swiper {
    padding-bottom: 2rem;
}
#body .swiper .swiper-wrapper {
    width: 100%;
    height: auto;
}
#body .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#body .swiper .swiper-pagination {
    bottom: 0;
}
#body .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

#pagination {
    margin-top: 6rem;
}
#pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
#pagination .nav-links > * {
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--main-font-color);
}
#pagination .nav-links > .next,
#pagination .nav-links > .prev,
#pagination .nav-links > .dots {
    border: none;
    padding: 0.4rem 0;
}
#pagination .nav-links > .current {
    background-color: #f0f0f0;
    opacity: 0.6;
}
@media screen and (max-width: 780px) {
    #pagination {
        margin-top: 4rem;
    }
    #pagination .nav-links {
        gap: 0.3rem;
    }
    #pagination .nav-links > * {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
}