* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
    text-decoration: none;
    list-style: none;
    outline: none;
    color: #494949;
}

.PageWrapper {
    overflow: hidden;
    display: flex;
    flex-flow: column nowrap;
}

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    line-height: 1.5;
}

.HeaderContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 0;

    height: auto;
}

.InnerContainer {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* hover effect */
.HeaderContainer {
    position: relative;
    text-decoration: none;
    color: #000;
}

.HeaderContainer::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F0E793;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.HeaderContainer:hover::after {
    transform: scaleX(1);
}

/* hover effect */

/* hover effect */
.LinkWrapper {
    position: relative;
    text-decoration: none;
    color: #000;
}

.LinkWrapper:hover {
    opacity: 0.7;
}

.LinkWrapper::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F0E793;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.LinkWrapper:hover::after {
    transform: scaleX(1);
}

/* hover effect */

.LogoContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.LogoTexts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 100%;
    color: #2F5FE5;
}

.LogoTitle {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin: 0;
    color: #2F5FE5;
}

@media screen and (max-width: 768px) {
    .LogoTitle {
        font-size: 38px;
    }

}

@media screen and (max-width: 600px) {
    .LogoTitle {
        font-size: 24px;
    }
}

.LogoSubTitle {
    font-family: 'Damion', cursive;
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    margin-top: -16px;

    color: #efe5bb;
}

@media screen and (max-width: 768px) {
    .LogoSubTitle {
        font-size: 24px;
        margin-top: -23px;
    }
}

@media screen and (max-width: 600px) {
    .LogoSubTitle {
        font-size: 12px;
        margin-top: -14px;
    }
}

.LogoImage {
    max-width: 100px;
    margin-right: 16px;
}

/* hover effect */
.NavItem .LinkWrapper {
    position: relative;
    text-decoration: none;
    color: #000;
}

.NavItem .LinkWrapper:hover {
    opacity: 0.7;
}

.NavItem .LinkWrapper::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F0E793;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.NavItem .LinkWrapper:hover::after {
    transform: scaleX(1);
}

/* hover effect */

.NavItems {
    display: flex;
    flex-flow: row nowrap;
}

.NavItems .NavItem {
    margin-right: 1rem;
    padding-right: 2px;
    border-right: 2px solid #EDECD7;
}

.HeroContainer {
    width: 100%;
    position: relative;
    height: 35vh;
    overflow: hidden;
}

.HeroImg {
    position: absolute;
    /* 水仙画像のみのTOP設定 */
    top: -400px;
    width: 100%;
    min-height: 400px;
    object-fit: cover;
}

/* このあたりは花の画像によって都度調整 */
@media screen and (max-width: 900px) {
    .HeroImg {
        top: -200px;
    }
}

@media screen and (max-width: 600px) {
    .HeroImg {
        top: -200px;
    }
}

.BgContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;

    background-image: url('../img/background.jpg');
}

.BgRgba {
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 0;
}

.SectionTitle {
    position: relative;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5rem;
    font-size: 24px;
}

@media screen and (max-width: 600px) {
    .SectionTitle {
        letter-spacing: 0.3rem;
        font-size: 16px;
    }
}

@media screen and (max-width: 360px) {
    .SectionTitle {
        font-size: 14px;
    }
}

.SectionTitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #F4EEB4, #C2E9FF);
}

.Furigana {
    font-size: 8px;
    color: #3BE0FF;
    letter-spacing: 0.3rem;
}

.SectionTitleContainer {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    color: #494949;
}

.BioMain {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 16px;
    max-width: 960px;
    min-width: 240px;
}

@media screen and (max-width: 700px) {
    .BioMain {
        flex-direction: column;
    }
}

.BioImg {
    width: 323px;
    height: 352px;
    border-radius: 30px;
}

@media screen and (max-width: 700px) {
    .BioImg {
        width: 200px;
        height: 220px;
        align-self: center;
    }
}

.BioMsg {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 38px;
    min-width: 50%;
}

@media screen and (max-width: 600px) {}

.BlankContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    padding: 48px 0;
}

.CardContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 320px;
    border: 2px solid #F0E793;
    border-radius: 30px;
    padding: 16px;
    background-color: white;
}

.CardContainer .ImgContainer {
    display: flex;
    width: 100%;
    height: 150px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.CardImage {
    object-fit: cover;
}

.CardTitle {
    text-align: center;
    width: 100%;
    height: 30px;

    background: #C3E9FF;
    border-radius: 30px;
}

.CardDescription {
    flex: 2;
    width: 100%;
    height: 246px;
}

.ServicesContainer {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    margin-top: 16px;
    gap: 16px;
}

.FeatureContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    max-width: 960px;
    gap: 48px;
}

@media screen and (max-width: 992px) {
    .FeatureContainer {
        flex-direction: column;
        margin-top: 48px;
        gap: 24px;
        padding: 0 16px;
    }
}

@media screen and (max-width: 768px) {
    .FeatureContainer {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
}


@media screen and (max-width: 600px) {
    .FeatureContainer {
        flex-flow: column nowrap;
    }
}

.RoomImg {
    height: 383px;
    border-radius: 30px;
}

@media screen and (max-width: 768px) {
    .RoomImg {
        width: 360px;
        height: 300px;
    }
}

@media screen and (max-width: 600px) {
    .RoomImg {
        width: 360px;
        height: 300px;
    }
}

.FeatureDescription {
    height: 100%;
}

.FeatureDescription:last-child {
    text-align: center;
}

@media screen and (max-width: 600px) {
    .FeatureDescription {
        padding: 0 16px;
    }
}

.FeatureDescription> :not(:last-child) {
    height: 100%;
    margin-bottom: 16px;
}

@media screen and (max-width: 992px) {
    .FeatureDescription> :not(:last-child) {
        margin-bottom: 32px;
    }
}

.Check {
    color: #50bcfa;
}

.InfoContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50vh;
    margin-top: 2rem;
    max-width: 960px;
    padding: 0px;
    gap: 48px;
}

@media screen and (max-width: 768px) {
    .InfoContainer {
        gap: 16px;
        padding: 0 16px;
    }
}

@media screen and (max-width: 600px) {
    .InfoContainer {
        flex-direction: column;
        gap: 16px;
        height: auto;
    }
}

.InfoTexts {
    min-width: 50%;
    height: 100%;
}

@media screen and (max-width: 600px) {
    .InfoTexts {
        height: auto;
        padding: 0 16px;
    }
}

.InfoTexts> :not(:last-child) {
    margin-bottom: 16px;
}

.InfoMap {
    width: 50%;
    height: 100%;
    border: 0;
    border-radius: 30px;
}

@media screen and (max-width: 600px) {
    .InfoMap {
        width: 100%;
        height: 50%;
        padding: 0 16px;
    }
}

.FooterContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    background: #C3E9FF;
}

.QandABox {
    width: 75%;
    margin-bottom: 16px;
}

.QandABox :first-child {
    margin-top: 16px;
}

.QandABox :not(:last-child) {
    margin-bottom: 16px;
}

.QandASet {
    margin-bottom: 16px;
    padding: 0 16px;
}

.Question {
    border-bottom: #C2E9FE solid 2px;
    font-size: 16px;
    font-weight: 800;
}

.Question::before {
    content: "Q. ";
}

.Answer::before {
    content: "A. ";
}

.TreatmentsTemplate {
    max-width: 1200px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 0 16px;
    margin-top: 16px;
    gap: 16px;
}

.TreatmentsTemplate>p {
    text-align: center;
}

.TreatmentsTemplate>div {
    display: flex;
    flex-flow: row wrap;
    gap: 16px;
    justify-content: center;
}

.TreatmentsTemplate div .CardDescription .btn01 {
    margin-top: 1rem;
}

@media screen and (max-width: 600px) {
    .TreatmentsTemplate>div {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .TreatmentsTemplate>div {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 992px) {
    .TreatmentsTemplate>div {
        justify-content: center;
    }
}

@media screen and (max-width: 1200px) {
    .TreatmentsTemplate>div {
        justify-content: center;
    }
}

.IonDetails {
    display: block;
    background-color: #EDECD7;
    overflow: hidden;
}

.IonDetails-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.IonDetails-container .details-sections {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

.IonDetails-container .details-sections .details-section {
    max-width: 25%;
    min-width: 250px;
    margin: 2rem;
}

@media screen and (max-width: 1024px) {
    .IonDetails-container .details-sections .details-section {
        margin: 1rem 0.5rem;
    }
}

.IonDetails-container .details-sections .details-secTitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    background-color: #C2E9FF;
    border-radius: 30px;
    text-align: center;
}

.IonDetails-container .annotation {
    padding: 2rem;
}

/* Yoni RF Details */
.YoniRFDetails {
    display: block;
    background-color: #EDECD7;
    overflow: hidden;
}

.YoniRFDetails-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.YoniRFDetails-container .details-sections {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

.YoniRFDetails-container .details-sections .details-section {
    max-width: 40%;
    min-width: 300px;
    margin: 2rem;
}

@media screen and (max-width: 1024px) {
    .YoniRFDetails-container .details-sections .details-section {
        max-width: 100%;
        margin: 1rem 0.5rem;
    }
}

.YoniRFDetails-container .details-sections .details-secTitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    background-color: #C2E9FF;
    padding: 0.5rem;
    text-align: center;
}

.YoniRFDetails-container .details-imgContainer {
    margin-top: 1rem;
}

.YoniRFDetails-container .details-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

.YoniRFDetails-container .annotation {
    padding: 2rem;
}

.StickyButtonContainer {
    position: fixed;
    top: 260px;
    left: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
}

.StickyButtonContainer :not(:last-child) {
    margin-bottom: 16px;
}

.ReservationLinkBtn {
    background-color: #27d67095;
    padding: 8px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.InstagramLink {
    background-color: rgba(230, 52, 158, 0.7);
    padding: 8px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.FBLink {
    background-color: rgba(71, 133, 234, 0.7);
    padding: 8px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.ReservationLinkBtn:hover {
    padding-left: 24px;
    transition: padding-left 0.3s;
}

.FBLink:hover {
    padding-left: 24px;
    transition: padding-left 0.3s;
}

.InstagramLink:hover {
    padding-left: 24px;
    transition: padding-left 0.3s;
}

@media screen and (max-width: 600px) {
    .StickyButtonContainer {
        font-size: 8px;
    }
}

.ReservationContainer {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    min-height: 100dvh;
    padding: 5rem 3rem 0 3rem;
}

.ReservationContainer>* {
    margin-bottom: 2rem;
}

.ReservationText {
    padding: 0 16px;
}

.AboutContainer {
    min-height: 100vh;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.AboutSection>.SectionTitleContainer {
    margin-bottom: 24px;
}

.AboutSection p {
    max-width: 960px;
}

/* Price Tables */
.PriceTables {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.PriceTable {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-top: 2rem;
}

.PriceTable__title {
    position: relative;
    padding-left: 5px;
    font-size: 1.2rem;
}

.PriceTable__title::before {
    content: "";
    position: absolute;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #c2eaff;
}

.PriceTable__menu {
    background-color: #f5eee4;
    text-align: center;
}

.PriceTable__price {
    background-color: #faf8f2;
    text-align: right;
    font-weight: bold;
}

/* campaign */
.campaign {
    width: 500px;
    height: 333px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("/assets/img/campaignBg.jpeg");
}

.campaign__title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    position: relative;
}

@media screen and (max-width: 600px) {
    .campaign__title {
        font-size: 1.5rem;
    }
}

.campaign__title::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 30px;
    left: 0;
    top: 0;
    transform: translate(-10%, 80%);
    clip-path: ellipse(50% 40% at 50% 50%);
    background-color: rgba(71, 133, 234, 0.2);
}

@media screen and (max-width: 600px) {
    .campaign__title::after {
        transform: translate(-10%, 50%);
    }
}

.campaign__menus {
    display: flex;
    flex-direction: column;
}

.campaign__prices {
    display: flex;
    align-items: center;
}

.campaign__price--small {
    font-size: 0.8rem;
    text-decoration: line-through;
}

.campaign__price--large {
    font-size: 2rem;
    color: rgba(71, 133, 234, 0.7)
}

.campaign__arrow {
    color: rgba(71, 133, 234, 0.7)
}

.news {
    width: 500px;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media screen and (max-width: 600px) {
    .news {
        width: 300px;
    }
}

.news__title {
    font-size: 1.5rem;
}
/* お知らせセクション（トップページ） */
.news-section {
    margin-top: 3rem;
    padding: 2rem 0;
}

.news-list {
    max-width: 800px;
    margin: 2rem auto;
}

.news-item {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

.news-item__link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.news-item__link:hover {
    opacity: 0.7;
}

.news-item__date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
    display: block;
}

.news-item__title {
    font-size: 1.1rem;
    font-weight: 400;
}

.news-item__excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.6;
}

.news-more {
    text-align: center;
    margin-top: 2rem;
}

.news-empty {
    text-align: center;
    color: #888;
    padding: 2rem;
}

/* お知らせ一覧ページ */
.news-archive {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.news-list--archive .news-item {
    padding: 1.5rem 0;
}

.news-list--archive .news-item__title {
    font-size: 1.2rem;
}

/* お知らせ詳細ページ */
.news-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.news-article__header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.news-article__date {
    font-size: 0.9rem;
    color: #888;
    display: block;
    margin-bottom: 0.5rem;
}

.news-article__title {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.news-article__content {
    line-height: 1.8;
}

.news-article__content p {
    margin-bottom: 1.5rem;
}

.news-back {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

/* ページネーション */
.pagination {
    text-align: center;
    margin-top: 2rem;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    text-decoration: none;
    color: inherit;
}

.pagination .page-numbers.current {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

/* 固定ページコンテンツ */
.page-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    line-height: 1.8;
}

.page-content p {
    margin-bottom: 1.5rem;
}

/* お知らせ一覧ページ（トンマナ調整） */
.news-list--archive {
    max-width: 800px;
    margin: 0 auto;
}

.news-item--archive {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.news-item--archive:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-item--archive .news-item__link {
    display: block;
    padding: 1.5rem 2rem;
}

.news-item--archive .news-item__meta {
    margin-bottom: 0.5rem;
}

.news-item--archive .news-item__date {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.05em;
}

.news-item--archive .news-item__title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.news-item--archive .news-item__excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.news-item--archive .news-item__more {
    display: inline-block;
    font-size: 0.85rem;
    color: #C2A882;
    position: relative;
    padding-right: 1.5rem;
}

.news-item--archive .news-item__more::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.news-item--archive:hover .news-item__more::after {
    transform: translateX(4px);
}

@media screen and (max-width: 768px) {
    .news-item--archive .news-item__link {
        padding: 1rem 1.25rem;
    }
    
    .news-item--archive .news-item__title {
        font-size: 1.05rem;
    }
}
