@charset "utf-8";

/* ===============================================
   Base / Common
   =============================================== */
@keyframes aboutIntroUnderline {
    0% {
        background-position: 0% 100%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 100%;
    }
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
    /* 1rem = 10px */
}

body {
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 1.2px;
    color: #333333;
    min-width: 370px;
    margin: auto;
}

@media screen and (min-width: 960px) {
    body {
        font-size: 1.5rem;
    }
}

/* Font */
.heading {
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.oooh-baby {
    font-family: 'Oooh Baby', cursive;
}

img {
    width: 100%;
    height: auto;
}

/* Utility: SP/PC Display Switching */
.sp {
    display: block;
}

.pc {
    display: none;
}

/* iPad (768px~) - まだSP表示のまま */
@media screen and (min-width: 768px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
}

/* PC (960px~) - 切り替え */
@media screen and (min-width: 960px) {
    .sp {
        display: none;
    }

    .pc {
        display: block;
    }
}


/* ===============================================
   Header
   =============================================== */
.header {}

.header__inner {
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 7.4rem;
    box-sizing: border-box;
    transition: .5s;
    overflow: hidden;
}

.header__logo img {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    width: 180px;
    /* height: fit-content; */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    margin: auto;
    transition: .5s;
}

.header__text {
    display: none;
}

.header__title {
    font-size: 2rem;
    color: #333;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.header__subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 0.3rem 0;
    line-height: 1.4;
}

.header__nav-pc {
    display: none;
}

/* Header Menu Button (Hamburger) */
.header__menu-btn {
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    flex-shrink: 0;
    position: absolute;
    height: fit-content;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
}

.header__menu-btn span {
    width: 30px;
    height: 2px;
    background-color: #76533A;
    display: block;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header__menu-btn.is-active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.header__menu-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.header__menu-btn.is-active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Header Nav (SP Overlay) */
.header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    visibility: hidden;
    transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    padding-top: 10rem;
    height: 100vh;
    box-sizing: border-box;
}

.header__nav.is-open {
    background-color: #F1FDFD;
    opacity: 1;
    visibility: visible;
}

.header__nav-header {
    display: flex;
    align-items: center;
    padding: 2rem 2rem 2rem 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header__nav-logo {
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;
}

.header__nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__nav-text {
    flex: 1;
}

.header__nav-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 0.3rem 0;
    line-height: 1.4;
}

.header__nav-title {
    font-size: 2rem;
    color: #333;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.header__nav-close {
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}

.header__nav-close span {
    position: absolute;
    width: 2.5rem;
    height: 2px;
    background-color: #76533A;
    display: block;
    transition: all 0.3s ease;
}

.header__nav-close span:nth-child(1) {
    transform: rotate(45deg);
}

.header__nav-close span:nth-child(2) {
    transform: rotate(-45deg);
}

.header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0 3rem;
}

.header__nav-list li {
    border-bottom: 2px solid #ACD3D4;
}

.header__nav-list li:last-child {
    border-bottom: none;
}

.header__nav-list a {
    display: block;
    padding: 1.5rem 0;
    color: #76533A;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.8rem;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

.header__nav-list a:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.header__nav-content {
    padding: 2rem;
}

.header__nav-intro {
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto 2rem;
    display: block;
    text-align: center;
}

.header__nav-line-btn {
    display: block;
    background-color: #FF6B00;
    color: #fff;
    text-align: center;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 3rem;
    transition: background-color 0.3s ease;
}

.header__nav-line-btn:hover {
    background-color: #E55A00;
}

.header__nav_img_box {
    position: relative;
    height: 8.3rem;
}

.header__nav_img_copy {
    position: absolute;
    top: 10px;
    left: 12%;
    margin: auto;
    width: 58%;
    transition: .5s;
}

.header__nav_img_contact {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transform: translateY(-100px);
}

.header__nav-social {
    text-align: center;
}

.header__nav-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 5rem 0 0 auto;
    width: fit-content;
}

.header__nav-social-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.header__nav-social-icon:hover {
    transform: scale(1.1);
}

.header__nav-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Header Responsive (PC) */
@media screen and (min-width: 960px) {
    .header__inner {
        display: flex;
        align-items: center;
        padding: 0 5rem;
        height: 12rem;
    }

    .header__logo img {
        position: static;
    }

    .header__text {
        display: block;
        flex: 1;
        margin-left: 2rem;
    }

    .header__nav-pc {
        display: block;
        margin-left: auto;
    }

    .header__nav-pc-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 2rem;
        align-items: center;
    }

    .header__nav-pc-list li {
        margin: 0;
        position: relative;
    }

    .header__nav-pc-list li:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 2px;
        height: 1.5rem;
        background-color: #ACD3D4;
    }

    .header__nav-pc-list a {
        color: #76533A;
        text-decoration: none;
        font-family: 'M PLUS Rounded 1c', sans-serif;
        font-weight: 500;
        font-size: 1.4rem;
        white-space: nowrap;
        transition: opacity 0.3s ease;
    }

    .header__nav-pc-list a:hover {
        opacity: 0.7;
    }

    .header__menu-btn {
        display: none;
    }

    .header__nav {
        display: none;
    }
}


/* ===============================================
   Top Main Visual
   =============================================== */
.top-main-visual {
    background-image: url(../img/main-visual/glory-main-visual-bg.png);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.top-main-visual__photo-wrapper {
    position: relative;
    width: 100%;
    height: fit-content;
    top: 22%;
}

.top-main-visual__photo-wrapper .swiper {
    overflow: visible !important;
}

.top-main-visual__photo-swiper .swiper-slide img {
    width: 80% !important;
    height: auto;
    display: block;
    margin: auto !important;
    transition: all 0.5s ease;
    animation: zoom-pulse 3s ease-in-out infinite;
}

@keyframes zoom-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

}

.top__slider__sozai__wrapper img {
    display: block;
    position: absolute;
    transition: all 0.5s ease;
}

.top__sozai__wrapper img {
    transition: all 0.5s ease;
    position: absolute;
}

/* Sozai Elements (SP Default) */
.top__slider__sozai__1 {
    width: 75%;
    top: -70%;
    right: -6%;
    margin: auto;
}

.top__slider__sozai__2 {
    width: 71%;
    left: -13%;
    bottom: -70%;
    margin: auto;
}

.top__slider__sozai__3 {
    width: 10%;
    right: 13%;
    bottom: -14px;
}

.top__slider__sozai__4 {
    width: 22%;
    top: -10%;
    left: 5%;
}

.top__slider__sozai__5 {
    width: 21%;
    right: 1%;
    bottom: -10px;
}

.top__slider__sozai__6 {
    width: 14%;
    top: 10%;
    left: 2%;
}

.top__slider__sozai__7 {
    width: 30%;
    top: 5%;
    left: 4%;
}

.top-main-visual__sozai-10 {
    width: 76%;
    right: 0;
    left: 0;
    top: -30%;
    margin: auto;
}

.top-main-visual__sozai-12-sp {
    bottom: -80%;
    left: 0;
    right: 0;
    margin: auto;
    width: 95%;
}

.top-main-visual__sozai-13 {
    bottom: -95%;
    left: 17%;
    margin: auto;
    width: 55%;
}

.top-main-visual__sozai-14 {
    bottom: -115%;
    left: 0;
    right: 0;
    margin: auto;
    width: 85%;
}

/* Top Main Visual Responsive (Height Adjustments) */
@media screen and (min-width: 520px) and (max-width: 660px) {
    .top-main-visual {
        height: 1000px;
    }
}

@media screen and (min-width: 625px) {
    .top-main-visual {
        height: 1150px;
    }
}

@media screen and (min-width: 720px) {
    .top-main-visual {
        height: 1300px;
    }
}

@media screen and (min-width: 820px) {
    .top-main-visual {
        height: 1550px;
    }
}

/* Top Main Visual Responsive (PC 960px~) */
@media screen and (min-width: 960px) {
    .top-main-visual {
        height: 100vh;
    }

    .top-main-visual__photo-wrapper {
        top: 22%;
    }

    .top-main-visual__photo-swiper .swiper-slide img {
        width: 50% !important;
        max-width: 630px;
        margin: auto 0 auto 5% !important;
    }

    .top__slider__sozai__1 {
        width: 36%;
        top: -20%;
        right: 2%;
        margin: auto;
    }

    .top__slider__sozai__2 {
        width: 21%;
        left: inherit;
        bottom: inherit;
        top: 49%;
        right: 30%;
        margin: auto;
    }

    .top__slider__sozai__3 {
        width: 8%;
        right: inherit;
        bottom: inherit;
        top: 88%;
        z-index: 1;
        left: 8%;
    }

    .top__slider__sozai__4 {
        width: 15%;
        top: 50%;
        left: inherit;
        right: 0;
    }

    .top__slider__sozai__5 {
        width: 14%;
        right: inherit;
        bottom: inherit;
        top: 50%;
        z-index: 1;
    }

    .top__slider__sozai__6 {
        width: 11%;
        right: 6%;
        left: inherit;
        bottom: inherit;
        top: 58%;
        z-index: 1;
    }

    .top__slider__sozai__7 {
        width: 17%;
        top: 6%;
        left: 2%;
    }

    .top-main-visual__sozai-8 {
        width: 10%;
        right: 40%;
        left: inherit;
        top: 70%;
        margin: auto;
    }

    .top-main-visual__sozai-9 {
        width: 15%;
        right: 2%;
        left: inherit;
        top: 0%;
        margin: auto;
        z-index: 2;
    }

    .top-main-visual__sozai-11-pc {
        width: 40%;
        top: 10%;
        right: 5%;
        z-index: 2;
    }

    .top-main-visual__sozai-14 {
        bottom: inherit;
        top: 60%;
        left: inherit;
        right: 7%;
        margin: inherit;
        width: 36%;
        z-index: 2;
    }

    .top-main-visual__sozai-13 {
        bottom: inherit;
        top: 63%;
        left: inherit;
        right: 17%;
        margin: auto;
        width: 21%;
        z-index: 2;
    }

    .top-main-visual__sozai-10 {
        width: 28%;
        right: 15%;
        left: inherit;
        top: -6%;
        margin: auto;
        z-index: 2;
    }
}

/* Top Main Visual Responsive (Large PC 1025px~) */
@media screen and (min-width: 1025px) {
    .top-main-visual {
        height: 80rem;
    }

    .top-main-visual__photo-wrapper {
        max-width: 1500px;
        margin: auto;
    }

    .top__slider__sozai__1 {
        width: 33%;
        top: -23%;
        right: 4%;
    }

    .top__slider__sozai__2 {
        right: 39%;
    }

    .top__slider__sozai__3 {
        width: 5%;
        top: 87%;
        left: 9%;
    }

    .top__slider__sozai__4 {
        top: 44%;
        right: -1%;
    }

    .top__slider__sozai__5 {
        width: 13%;
        top: 40%;
        left: 2%;
    }

    .top__slider__sozai__6 {
        right: 5%;
    }

    .top__slider__sozai__7 {
        width: 14%;
        top: 7%;
        left: 3%;
    }

    .top-main-visual__sozai-8 {
        width: 8%;
        right: 46%;
        top: 88%;
    }

    .top-main-visual__sozai-9 {
        width: 16%;
        right: 6%;
        top: -3%;
    }

    .top-main-visual__sozai-10 {
        right: 20%;
    }

    .top-main-visual__sozai-11-pc {
        right: 10%;
    }

    .top-main-visual__sozai-13 {
        top: 75%;
        right: 21%;
    }

    .top-main-visual__sozai-14 {
        top: 72%;
        right: 12%;
    }
}


/* ===============================================
   Glory Main Content
   =============================================== */
.glory_main_content {
    background: url(../img/glory_main_content_bg.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 10rem 1rem 30rem;
    box-sizing: border-box;
}

.glory_main_content__inner {
    background-color: #fff;
    padding: 4.5rem 3rem;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    max-width: 860px;
    margin: auto;
    border-radius: 20px;
}

.glory_main_content__title {
    margin-bottom: 2rem;
}

.glory_main_content__content {
    margin-bottom: 2rem;
}


/* ===============================================
   Glory Support
   =============================================== */
.glory_support {
    box-sizing: border-box;
    position: relative;
    margin-top: -20rem;
}

.glory_support__inner-content {
    max-width: 600px;
    margin: 0 auto;
}

.glory_support__inner {
    max-width: 100%;
    margin: 0 auto -4rem;
    background: #E7F1F1;
    border-radius: 50% 50% 0 0 / 60px 60px 0 0;
    width: 100%;
    height: 100%;
    padding: 13rem 2rem 15rem;
    box-sizing: border-box;
    z-index: 1;
    position: relative;
}

.glory_support__inner_wave {
    background: url(../img/glory_support__bg2_sp.png);
    background-size: cover;
    background-position: 16% 50%;
    background-repeat: repeat-x;
    width: 100%;
    height: 5rem;
    position: absolute;
    bottom: -1.8%;
    left: 0;
    z-index: 1;
}

.glory_support__inner_bird {
    position: absolute;
    width: 115px;
    bottom: -1%;
    right: 5%;
    z-index: 2;
    transition: .5s;
}

.glory_support__label {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.glory_support__icon {
    width: 8.4rem;
    height: auto;
    display: block;
}

.glory_support__title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #64B8BA;
    margin: 3rem 0 2rem;
    text-align: center;
}

.glory_support__title-line {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0.02em 0.16em 0.22em;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 1));
    background-repeat: no-repeat;
    background-size: 240% .8em;
    background-position: 0% 100%;
}

.glory_support__description {
    font-size: 1.5rem;
    color: #76533A;
    margin-bottom: 4rem;
}

.glory_support__features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.glory_support__feature-item {
    width: 100%;
    max-width: 24rem;
    height: 6.4rem;
    padding: 1rem 0;
    line-height: 1.3;
    border-radius: 9999px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #76533A;
    box-sizing: border-box;
}

.glory_support__feature-item:nth-child(1) {
    background-color: #ACD3D4;
}

.glory_support__feature-item:nth-child(3) {
    background-color: #FFBE00;
}

.glory_support__feature-item:nth-child(5) {
    background-color: rgba(255, 145, 77, 0.5);
}

.glory_support__separator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.glory_support__separator svg {
    width: 4rem;
    height: 4rem;
}

/* Glory Support Responsive (500px~) */
@media screen and (min-width: 500px) {
    .glory_support__inner_wave {
        bottom: -1.5%;
    }

    .glory_support__inner_bird {
        width: 151px;
        bottom: -1%;
        right: inherit;
        left: 15%;
    }
}

/* Glory Support Responsive (PC 960px~) */
@media screen and (min-width: 960px) {
    .glory_support__inner_wave {
        background: url(../img/glory_support__bg2_pc.png);
        bottom: -4.5%;
        height: 9rem;
    }

    .glory_main_content__inner {
        position: relative;
    }

    .glory_main_content__inner::before {
        position: absolute;
        content: '';
        background-image: url(../img/glory_main_content_content_manillustration_pc.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        max-width: 17rem;
        max-height: 23rem;
        bottom: -18%;
        left: -5%;
        z-index: 222;
        transition: .5s;
    }

    .glory_main_content__inner::after {
        position: absolute;
        content: '';
        background-image: url(../img/glory_main_content_content_womanillustration_pc.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        max-width: 17rem;
        max-height: 23rem;
        bottom: -18%;
        right: -5%;
        z-index: 222;
        transition: .5s;
    }

    @media screen and (min-width: 1100px) {

        .glory_main_content__inner::before {
            left: -14%;
        }

        .glory_main_content__inner::after {
            right: -14%;
        }
    }

    .glory_support__inner_bird {
        width: 151px;
        bottom: -4%;
        right: inherit;
        left: 15%;
    }

    .glory_support__inner-content {
        max-width: 960px;
        margin: auto;
    }

    .glory_main_content__content2 {
        padding: 0 10rem;
    }

    /* .glory_main_content__content2::before {
        position: absolute;
        content: '';
        background-image: url(../img/glory_main_content__bg_pc.png);
        background-size: cover;
        background-repeat: no-repeat;

    } */
    .glory_support__title {
        font-size: 2.4rem;
        margin: 3rem 0 2.5rem;
    }

    .glory_support__description {
        font-size: 1.6rem;
        margin-bottom: 5rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .glory_support__features {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .glory_support__feature-item {
        max-width: 28rem;
        height: 7rem;
        font-size: 1.8rem;
        flex: 1;
        max-width: 22rem;
    }

    .glory_support__separator {
        margin: 0;
        flex-shrink: 0;
    }

    .glory_support__separator svg {
        width: 4.5rem;
        height: 4.5rem;
    }
}


/* ===============================================
   Glory Story
   =============================================== */
.glory_story {
    box-sizing: border-box;
    position: relative;
    background: #FCF8EC;
    padding: 15rem 0rem;
    margin-top: -3rem;
    width: 100%;
    overflow: hidden;
}

.glory_story__bg_moyou {
    position: absolute;
    width: fit-content;
    max-width: 43rem;
    height: auto;
    display: block;
    top: 0;
    right: -40%;
    bottom: 0;
    margin: auto;
    z-index: 1;
    transition: .5s;
}

.glory_story__inner-content {
    max-width: 600px;
    margin: 0 auto;
}

.glory_story__label {
    display: flex;
    align-items: center;
    max-width: 960px;
    margin: 0 auto 1.5rem;
}

.glory_story__icon {
    width: 8.4rem;
    height: auto;
    display: block;
    padding: 0 2rem;
}

.glory_story__title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #76533A;
    margin: 3rem 0 2rem;
    text-align: center;
}

.glory_story__title-line {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0.02em 0.16em 0.22em;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 1));
    background-repeat: no-repeat;
    background-size: 240% .8em;
    background-position: 0% 100%;
}

.glory_story__title-line span {
    display: inline-block;
    color: #64B8BA;
    transform: scale(1.1);
    padding-left: 1rem;
}

.glory_story__content-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.glory_story__thumnail {
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.glory_story__content {
    color: #76533A;
    font-size: 1.5rem;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.glory_story__catchphrase {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

/* Glory Story Responsive (600px~) */
@media screen and (min-width: 600px) {
    .glory_story__bg_moyou {
        opacity: 0;
    }
}

/* Glory Story Responsive (PC 960px~) */
@media screen and (min-width: 960px) {
    .glory_story {
        padding: 30rem 0rem;
    }

    .glory_story__inner-content {
        max-width: 960px;
        margin: 0 auto;
    }

    .glory_story__bg_moyou {
        opacity: 1;
        top: 11%;
        right: inherit;
        left: 35%;
        width: 100%;
        max-width: 753px;
    }

    .glory_story__icon {
        padding: 0;
    }

    .glory_story__title {
        text-align: left;
        margin: 0 0 2rem;
    }

    .glory_story__content-flex {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 3rem;
        max-width: 960px;
        margin: auto;
    }

    .glory_story__thumnail {
        display: block;
        width: 100%;
        max-width: 400px;
        margin-right: auto;
        padding: 0;
    }

    .glory_story__content {
        width: auto;
        max-width: 536px;
        font-size: 1.6rem;
        padding: 0;
    }
}


/* ===============================================
   Glory Work Style
   =============================================== */
.glory_work_style {
    background-color: #E7F1F1;
    width: 100%;
    height: 100%;
    padding: 10rem 2rem 1rem;
    box-sizing: border-box;
    margin-top: -5rem;
    position: relative;
    transition: .5s;
    overflow-x: visible;
    overflow-y: visible;
}

.glory_work_style::before {
    content: '';
    position: absolute;
    background-image: url(../img/glory_work_style_bg_sp_上.png);
    background-size: cover;
    background-repeat: repeat;
    width: 100%;
    height: 3rem;
    top: -30px;
    left: 0;
    z-index: 2;
}

.glory_work_style::after {
    content: '';
    position: absolute;
    background-image: url(../img/glory_work_style_bg_sp_下.png);
    background-size: cover;
    background-repeat: repeat;
    width: 100%;
    height: 2%;
    bottom: -2%;
    left: 0;
    z-index: 2;
}

.glory_work_style__inner {
    max-width: 600px;
    margin: auto;
}

.glory_work_style__heading {
    max-width: 450px;
    position: absolute;
    width: 90%;
    left: 0;
    right: 0;
    top: -5rem;
    margin: auto;
    z-index: 3;
}

.glory_work_style__cta {
    display: block;
    width: 100%;
    height: 100%;
    margin: 5rem auto;
    max-width: 34rem;
}

.glory_work_style::after {
    display: none;
}

/* Glory Work Style Responsive (650px~) */
@media screen and (min-width: 650px) {
    .glory_work_style {
        padding: 15rem 2rem 2rem;
    }

    .glory_work_style__inner {
        max-width: 960px;
        margin: auto;
    }

    .glory_work_style__content2_pc {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
        max-width: 960px;
        margin: auto;
    }

    .glory_work_style__content2_pc img {
        width: 48%;
        margin: auto;
    }

    .glory_work_style::before {
        content: '';
        position: absolute;
        background-image: url(../img/glory_work_style_bg_pc_上.png);
        background-size: cover;
        background-repeat: repeat;
        width: 100%;
        height: 9rem;
        top: -2%;
        left: 0;
        z-index: 2;
    }

    .glory_work_style::after {
        display: block;
        content: '';
        position: absolute;
        background-image: url(../img/glory_work_style_bg_pc_下.png);
        background-repeat: repeat;
        width: 100%;
        /* height: 8%;
        bottom: -7%; */
        left: 0;
        z-index: 2;
    }

}

/* Glory Work Style Responsive (PC 960px~) */
@media screen and (min-width: 960px) {
    .glory_work_style::before {
        top: -6%;
    }

    .glory_work_style::after {
        height: 8%;
        bottom: -7%;
    }
}

/* ===============================================
   Glory Advisor
   =============================================== */
.glory_advisor {
    padding: 5rem 3.5rem;
    background: #F1FDFD;
}

.glory_advisor__inner {
    max-width: 600px;
    margin: 0 auto;
}

.glory_advisor__icon {
    width: auto;
    height: 14px;
}

/* Glory Advisor Responsive (650px~) */
@media screen and (min-width: 650px) {
    .glory_advisor {
        padding: 15rem 2rem 2rem;
    }

}

/* Glory Advisor Responsive (PC 960px~) */
@media screen and (min-width: 960px) {
    .glory_advisor {
        padding: 20rem 0rem 10rem;
    }

    .glory_advisor__inner {
        max-width: 960px;
        margin: 0 auto;
    }

    .glory_advisor__content1 {
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    .glory_advisor__content1_inner {
        width: 62%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .glory_advisor__content2_pc {
        width: 38%;
    }

}

/* ===============================================
   Glory Environment
   =============================================== */
.glory_environment {
    padding: 5rem 3.5rem 10rem;
    background: #F1FDFD;
    overflow: hidden;
}

.glory_environment__inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.glory_environment__bg_object {
    width: 450px;
    position: absolute;
    z-index: -1;

    &:nth-of-type(1) {
        top: 2%;
        left: 6%;
    }

    &:nth-of-type(2) {
        top: 35%;
        right: -52%;
    }
}

.glory_environment__icon {
    width: auto;
    height: 14px;
}

.glory_environment__heading {
    margin: 5rem auto;
}

.glory_environment__content1 {
    margin: 0 auto 10rem;
}

.glory_environment__content1_tabs {
    display: flex;
    gap: 1rem;
}

.glory_environment__content1_tabs_item {
    width: fit-content;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    background: #BEBEBE;
    border-radius: 10px 10px 0 0;
    padding: 1rem 2rem;

    &.active {
        color: #76533A;
        background: #ACD3D4;
    }
}

.glory_environment__content1_image {
    display: none;
}

.glory_environment__content1_image.active {
    display: block;
}

.glory_environment__content1_item {
    background: #fff;
    border-radius: 0 20px 20px 20px;
    padding: 1.5rem 1.5rem 1.5rem;
    margin: 0 auto 5rem;
}

.glory_environment__content1_item_swiper {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 2rem auto 0;
}

.glory_environment__content1_item_swiper .glory_environment__content1_item_swiper_button_next1:after,
.glory_environment__content1_item_swiper .glory_environment__content1_item_swiper_button_next2:after,
.glory_environment__content1_item_swiper .glory_environment__content1_item_swiper_button_next3:after {
    content: '';
    width: 3rem;
    height: 3rem;
    background: url(../img/glory_environment_swiper_next.svg) no-repeat center center / contain;
    position: relative;
    right: -3rem;
    top: -40%;
}

.glory_environment__content1_item_swiper .glory_environment__content1_item_swiper_button_prev1:after,
.glory_environment__content1_item_swiper .glory_environment__content1_item_swiper_button_prev2:after,
.glory_environment__content1_item_swiper .glory_environment__content1_item_swiper_button_prev3:after {
    content: '';
    width: 3rem;
    height: 3rem;
    background: url(../img/glory_environment_swiper_prev.svg) no-repeat center center / contain;
    position: relative;
    right: 3rem;
    top: -40%;
}

.swiper-pagination1,
.swiper-pagination2,
.swiper-pagination3 {
    display: flex;
    justify-content: center;
    margin: 1.5rem auto 0;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
}

.glory_environment__content1_item_swiper .swiper-pagination-bullet-active {
    background: #ACD3D4;
}

.glory_environment__content3_sp {
    width: calc(100% + 5.5rem);
    margin: 5rem calc((50% - 50vw) + 10px);
}

.glory_environment__content4_item_sp {
    width: calc(100% + 3.4rem);
    margin: 0 auto 1.5rem -3.4rem;
}

/* Glory Advisor Responsive (650px~) */
@media screen and (min-width: 650px) {
    .glory_environment {
        padding: 15rem 2rem 12rem;
    }

    .glory_environment__content3_sp {
        width: 100%;
        margin: 5rem auto;
    }
}

/* Glory Advisor Responsive (PC 960px~) */
@media screen and (min-width: 960px) {
    .glory_environment {
        padding: 10rem 0rem 20rem;
    }

    .glory_environment__bg_object {
        width: 720px;

        &:nth-of-type(1) {
            top: -2%;
            left: -36%;
        }

        &:nth-of-type(2) {
            top: 20%;
            right: -52%;
        }

        &:nth-of-type(3) {
            top: 46%;
            left: -36%;
        }

        &:nth-of-type(4) {
            top: 65%;
            right: -52%;
        }
    }

    .glory_environment__inner {
        max-width: 960px;
        margin: 0 auto;
    }

    .glory_environment__content1_tabs_item {
        cursor: pointer;
    }

    .glory_environment__content2_pc_inner {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .glory_environment__content2_pc_left,
    .glory_environment__content2_pc_right {
        width: calc(50% - 15px);
    }

    .glory_environment__content3_pc {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 0 0 0 12%;
        margin: 12rem auto 10rem;
    }

    .glory_environment__content3_left_pc {
        width: 12%;
    }

    .glory_environment__content3_right_pc {
        width: 24%;
    }

    .glory_environment__content3_main_pc {
        display: block;
        width: 64%;
        margin: 0 auto;
    }

    .glory_environment__content4_pc {
        margin: 0 auto 2rem;
    }

    .glory_environment__content4_item_pc {
        display: block;
        margin: 0 auto 1.5rem;
    }

}

/* ===============================================
   Glory Support
   =============================================== */
.glory_exam {
    padding: 5rem 3.5rem;
    background: #FCF8EC;
    position: relative;
}

.glory_exam__wave_object {
    width: 7rem;
    position: absolute;
    top: -3.6vw;
    right: 10vw;
    z-index: 1;
    transform: translateY(-100%);
}

.glory_exam__wave1 {
    width: 100%;
    position: absolute;
    top: 1px;
    left: 0;
    transform: translateY(-100%);
    z-index: 2;
}

.glory_exam__wave2 {
    width: 100%;
    position: absolute;
    bottom: 1px;
    left: 0;
    transform: translateY(100%);
    z-index: 1;
}

.glory_exam__content_inner {
    max-width: 600px;
    margin: 0 auto;
}

.glory_exam__content {
    width: 100%;
}

/* Glory Exam Responsive (PC 960px~) */
@media screen and (min-width: 960px) {
    .glory_exam {
        padding: 10rem 0rem 10rem;
    }

    .glory_exam__content_inner {
        max-width: 1060px;
        margin: 0 auto;
    }
}

/* ===============================================
   Glory Other
   =============================================== */
.glory_other {
    padding: 10rem 3.5rem;
    background: #F1FDFD;
    position: relative;
}

.glory_other__wave2 {
    width: 100%;
    position: absolute;
    bottom: 1px;
    left: 0;
    transform: translateY(100%);
    z-index: 1;
}

.glory_other__content_inner {
    max-width: 600px;
    margin: 0 auto;
}

.glory_other__content {
    width: 100%;
}

.glory_other__cta {
    display: block;
    width: 100%;
    max-width: 50rem;
    height: 100%;
    margin: 3rem auto 0;
}

/* Glory Other Responsive (650px~) */
@media screen and (min-width: 650px) {
    .glory_other {
        padding: 15rem 2rem 10rem;
    }
}

/* Glory Other Responsive (PC 960px~) */
@media screen and (min-width: 960px) {
    .glory_other__content_inner {
        max-width: 840px;
        margin: 0 auto;
    }
}

/* ===============================================
   Glory Instagram
   =============================================== */
.glory_instagram {
    padding: 10rem 3.5rem;
    background: #E7F1F1;
    position: relative;
    z-index: 0;
}

.glory_instagram__inner {
    max-width: 600px;
    margin: 0 auto;
}

.glory_instagram__bg_text {
    width: 70%;
    max-width: 60rem;
    position: absolute;
    top: 10rem;
    left: 2rem;
    z-index: -1;
    margin: 0 auto;
}

.glory_instagram__icon {
    width: auto;
    height: 14px;
}

.glory_instagram__heading {
    display: block;
    max-width: 37rem;
    margin: 3rem auto 5rem;
}

.glory_instagram__btn_link {
    display: block;
    width: fit-content;
    margin: 5rem auto 0;
}

.glory_instagram__btn {
    display: block;
    max-width: 40rem;
}

#sbi_images {
    display: flex;
    gap: 20px;
}

.sbi_photo {
    box-sizing: border-box;
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 10px;
}

#sb_instagram .sbi_photo img {
    height: 100% !important;
    aspect-ratio: 1;
}

/* Glory Instagram Responsive (650px~) */
@media screen and (min-width: 650px) {
    .glory_instagram {
        padding: 15rem 2rem 10rem;
    }
}

/* Glory Instagram Responsive (PC 960px~) */
@media screen and (min-width: 960px) {
    .glory_instagram__inner {
        max-width: 960px;
        margin: 0 auto;
    }

    .glory_instagram__bg_text {
        top: 15rem;
        left: 7rem;
    }
}

/* ===============================================
   Glory Contact
   =============================================== */
.glory_contact {
    padding: 10rem 3.5rem;
    background: #FCF8EC;
    position: relative;
    z-index: 0;
}

.glory_contact__wave1 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.glory_contact__wave2 {
    width: 100%;
    position: absolute;
    bottom: 1px;
    left: 0;
    transform: translateY(100%);
    z-index: 1;
}

.glory_contact__inner {
    max-width: 600px;
    margin: 0 auto;
}

.glory_contact__icon {
    width: auto;
    height: 14px;
}

.glory_contact__content {
    margin: 2rem auto 4rem;
}

/* Glory Contact Responsive (650px~) */
@media screen and (min-width: 650px) {
    .glory_contact {
        padding: 15rem 2rem 10rem;
    }
}

/* Glory Contact Responsive (PC 960px~) */
@media screen and (min-width: 960px) {
    .glory_contact {
        padding: 24rem 0rem 0rem;
    }

    .glory_contact__inner {
        max-width: 960px;
        margin: 0 auto;
    }

    .glory_contact__content_wrap {
        display: flex;
        align-items: center;
        gap: 6rem;
        margin: -5rem auto 0;
    }

    .glory_contact__content {
        width: 45%;
    }

    .glory_contact__cta_link {
        display: block;
        width: 55%;
    }
}

/* ===============================================
   Fixed Buttons (PC Only)
   =============================================== */
@media screen and (min-width: 960px) {
    .fixed-buttons {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .fixed-buttons__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        writing-mode: vertical-rl;
        text-orientation: upright;
        letter-spacing: 10px;
        padding: 1.5rem;
        border-radius: 1.5rem 0 0 1.5rem;
        text-decoration: none;
        font-weight: bold;
        font-size: 2rem;
        color: #fff;
        transition: all 0.3s ease;
        width: 6.6rem;
        height: 19.6rem;
        box-sizing: border-box;
    }

    .fixed-buttons__btn:hover {
        transform: scale(1.05);
    }

    .fixed-buttons__btn--reserve {
        background-color: #FFBE00;
    }

    .fixed-buttons__btn--contact {
        background-color: #FF7F50;
    }
}


/* ===============================================
   Footer
   =============================================== */
.footer_main {
    width: 100%;
    background: #e7f1f1;
    box-sizing: border-box;
    overflow: hidden;
    padding: 10rem 2rem 5rem;
}


.footer_cover {
    max-width: 600px;
    margin: 0 auto;
    transition: .5s;
}

.footer_heading {
    max-width: 20rem;
}

.footer_logo {
    width: 100%;
    max-width: 40rem;
    padding-top: 1.5rem;
}

.footer_content {
    width: 100%;
    color: #76533A;
}

.footer_content_ttl {
    font-size: 1.7rem;
    font-weight: bold;
}

.footer_info_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    line-height: 1.8;
}

.footer_info_list dt,
.footer_info_list dd {
    margin: 0;
}

.footer_info_label {
    width: 100%;
    font-weight: bold;
}

.footer_map_sns {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_map_container {
    width: 210px;
    height: 170px;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.footer_map_container iframe {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}


.follow_btn_area {
    margin: auto 0 0 auto;
}

.follow_text_img {
    width: 10rem;
    margin: 1rem auto;
}

.follow_btn_cover {
    display: flex;
    gap: 1rem;
    margin: auto;
    width: fit-content;
}

.follow_btn_cover img {
    max-width: 3.4rem;
}

.copy_text {
    width: 100%;
    height: 6.2rem;
    text-align: center;
    font-size: 1.2rem;
    padding-top: 2rem;
}


/* Footer Responsive (PC 960px~) */
@media screen and (min-width: 960px) {
    .footer_main {
        padding: 20rem 0rem 5rem;
    }

    .footer_heading {
        max-width: 240px;
    }

    .footer_cover {

        max-width: 960px;
        margin: auto;
    }

    .footer_box_cover {
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    .footer_box_cover {
        flex-wrap: nowrap;
    }

    .footer_logo {
        width: 30%;
        max-width: 16.7rem;
    }


    .footer_content {
        width: 70%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 3rem;
        margin-left: auto;
    }

    .footer_map_container {
        width: 195px;
        height: 160px;
        border-radius: 1rem;
        overflow: hidden;
        position: relative;
    }

    .footer_content_left {
        width: 80%;
    }

    .footer_map_sns {
        width: 20%;
        display: block;
    }

    .follow_btn_area {
        margin: 0 0 0 auto;
        width: fit-content;
    }

    .footer_info_list {
        flex-direction: row;
    }

    .footer_info_label {
        width: 28%;
    }

    .footer_info_list dt {
        width: 30%;
    }

    .footer_info_list dd {
        width: 70%;
        width: fit-content;
    }
}

/* Custom Bounce Animation for Header Nav Contact */
@keyframes bounce-down {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    60% {
        opacity: 1;
        transform: translateY(10px);
    }

    80% {
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header__nav_img_contact {
    animation: bounce-down 0.8s ease-out forwards;
}

.top-main-visual__sozai-14 {
    opacity: 0;
    transform: translateY(-100px);
    animation: bounce-down 0.8s ease-out forwards;
    animation-delay: 0.35s;
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-main-visual__sozai-13 {
    opacity: 0;
    transform: translateY(50px);
    animation: fade-up 0.6s ease-out forwards;
    animation-delay: 1.15s;
}

/* Swiper Zoom Animation */
@keyframes zoom-pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.swiper-slide-active .swiper-zoom-image {
    animation: zoom-pulse 3s ease-in-out infinite;
}

/* ===============================================
   Top Link Button (上に戻るボタン)
   =============================================== */
.top_link {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9998;
    width: 6rem;
    height: auto;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(1rem);
}

.top_link.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top_link:hover {
    transform: translateY(-0.5rem);
}

.top_link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
