section {
    padding-top: 80px;
    padding-bottom: 80px;
}
img {
    width: 100%;
}

@media (max-width: 767px) {
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* トップ
--------------------------------- */
#main_visual {
    height: 100svh;
    position: relative;
    overflow: hidden;
}
#main_visual .gradation {
    background: transparent linear-gradient(103deg, #EFB499 0%, #DB617B 100%) 0% 0% no-repeat padding-box;
}
.concept_text {
    font-size: 46px;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    letter-spacing: .1em;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 6px #000000CC;
    position: absolute;
    left: 8%;
    bottom: 7%;
    z-index: 10;
}
.concept_text span {
    display: block;
    margin-top: .47em;
}
.concept_text span:last-of-type {
    margin-left: 3.9em;
}

/* ▽ スライダー ▽ */
.main_swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.main_swiper img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    #main_visual {
        height: auto;
        aspect-ratio: 39 / 36;
    }
    .main_swiper img {
        height: auto;
    }
    .concept_text {
        font-size: clamp(1.5rem, 0.4655rem + 4.244vi, 2.5rem);
        left: 3%;
    }
}


/* 各園
--------------------------------- */
#facility {
    background-color: #F2F2F2;
    padding-bottom: 150px;
}
.facil_wrap {
    display: flex;
    gap: 100px 5%;
}
.facil_content {
    width: calc((100% - 10%) / 3);
    position: relative;
}
.swiper_head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: .5em 0;
    margin-bottom: .6em;
    /* position: absolute;
    top: -2.625em;
    left: 0; */
}
.swiper_head p {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.4;
}
.swiper_head p span {
    display: block;
    font-size: 12px;
    letter-spacing: .1em;
}

/* ▽ スライダー ▽ */
.facil_content .swiper-wrapper {
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
}
.facil_content .swiper-wrapper.init {
    -webkit-animation-name: opacity-anime;
    animation-name: opacity-anime;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
}
.ayaha_swiper .swiper-wrapper.init {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}
.nagisa_swiper .swiper-wrapper.init {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
@-webkit-keyframes opacity-anime {
    0% {
        -webkit-overflow: hidden;
        -webkit-opacity: 0;
    }
    100% {
        -webkit-overflow: visible;
        -webkit-opacity: 1;
    }
}
@keyframes opacity-anime {
    0% {
        -webkit-overflow: hidden;
        overflow: hidden;
        -webkit-opacity: 0;
        opacity: 0;
    }
    100% {
        -webkit-overflow: visible;
        overflow: visible;
        -webkit-opacity: 1;
        opacity: 1;
    }
}

.facil_content .swiper-slide {
    transform: translateX(-100%);
}
.facil_content .swiper-wrapper.init .swiper-slide {
    -webkit-animation-name: slide-anime;
    animation-name: slide-anime;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1.6s;
    animation-duration: 1.6s;
}
.ayaha_swiper .swiper-wrapper.init .swiper-slide {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}
.nagisa_swiper .swiper-wrapper.init .swiper-slide {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
@-webkit-keyframes slide-anime {
    0% {
        -webkit-transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}
@keyframes slide-anime {
    0% {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
    }
}
.facil_content .swiper img {
    border-radius: 10px;
}
.facil_content .swiper_btn_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}
.facil_content .swiper-pagination {
    position: static;
    font-size: 18px;
    letter-spacing: -.08em;
    width: 1.88em;
}
.facil_content .swiper-button-prev,
.facil_content .swiper-button-next {
    width: 18px;
    height: 18px;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    margin: auto;
    position: relative;
}
.facil_content .swiper-button-prev::after,
.facil_content .swiper-button-next::after {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../../img/icon/midori_navigation.svg) no-repeat center;
}
.ayaha_swiper .swiper-button-prev::after,
.ayaha_swiper .swiper-button-next::after {
    background: url(../../img/icon/ayaha_navigation.svg) no-repeat center;
}
.nagisa_swiper .swiper-button-prev::after,
.nagisa_swiper .swiper-button-next::after {
    background: url(../../img/icon/nagisa_navigation.svg) no-repeat center;
}
.facil_content .swiper-button-next::after {
    transform: rotate(180deg);
}

.facil_content .spinner {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.facil_content .spinner_inner {
    width: 1em;
    height: .9em;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.facil_content .spinner_inner > div {
    background-color: #3B995C;
    height: 100%;
    width: .13em;
    display: inline-block;
    -webkit-animation: sk-stretchdelay .6s infinite ease-in-out;
    animation: sk-stretchdelay .6s infinite ease-in-out;
}
.ayaha_swiper .spinner_inner > div {
    background-color: #FA742B;
}
.nagisa_swiper .spinner_inner > div {
    background-color: #3D87BF;
}
.facil_content .spinner .rect2 {
    -webkit-animation-delay: -.5s;
    animation-delay: -.5s;
}
.facil_content .spinner .rect3 {
    -webkit-animation-delay: -.4s;
    animation-delay: -.4s;
}
@-webkit-keyframes sk-stretchdelay {
    0%,100%,40% {
        -webkit-transform: scaleY(.5);
    }
    20% {
        -webkit-transform: scaleY(1);
    }
}
@keyframes sk-stretchdelay {
    0%,100%,40% {
        transform: scaleY(.4);
        -webkit-transform: scaleY(.5);
    }
    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}
/* △ スライダー △ */

.facil_content .link_button {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .1em;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.4em;
    border-radius: 10px;
    padding: .3em;
    margin-top: 20px;
    box-shadow: 1px 1px 8px rgba(196, 196, 196, 0.3);
    position: absolute;
    left: 0;
    bottom: -3.38em;
}
.facil_content .link_button::after {
    content: "";
    width: .9em;
    height: .45em;
    background: url(../../img/icon/arrow.svg) no-repeat center;
    position: absolute;
    top: 0;
    right: .9em;
    bottom: 0;
    margin: auto;
}
.gradation_midorien {
    background: transparent linear-gradient(102deg, rgba(147, 196, 148, 1) 0%, rgba(59, 153, 92, 1) 100%) 0% 0% no-repeat padding-box;
}
.gradation_ayaha {
    background: transparent linear-gradient(102deg, #FFB100 0%, #FA742B 100%) 0% 0% no-repeat padding-box;;
}
.gradation_nagisa {
    background: transparent linear-gradient(102deg, rgba(84, 182, 207, 1) 0%, rgba(61, 135, 191, 1) 100%) 0% 0% no-repeat padding-box;
}
.facil_content .link_button .small {
    font-size: 63.4%;
}

@media (max-width: 1080px) {
    .swiper_head {
        flex-direction: column-reverse;
    }
    .swiper_head p {
        text-align: right;
    }
    .facil_content .link_button {
        font-size: 2vw;
    }
    .facil_content .swiper_btn_wrap {
        margin-left: auto;
    }
}
@media (max-width: 767px) {
    #facility {
        padding-bottom: 110px;
    }
    .facil_wrap {
        flex-direction: column;
    }
    .swiper_head {
        flex-direction: row;
    }
    .swiper_head p {
        text-align: left;
    }
    .facil_content {
        width: 100%;
    }
    .facil_content .link_button {
        font-size: 18px;
    }
    .facil_content .spinner {
        width: calc((100% - 30px) / 2);
    }
}
@media (max-width: 620px) {
    .facil_content .spinner {
        width: 100%;
    }
}


/* 桂樹会について
--------------------------------- */
#about {
    background-color: #FBF1F4;
}
#about .gradation {
    background: transparent linear-gradient(112deg, #EFB499 0%, #DB617B 100%) 0% 0% no-repeat padding-box;
}
/* 理念 */
#about .grad_title {
    margin-bottom: 30px;
}
.about_wrap {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 60px;
}
.about_wrap .img_box {
    width: 40%;
}
.about_wrap img {
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}
.about_wrap .text_box {
    width: calc(60% - 30px);
    display: flex;
    flex-direction: column;
}
.about_wrap .text_box .message_title {
    font-size: 1.275em;
    font-weight: 700;
    color: #DB617B;
    margin-bottom: .5em;
}
.about_wrap .text_box .signature {
    text-align: right;
    padding-top: 1em;
    margin-top: auto;
}

/* 沿革 */
.history_wrap {
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    padding: 1em 8% 1em;
    margin: 0 auto;
}
.history_wrap dl {
    display: flex;
    padding: .82em 1em;
}
.history_wrap dl:not(:last-of-type) {
    border-bottom: 1px solid #DB617B;
}
.history_wrap dt {
    font-weight: 400;
    color: #DB617B;
    width: 12em;
}
.history_wrap dd {
    width: calc(100% - 12em);
}

@media (max-width: 767px) {
    /* 理念 */
    .about_wrap {
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        margin-bottom: 50px;
    }
    #about .grad_title {
        margin-bottom: 20px;
    }
    .about_wrap .img_box {
        width: 100%;
        max-width: 620px;
    }
    .about_wrap .text_box {
        width: 100%;
    }
    /* 沿革 */
    .history_wrap {
        padding: .5em 6%;
    }
    .history_wrap dl {
        flex-direction: column;
    }
    .history_wrap dt,
    .history_wrap dd {
        width: 100%;
    }
}


/* 採用情報
--------------------------------- */
#recruit {
    background-color: rgba(161, 139, 187, .2);
}
.recruit_wrap {
    display: flex;
    gap: 30px 60px;
}
#recruit .heading_wrap {
    width: 30%;
}
#recruit .heading {
    margin-bottom: 25px;
}
#recruit .sec_title_en,
#recruit .sec_title {
    color: #5E60A2;
}
#recruit .sec_title::after {
    background: transparent linear-gradient(95deg, #A18BBB 0%, #5E60A2 100%) 0% 0% no-repeat padding-box;
}
#recruit .link_button {
    background: transparent linear-gradient(100deg, #A18BBB 0%, #5E60A2 100%) 0% 0% no-repeat padding-box;
    margin-top: 40px;
    position: relative;
}
#recruit .link_button::after {
    content: "";
    width: 1.34em;
    height: 1.34em;
    background: url(../../img/icon/arrow.svg) no-repeat center;
    position: absolute;
    top: 0;
    right: 10%;
    bottom: 0;
    margin: auto;
}
#recruit .link_button._mob {
    display: none;
}

#recruit .contents_wrap {
    width: calc(70% - 60px);
    display: flex;
    justify-content: space-between;
    margin-top: 4%;
}
#recruit .content {
    background-color: #fff;
    width: calc((100% - 40px) / 2);
    border-radius: 10px;
}
#recruit .content img {
    border-radius: 10px 10px 0 0;
}
#recruit .content_title,
#recruit .content_text {
    padding-left: 15px;
    padding-right: 15px;
}
#recruit .content_title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #5E60A2;
    margin-top: .6em;
    position: relative;
}
#recruit .content_title::after {
    content: "";
    width: 1.33em;
    height: 1.33em;
    background: url(../../img/icon/recruit_arrow.svg) no-repeat center;
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    margin: auto;
}
#recruit .content_text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: .78em;
}

@media (max-width: 1080px) {
    .recruit_wrap {
        flex-direction: column;
    }
    #recruit .heading_wrap,
    #recruit .contents_wrap {
        width: 100%;
    }
    #recruit .contents_wrap {
        margin-top: 0;
    }
    #recruit .link_button._pc {
        display: none;
    }
    #recruit .link_button._mob {
        display: flex;
        width: 300px;
        margin: 25px auto 0;
    }
}

@media (max-width: 767px) {
    #recruit .contents_wrap {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    #recruit .content {
        width: 100%;
        max-width: 620px;
    }
    #recruit .content_title {
        font-size: 16px;
    }
    #recruit .link_button._mob {
        font-size: 16px;
        margin-top: 15px;
    }
}