html{
    scroll-behavior: smooth;
}
body{
    color: #727272;
    line-height: 180%;
    font-size: 14px;
    color: #727272;
    box-sizing: border-box;
    margin: 0;
    font-family: "Zen Maru Gothic", serif;
    /* コンテンツが短いページでもフッターを画面下に固定する（sticky footer） */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
*{
    box-sizing: border-box;
}
img{
    width: 100%;
    height: auto;
}
a{
    text-decoration: none;
    display: block;
    color: initial;
}
/* a:visited{
    color: inherit;
} */
ul{
    padding: 0;
    margin: 0;
}
li{
    list-style-type: none;
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
    padding: 0;
}
dl{
    margin: 0;
}
dd{
    margin: 0;
}
/*ブレイクポイント*/

/*　画面サイズが480pxからはここを読み込む　*/
@media screen and (min-width:480px) {
}
/*　画面サイズが768pxから1024pxまではここを読み込む　*/
@media screen and (min-width:768px) and ( max-width:1024px) {
}
/*　画面サイズが1024pxからはここを読み込む　*/
@media screen and (min-width:1024px) {
}

/*==========
共通
==========*/
.hide{
    display: none;
}
.show{
    display: block!important;
    opacity: 1!important;
    transition: all 0.5s;
}
.p_hide{

}
.tab_hide{

}
.sp_hide{

}
.wd{
    padding: 0 2em;
}
.mb-2{
    margin-bottom: 2em;
}
.mt-2{
    margin-top: 2em;
}
.title{
    font-size: 24px;
    color: #727272;
    position: relative;
    padding-bottom: 10px;
}
.title.center{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title__text{

}
.title__pattern-box{
    display: flex;
    flex-wrap: wrap;
}
.title__pattern-01::before,
.title__pattern-01::after,
.title__pattern-02::before,
.title__pattern-02::after{
    content: "";
    display: flex;
    width: 5px;
    height: 5px;
    background-color: #DAD1AD;
    border-radius: 50%;
    margin-right: 5px;
}
.title__pattern-01,
.title__pattern-02{
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.5em;
}
.title__pattern-01{

}
.title__pattern-02{

}
/*
.title::before,
.title::after,
.pattern::before,
.pattern::after{
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: #DAD1AD;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
}
    */
/*
.title::before{
    left: 0;
}
.title::after{
    left: 5px;
}
.pattern::before{
    left: 15px;
}
.pattern::after{
    left: 20px;
}
*/
/*==========
 header
==========*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10000;
}
.header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 8px 16px;
    max-width: 1280px;
    margin: 0 auto;
}
.header__logo{
    display: flex;
    align-items: center;
}
.header__logo a{
    display: flex;
    align-items: center;
}
.header__logo img{
    height: 40px;
    width: auto;
    display: block;
}
.header__actions{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}
.header__phone{
    display: none;
    align-items: center;
    gap: 4px;
    height: 40px;
    text-decoration: none;
}
.header__phone__icon{
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.header__phone__number{
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #727272;
    line-height: 1;
    display: flex;
    align-items: center;
}
.header__phone__hours{
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #727272;
    line-height: 1;
    white-space: nowrap;
}
/*== ハンバーガーメニュー ==*/
.hamburger-menu{
}
/* メニューエリア */
.hamburger-menu__inner{
    position: fixed;
    height: 100%;
    background: #fff;
    padding: 16px 16px 100px 24px;
    z-index: 9998;
    transition: .3s;
    overflow-y: auto;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    right: -100%;
    width: 264px;
}
.hamburger-menu__list{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}
.hamburger-menu__list li a{
    padding: 0;
    color: #727272;
    font-size: 14px;
    line-height: 1.8;
}
.hamburger-menu__list__item{
    text-align: right;
}
.hamburger-menu__contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hamburger-menu__call{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 55px;
    padding: 16px 24px;
    background: #bba54d;
    border-radius: 40px;
    text-decoration: none;
}
.hamburger-menu__call__icon{
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.hamburger-menu__call__text{
    color: #fff;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
}
.hamburger-menu__hours{
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #727272;
    line-height: 1;
}
/* ラベル */
.hamburger-switch{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9999;
    width: 40px; /* アイコン（クリック可能領域）の幅 */
    height: 40px; /* アイコン（クリック可能領域の）高さ */
    flex-shrink: 0;
}
/* ハンバーガーアイコン･アニメーション */
#hamburger-menu__icon:checked ~ .hamburger-switch .hamburger-switch__line{
    width: 0;
}
#hamburger-menu__icon:checked ~ .hamburger-switch .hamburger-switch__line:before{
    transform: rotate(45deg) translate(-7px, 7px);
}
#hamburger-menu__icon:checked ~ .hamburger-switch .hamburger-switch__line:after{
    transform: rotate(-45deg) translate(-7px, -7px);
}
#hamburger-menu__icon:checked ~ .hamburger-switch{
    position: relative;
}
#hamburger-menu__icon:checked ~ .hamburger-menu__inner{
    right: 0;
    width: 264px;
    left: auto;
}
#hamburger-menu__icon:checked ~ .hamburger-menu__cover{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9997;
    background: transparent;
    display: none;
}
/* メニュー開いた時 */
.hamburger-switch__line, .hamburger-switch__line:before, .hamburger-switch__line:after{
    width: 20px;
    height: 2px;
    background: #727272; /* ハンバーガーアイコンの色 */
    position: absolute;
    top: 50%;
    left: 50%;
    transition: .3s;
    content: "";
    border-radius: 2px;
}
.hamburger-switch__line{
        transform: translate(-50%, -50%);
}
.hamburger-switch__line:before{
    transform: translate(-50%, -350%);
}
.hamburger-switch__line:after{
    transform: translate(-50%, 300%);
}
/*==========
 main
==========*/
main{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 60px;
    /* sticky footer：残り高さを main が埋めてフッターを下へ押し出す */
    flex: 1 0 auto;
}
.main__logo{
    margin-top: 5em;
    margin-bottom: 1em;
}
.main__logo img{
    max-width: 326px;
}
/*==========
 about
==========*/
@keyframes imageBlur {
    from {
        opacity: 0;
        filter: blur(20px);
    }
    to {
        opacity: 1;
        filter: blur(0px);
    }
}

.img-blur {
    animation-name: imageBlur;
    animation-duration: 2.1s;
    animation-fill-mode: forwards;
    opacity: 0;
    filter: blur(20px);
}

.img-blur,
.img-blur img {
    display: block;
}

.about{
    margin-bottom: 4em;
}
.about__fv-image{
    margin-bottom: 4em;
}
.about__fv-image img{

}
.about__text-box{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-self: center;
}
.about__text-box__text{
    font-size: 14px;
    color: #727272;
}
.about__text-box__text + .about__text-box__text{
    margin-top: 2em;
}
/*==========
 plan
==========*/
.plan{
    margin-bottom: 4em;
    padding: 60px 32px;
}
.plan__header{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.plan__header__title{
    font-size: 26px;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 2px;
    color: #727272;
}
.plan__header__image{
}
.plan__header__image img{
    width: 100%;
    height: auto;
}
.plan__info{
    background: #F6F5F3;
    border-radius: 28px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    margin-bottom: 32px;
}
.plan__info__title{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #727272;
}
.plan__info__text{
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.plan__note{
    font-size: 12px;
    line-height: 1.6;
    color: #727272;
    text-align: center;
    margin-bottom: 32px;
}
.plan__list{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.plan__list__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 16px;
}
.plan__list__item__image{
    width: 200px;
    height: 150px;
}
.plan__list__item__image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.plan__list__item__title{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #727272;
    text-align: center;
    width: 100%;
}
.plan__list__item__price{
    border-top: 2px solid #DAD1AD;
    border-bottom: 2px solid #DAD1AD;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1;
}
.plan__list__item__price__currency{
    font-size: 20px;
    color: #BBA54D;
}
.plan__list__item__price__highlight{
    font-size: 30px;
    color: #BBA54D;
}
.plan__list__item__text{
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
    text-align: center;
    width: 100%;
}
.plan__custom{
    border: 4px solid #F6F5F3;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.plan__custom__image{
    width: 265px;
    height: 200px;
    position: relative;
}
.plan__custom__image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.plan__custom__content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}
.plan__custom__badge{
    background: #DAD1AD;
    border-radius: 99px;
    padding: 2px 24px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.8;
    color: #727272;
}
.plan__custom__title{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #727272;
    text-align: center;
    width: 100%;
}
.plan__custom__price{
    border-top: 2px solid #DAD1AD;
    border-bottom: 2px solid #DAD1AD;
    padding: 16px 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #BBA54D;
    text-align: center;
    width: 100%;
}
.plan__custom__text{
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
    text-align: center;
}
/*==========
 notice
==========*/
.notice{
    margin-bottom: 4em;
}
.notice__wrap{
    padding-top: 3.5em;
    padding-bottom: 3.5em;
    background: #F6F5F3;
    border-radius: 80px;
    position: relative;
}
.notice__wrap::after{
    content: "";
    display: block;
    background-image: url(../image/pattern02_right.webp);
    width: 60%;
    max-width: 482px;
    background-size: contain;
    aspect-ratio: 241 / 52;
    position: absolute;
    top: -10%;
    left: 0;
    z-index: 999;
}
.notice__title{
    margin-bottom: 1em;
}
.notice__list{
}
.notice__list__item{
    display: flex;
    align-items: center;
}
.notice__list__item + .notice__list__item{
    margin-top: 1em;
}
.notice__list__item__date{
    font-size: 12px;
}
.notice__list__item__text{
    font-size: 14px;
    margin-left: 4em;
}
/*==========
 service
==========*/
.service{
    margin-bottom: 4em;
}
.service__title{
    margin-bottom: 2em;
}
.service__title__text{

}
.service__list{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service__list__item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service__list__item img{
    max-width: 60px;
}
.service__list__item + .service__list__item{
    margin-top: 6em;
}
.service__list__item__icon{
    font-size: 14px;
}
.service__list__item__title{
    font-size: 18px;
}
.service__list__item__text{
    font-size: 14px;
}
/*==========
 member
==========*/
.member{
    margin-bottom: 4em;
}
.member__wrap{
    padding: 4em 0;
    background: #F6F5F3;
    border-radius: 0 80px 80px 0;
    position: relative;
}
.member__wrap::after{
    content: "";
    display: block;
    background-image: url(../image/pattern02_left.png);
    width: 40%;
    max-width: 302px;
    background-size: contain;
    aspect-ratio: 151 / 52;
    position: absolute;
    bottom: -14%;
    left: 0;
    z-index: 999;
}
.member__title{
    margin-bottom: 1em;
    /*
    font-size: 18px;
    */
}

.swiper-slide{
    width: 32%!important;
}
.member__list{
    padding: 0 3.5em;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
    height: 40px!important;
    width: 40px!important;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: ""!important;
    height: 40px!important;
    margin: auto;
    width: 40px!important;
}
.swiper-button-disabled{
    opacity: 0!important;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
    background-image: url("../image/arrow_prev.png");;
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
    background-image: url("../image/arrow_next.png");;
}
.member__list__item__image img{
    border-radius: 24px;
}
.member__list__item__dl{
    margin-top: 1.5em;
}
.member__list__item__dt{
    font-size: 18px;
    font-weight: bold;
}
.member__list__item__dd{
    font-size: 12px;
    margin-top: 0.5em;
}

.member__overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(114,114,114,0.4);
    z-index: 9999;
    top: 0;
    left: 0;
    padding: 4em;
    display: none;
    opacity: 0;
}
.member__overlay .icon{
    position: fixed;
    top: 6em;
    right: 6em;
    display: block;
    transform: rotate(45deg);
    inline-size: 1.5em;
    z-index: 9999;
    cursor : pointer;
}
.member__overlay__list{
    overflow-y: scroll;
    height: 100%;
    border-radius: 20px;
    background: #fff;
    padding: 0 2em;
    position: relative;
}
.member__overlay__list{
    
}
.member__overlay__list__item{
    padding: 4em 0;
    display: none;
    opacity: 0;
    transition: all 0.5s;
}
.member__overlay__list__item__image{
    
}
.member__overlay__list__item__dl{
    margin-top: 1em;
    font-size: 14px;
}
.member__overlay__list__item__wrap + .member__overlay__list__item__wrap{
    margin-top: 1.5em;
}
.member__overlay__list__item__dt{
    
}
.member__overlay__list__item__dd{

}

/*
.member__list{
    display: flex;
    flex-wrap: wrap;
}
.member__list__item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.member__list__item img{
    max-width: 100px;
}
*/
/*====================
instagram
====================*/
.instagram{
    margin-bottom: 4em;
}
.instagram__feed{
    display: flex;
    justify-content: center;
}
/* Smash Balloon Instagram Feed のスタイル調整 */
.instagram__feed #sb_instagram{
    max-width: 652px !important;
    width: 100% !important;
}
.instagram__feed #sb_instagram #sbi_images{
    display: grid !important;
    grid-template-columns: repeat(2, 163px) !important;
    grid-template-rows: repeat(2, 163px) !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 326px !important;
}
.instagram__feed .sbi_item{
    width: 163px !important;
    height: 163px !important;
    padding: 0 !important;
    margin: 0 !important;
}
.instagram__feed .sbi_photo{
    width: 163px !important;
    height: 163px !important;
    object-fit: cover !important;
}
/*====================
company-information
====================*/
.company-information{
    margin-bottom: 4em;
}
.company-information__title{
    margin-bottom: 1.5em;
}
.company-information__logo{
    display: flex;
    justify-content: center;
    margin-bottom: 2em;
}
.company-information__logo img{
    max-width: 200px;
}
.company-information__dl{
}
.company-information__dl__box{
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;*/
}
.company-information__dl__box + .company-information__dl__box{
    margin-top: 1em;
}
.company-information__dl__dt{
    font-size: 12px;
    font-weight: bold;
    width: 4.5em;
    margin-top: 1px;
}
.company-information__dl__dd{
    font-size: 14px;
    margin-left: 4em;
    flex: 1;
}
.company-information__dl__dd__text{

}
.company-information__dl__dd__list{

}
.company-information__dl__dd__list__item{
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.25em;
}
.company-information__dl__dd__list__item + .company-information__dl__dd__list__item{
    margin-top: 0.5em;
}
.company-information__image{

}
.company-information__image img{
}
/*====================
recruit
====================*/
.recruit{
    margin-bottom: 4em;
}
.recruit__title{

}
.recruit__wrap{

}
.recruit__wrap__item{
    border: solid 4px #F6F5F3;
    border-radius: 20px;
}
.recruit__wrap__item__title{
    font-size: 18px;
    line-height: 140%;
    padding: 1.5em;
    
    font-weight: bold;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    cursor: pointer;
  
    &::-webkit-details-marker {
      display: none;
    }
}
.recruit__wrap__item__container{
    display: grid;
    transition: grid-template-rows 0.5s;
}
.recruit__wrap__item__container__inner {
    overflow: hidden;
}
.recruit__dl{
    padding: 0 2em 2em;
}
.recruit__dl__box{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.recruit__dl__box + .recruit__dl__box{
    margin-top: 1em;
}
.recruit__dl__box__dt{
    width: 4.5em;
    font-size: 12px;
    color: #BBA54D;
    font-weight: bold;
}
.recruit__dl__box__dd{
    font-size: 14px;
    flex: 1;
    padding-left: 4em;
}
.recruit__dl__box__list{

}
.recruit__dl__box__list__item{

}
.recruit__dl__box__list__item + .recruit__dl__box__list__item{
    margin-top: 1em;
}
.recruit__dl__box__list__item__title{
    margin-bottom: 0.75em;
    font-weight: bold;
}
.recruit__dl__box__list__item__text{

}
.recruit__wrap__item__title-summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-bottom: 1px solid #727272;
    border-right: 1px solid #727272;
    content: '';
    transition: transform .3s;
}

.recruit__wrap__item[open] .recruit__wrap__item__title-summary::after {
    transform: rotate(225deg);
}
.recruit__wrap__item__title-summary br{
    display: block;
}

.inquiry{
    background: #F6F5F3;
    border-radius: 80px;
    padding: 4em 2em;
}
.inquiry__wrap{
    

}
.inquiry__title{
    display: flex;
    flex-wrap: nowrap;
    font-size: 14px;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: bold;
}
.inquiry__title::after{
    content: '*';
    display: inline-block;
    color: #F96A6A;
    margin-left: 0.25em;
}
.inquiry__input{
}
.inquiry__input input{
    font-size: 14px;
    width: 100%;
    display: block;
    border: none;
    padding: 1em;
    border-radius: 5px;
}

.inquiry__radio{
    margin-bottom: 1em;
}
.inquiry__radio p .wpcf7-radio{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.inquiry__radio label input {
    border: red;
    /*
    -webkit-appearance: none; 
    */
}

input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
span.wpcf7-spinner {
    display: none;
}
input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 16px;
    font-weight: bold;
    width: 200px;
    height: 55px;
    border-radius: 40px;
    border: solid 1px #BBA54D!important;
    background-color: #fff;
    border: none;
    color: #BBA54D;
    cursor: pointer;
    margin: 0 auto;
    display: block;
}
span.wpcf7-spinner {
    display: none;
}
.wpcf7-not-valid-tip,
.screen-reader-response,
.wpcf7-response-output{
    display: none;
}


/*aaa*/
.inquiry__radio label input {
  display: none;
}
.inquiry__radio label input + span {
  padding-left: 28px;
  display: inline-block;
  position: relative;
}
.inquiry__radio label input + span::after,
.inquiry__radio label input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
.inquiry__radio label input + span::before {
  border: 2px solid #DAD1AD;
  background-color: #ffffff;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.inquiry__radio label input + span::after {
  border: none;
  background-color: #BBA54D;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.inquiry__radio label input:checked + span::after {
  display: block;
}
.wpcf7-list-item + .wpcf7-list-item{
    margin-top: 1em;
}

.inquiry__textarea{
    margin-bottom: 2em;
}
.inquiry__textarea textarea{
    font-size: 14px;
    width: 100%;
    display: block;
    border: none;
    padding: 1em;
    height: 16em;
    border-radius: 5px;
}
::placeholder {
    color: rgba(114, 114, 114, 0.3);
}

.copyright{
    margin-left: auto;
    margin-top: auto;
}
/* フォーム*/
.form-confirm-wrap{
    background: #F6F5F3;
    padding: 5em 2em;
}
.form-confirm{
    background: #fff;
    border-radius: 40px;
    padding: 2em;
}

.form-confirm-text{
    text-align: center;
    margin-bottom: 1.5em;
}
.form-confirm .back-button input[type="submit"]{
    border: none!important;
}
.back-button-link{
    font-size: 16px;
    font-weight: bold;
    width: 200px;
    height: 55px;
    border-radius: 40px;
    border: none;
    color: #BBA54D;
    cursor: pointer;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}


.form-finish-wrap{
}
.form-finish{
    background: #F6F5F3;
    min-height: 80vh;
    border-radius: 0 0 80px 80px;
    padding: 8em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.form-finish-image img{
    max-width: 80px;
    height: auto;
}
.form-finish-text{
    font-size: 26px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    line-height: 1.25em;
}
.form-finish-text-box{
    font-size: 14px;
    text-align: center;
    margin-bottom: 2.5em;
}
.back-button-link.finish{
    border: solid 1px #BBA54D !important;
}

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

.service__title{
    margin-bottom: 0;
}
.service__list__item__text{
    height: 9em;
}

.notice__inner{
    max-width: 780px;
    margin: 0 auto;
}

.service__list{
    max-width: 780px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2em;
    row-gap: 4em;
    grid-template-rows: auto;
}
.service__list__item{
    width: 100%;
    max-width: 370px;
}
.service__list{
    margin-top: 2em;
}
.service__list__item+.service__list__item{
    margin-top: 0;
}

.member__inner{
    max-width: 780px;
    margin: 0 auto;
}
.member__title{
    padding: 0;
    margin-bottom: 2em;
}
.swiper-slide{
    width: 120px!important;
}
.member__list{
    padding: 0;
}
.swiper-button-prev,
.swiper-button-next{
    display: none!important;
}

.company-information__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 780px;
    margin: 0 auto 2em;
}
.company-information__logo{
    display: block;
    flex-basis: 200px;
}
.company-information__logo img{
    max-width: initial;
}
.company-information__dl{
    width: 520px;
    padding: 0;
}
.company-information__image{
    max-width: 650px;
    margin: 0 auto;
}
.company-information__dl__dd__list__item{
    line-height: initial;
}
.company-information__dl__dd__list__item + .company-information__dl__dd__list__item{
    margin-top: 0.25em;
}
.company-information__dl__dd__list__item br{
    display: none;
}

.recruit{
    max-width: 780px;
    margin: 0 auto 4em;
}
.recruit__title{
    margin-bottom: 1em;
}
.recruit__dl__box__dd{
    padding-left: 2em;
}
.sp_br{
    display: none;
}



}


/*　画面サイズが1024pxからはここを読み込む　*/
@media screen and (min-width:1024px) {

.header__inner{
    padding: 12px 40px 8px;
}
.header__actions{
    gap: 24px;
}
.header__phone{
    display: flex;
    height: 45px;
}

.plan__header{
    flex-direction: row;
    align-items: center;
}
.plan__header__title{
    flex-shrink: 0;
}
.plan__header__image{
    flex: 1;
}
.plan__list{
    flex-direction: row;
    gap: 40px;
}
.plan__list__item{
    flex: 1;
    min-width: 0;
}
.plan__custom{
    flex-direction: row;
    width: 600px;
    margin: 0 auto;
}
.plan__custom__image{
    flex-shrink: 0;
}
.plan__custom__content{
    flex: 1;
    align-items: flex-start;
}
.plan__custom__title,
.plan__custom__price,
.plan__custom__text{
    text-align: left;
}
@media screen and (min-width:1024px) {
    .hamburger-menu__inner{
        width: 436px;
    }
    #hamburger-menu__icon:checked ~ .hamburger-menu__inner{
        padding: 40px 142px 100px 40px;
        width: 436px;
    }
    #hamburger-menu__icon:checked ~ .hamburger-menu__cover{
        display: block;
        background: rgba(114, 114, 114, 0.5);
    }
}


.about{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    aspect-ratio: 16 / 9;
    margin: 0;
    position: relative;
}
.about::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 2em;
    width: 60%;
    background-image: url("../image/fv_pc.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    z-index: 0;
    animation-name: imageBlur;
    animation-duration: 2.1s;
    animation-fill-mode: forwards;
    opacity: 0;
    filter: blur(20px);
}
.about__fv-image{
    display: none;
}

.main__logo{
    position: relative;
    z-index: 1;
    margin-left: 5%;
    margin-bottom: 2em;
}
.main__logo img{
    max-width: 370px;
}
.about__text-box{
    margin: auto 0 auto 6%;
    position: relative;
    z-index: 1;
}


.inquiry__wrap{
    width: 500px;
    margin: 0 auto;
}

.notice__wrap::after{
    background-image: url(../image/pattern02_right_pc.webp);
    width: 60%;
    max-width: 481px;
    aspect-ratio: 481 / 102;
    top: -55px;
    bottom: -14%;
    left: 0;
}
.member__wrap::after{
    background-image: url(../image/pattern02_left_pc.png);
    width: 40%;
    max-width: 301px;
    aspect-ratio: 301 / 102;
    bottom: -14%;
    left: 0;
}

.instagram__feed #sb_instagram #sbi_images{
    grid-template-columns: repeat(4, 200px) !important;
    grid-template-rows: 200px !important;
    width: 800px !important;
}
.instagram__feed .sbi_item{
    width: 200px !important;
    height: 200px !important;
}
.instagram__feed .sbi_photo{
    width: 200px !important;
    height: 200px !important;
}

.form-confirm-wrap{
    background: #F6F5F3;
    padding: 5em 2em;
}
.form-confirm{
    max-width: 780px;
    margin: 0 auto;
    padding: 4em;
}
.form-confirm-wrap .form-confirm h2{
    margin-bottom: 1em;
}
.inquiry__title-wrap{
    display: flex;
}
.inquiry__title-wrap .inquiry__title{
    margin-top: 0;
    flex: 1;
}
.inquiry__title-wrap .inquiry__radio{
    margin-bottom: 0;
}
.inquiry__title-wrap .inquiry__title::after{
    display: none;
}
.inquiry__title-wrap .inquiry__input,
.inquiry__title-wrap .inquiry__radio{
    flex: 3;
}
.recruit__wrap__item__title-summary br{
    display: none;
}
}

@media screen and (min-width:1280px) {
.header__inner{
    padding: 12px 160px 8px;
}
.main__logo{
    margin-left: 10%;
    margin-bottom: 4em;
}
.about__text-box{
    margin-left: 12%;
}
}
/*==========
 新トップ（訪問看護）: FV / お知らせ / 理念
==========*/
/* 共通ボタン */
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 55px;
    padding: 16px 24px;
    border-radius: 40px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
}
.btn--fill{
    background: #bba54d;
    border: 1px solid #bba54d;
    color: #fff;
}
.btn--line{
    background: #fff;
    border: 1px solid #bba54d;
    color: #bba54d;
}
/* 共通セクション見出し */
.sec-head{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.sec-head__title{
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.8;
    letter-spacing: 2px;
    color: #727272;
}
.sec-head__dots{
    display: flex;
    gap: 4px;
}
.sec-head__dots i{
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #bba54d;
}
/* FV */
.fv{
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px;
    text-align: center;
}
.fv__logo{
    margin: 0;
}
.fv__logo img{
    width: 320px;
    max-width: 100%;
    height: auto;
    display: block;
}
.fv__image{
    width: 100%;
}
.fv__image img{
    width: 100%;
    height: auto;
    display: block;
}
.fv__catch{
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 8px;
    color: #727272;
}
.fv__buttons{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.fv__buttons .btn{
    width: 250px;
}
/* お知らせ */
.news{
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 48px 32px;
}
.news__feed{
    width: 100%;
}
.news__more{
    width: 200px;
}
/* 理念 */
.mission{
    position: relative;
    overflow: hidden;
    border-radius: 80px;
    background: #f6f5f3;
    padding: 60px 32px;
}
.mission::before{
    content: "";
    position: absolute;
    inset: 0;
    background: url(../image/about_bg.webp) no-repeat center / contain;
    opacity: .5;
    pointer-events: none;
}
.mission__inner{
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mission__text{
    margin: 0;
    padding: 24px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
    text-align: center;
}
.mission__media{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}
.mission__catch{
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 8px;
    color: #bba54d;
    text-align: center;
}
.mission__photo{
    width: 100%;
}
.mission__photo img{
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 400 / 230;
    object-fit: cover;
}
@media screen and (min-width:1024px) {
    .fv{
        display: grid;
        grid-template-columns: minmax(280px, 1fr) minmax(0, 750px);
        grid-template-rows: auto 1fr auto;
        grid-template-areas:
            "logo image"
            "catch image"
            "buttons image";
        column-gap: 40px;
        align-items: start;
        justify-items: start;
        min-height: 520px;
        padding: 60px 40px;
        text-align: left;
    }
    .fv__logo{ grid-area: logo; }
    .fv__logo img{ width: 350px; }
    .fv__catch{ grid-area: catch; align-self: center; }
    .fv__buttons{ grid-area: buttons; align-self: end; align-items: flex-start; }
    .fv__image{ grid-area: image; align-self: center; }

    .mission__media{
        flex-direction: row-reverse;
        align-items: stretch;
    }
    .mission__photo{
        width: 400px;
        flex-shrink: 0;
    }
    .mission__photo img{
        height: 230px;
        aspect-ratio: auto;
    }
    .mission__catch{
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media screen and (min-width:1280px) {
    .fv{
        padding: 80px 40px 80px 120px;
    }
}
/*==========
 新トップ（訪問看護）: サービス / 流れ / 料金 / 強み
==========*/
.sec-head--center{
    align-items: center;
}
.sec-head--center .sec-head__title{
    text-align: center;
}
.sec-head--center .sec-head__dots{
    justify-content: center;
}
/* サービス */
.svc{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 80px 32px;
}
.svc__lead{
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.8;
    letter-spacing: 2px;
    color: #727272;
    text-align: center;
}
.svc__list{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 326px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.svc__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.svc__item__img{
    width: 210px;
    max-width: 100%;
    height: auto;
    display: block;
}
.svc__item__title{
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #727272;
}
.svc__item__text{
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
/* ご利用開始までの流れ */
.flow{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 80px 24px;
}
.flow__steps{
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (min-width:1024px) {
    .flow__steps{
        max-width: 780px;
    }
}
.flow__step{
    position: relative;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border: 1px solid #bba54d;
    border-radius: 28px;
    background: #fff;
}
.flow__step:not(:last-child){
    margin-bottom: 24px;
}
.flow__step:not(:last-child)::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    width: 1px;
    height: 24px;
    background: #bba54d;
}
.flow__step__num{
    flex-shrink: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.8;
    letter-spacing: 2px;
    color: #bba54d;
}
.flow__step__body{
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.flow__step__title{
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #bba54d;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #727272;
    text-align: center;
}
.flow__step__text{
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.flow__step__list{
    margin: 0;
    padding-left: 1.5em;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.flow__step__list li{
    list-style: disc;
}
/* 料金の目安 */
.price{
    background: #f6f5f3;
    border-radius: 80px;
    padding: 60px 24px;
}
.price__inner{
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.price__note{
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: #727272;
    text-align: center;
}
.price__btn{
    width: 250px;
}
.price__group{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.price__group__title{
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #727272;
    text-align: center;
}
.price__table{
    box-sizing: border-box;
    width: 100%;
    background: #fff;
    border-radius: 28px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.price__table__head{
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f6f5f3;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: #727272;
}
.price__row{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}
.price__row__name{
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.price__row__name span{
    font-weight: 400;
    font-size: 12px;
    margin-left: 4px;
}
.price__row__cost{
    margin: 0;
    white-space: nowrap;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.8;
    color: #bba54d;
}
.price__num{
    font-size: 24px;
}
.price__per{
    margin-left: 4px;
    font-size: 14px;
    color: #727272;
}
/* 強み */
.strength{
    overflow: hidden;
    border-radius: 80px;
    padding: 60px 24px;
}
.strength__inner{
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.strength__list{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.strength__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    text-align: center;
}
.strength__item__icon{
    width: 60px;
    height: 60px;
    display: block;
}
.strength__item__title{
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #727272;
}
.strength__item__text{
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
@media screen and (min-width:768px) {
    .svc__list{
        max-width: 720px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
}
@media screen and (min-width:1024px) {
    .svc__list{
        max-width: 780px;
        grid-template-columns: repeat(3, 1fr);
    }
}
/*==========
 新トップ（訪問看護）: 活動拠点 / 採用 / 会社概要 / お問い合わせ / フッター
==========*/
/* 活動拠点 */
.area{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 60px 24px;
}
.area__inner{
    width: 100%;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.area__info{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.area__office{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f6f5f3;
}
.area__office__name{
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #727272;
}
.area__office__addr{
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.area__office__license{
    margin: 0;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.6;
    color: #727272;
}
.area__row{
    display: flex;
    gap: 16px;
    width: 100%;
}
.area__row__label{
    flex-shrink: 0;
    width: 60px;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.6;
    color: #727272;
}
.area__row__text{
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.area__box{
    background: #f6f5f3;
    border-radius: 28px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.area__map{
    width: 100%;
}
.area__map img{
    width: 100%;
    height: auto;
    display: block;
}
/* 採用 */
.career{
    background: #f6f5f3;
    border-radius: 0 80px 80px 0;
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
/* 採用セクションの中身を 780px 中央寄せ（背景は全幅のまま） */
.career > .sec-head,
.career__lead,
.career__env,
.career__jobs{
    width: 100%;
    max-width: 780px;
}
.career__lead{
    margin: 0;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}
.career__lead__main{
    font-weight: 700;
    font-size: 26px;
    line-height: 1.8;
    letter-spacing: 2px;
    color: #bba54d;
}
.career__lead__sub{
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.career__env{
    border: 2px solid #dad1ad;
    border-radius: 28px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.career__env__title{
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #727272;
    text-align: center;
}
.career__env__list{
    margin: 0;
    padding-left: 21px;
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.career__env__list li{
    list-style: disc;
}
.career__env__img{
    width: 235px;
    max-width: 100%;
}
.career__env__img img{
    width: 100%;
    height: auto;
    display: block;
}
.career__jobs{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.career__job{
    background: #fff;
    border-radius: 20px;
    padding: 24px;
}
.career__job summary{
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #727272;
}
.career__job summary::-webkit-details-marker{
    display: none;
}
.career__job summary::after{
    content: "";
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-right: 6px;
    border-right: 2px solid #727272;
    border-bottom: 2px solid #727272;
    transform: rotate(45deg);
    transition: transform .2s;
}
.career__job[open] summary::after{
    transform: rotate(-135deg);
}
.career__job__body{
    padding-top: 16px;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.career__job__body p{
    margin: 0;
}
.career__job__dl{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
}
.career__job__row{
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.career__job__row dt{
    flex-shrink: 0;
    width: 70px;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.6;
    color: #bba54d;
}
.career__job__row dd{
    flex: 1;
    min-width: 0;
    margin: 0;
}
.career__job__ul{
    margin: 0;
    padding-left: 21px;
    list-style: disc;
}
.career__job__note{
    font-size: 12px;
    line-height: 1.6;
}
.career__job__cta{
    display: flex;
    justify-content: center;
    padding-top: 24px;
}
.career__job__btn{
    width: 250px;
    max-width: 100%;
}
.career__flow{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.career__flow__title{
    margin: 0;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.8;
    letter-spacing: 2px;
    color: #727272;
    text-align: center;
}
.career__flow__steps{
    display: flex;
    gap: 12px;
    align-items: stretch;
}
.career__flow__step{
    flex: 1;
    min-width: 0;
    border: 2px solid #dad1ad;
    border-radius: 28px;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.career__flow__step__num{
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #727272;
}
.career__flow__step__label{
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #727272;
}
.career__flow__step img{
    width: 60px;
    height: 60px;
    display: block;
}
.career__flow__step p{
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
/* 選考の流れ PC：タイトル左・ステップ右の横並び */
@media screen and (min-width:1024px) {
    .career__flow{
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }
    .career__flow__title{
        flex-shrink: 0;
        text-align: left;
        white-space: nowrap;
    }
    .career__flow__steps{
        flex: 1;
        min-width: 0;
    }
}
/* 会社概要 */
.company{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 60px 24px;
}
.company__inner{
    width: 100%;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}
.company__logo{
    width: 300px;
    max-width: 100%;
}
.company__logo img{
    width: 100%;
    height: auto;
    display: block;
}
.company__info{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.company__name{
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #f6f5f3;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #727272;
}
.company__dl{
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.company__dl__row{
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.company__dl__row dt{
    flex-shrink: 0;
    width: 60px;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.6;
    color: #727272;
}
.company__dl__row dd{
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
/* 会社概要 PC：ロゴ左・情報右の2カラム */
@media screen and (min-width:1024px) {
    .company__inner{
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }
    .company__logo{
        flex-shrink: 0;
        width: 300px;
    }
    .company__info{
        flex: 1;
        min-width: 0;
    }
}
/* お問い合わせ */
.contact{
    background: #f6f5f3;
    border-radius: 80px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
/* 確認・完了（固定ページ単独表示）は左右に余白を足す */
.contact--page{
    margin: 40px 16px;
}
.contact__form{
    width: 100%;
    max-width: 500px;
}
/* 入力フォーム */
.contact-field{
    margin: 0 0 16px;
}
.contact-field__label{
    display: block;
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.contact-field__require{
    color: #f96a6a;
}
.contact-field__input{
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid #f6f5f3;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.contact-field__input::placeholder{
    color: #727272;
    opacity: .3;
}
.contact-field__textarea{
    min-height: 200px;
    resize: vertical;
}
/* ラジオ */
.contact-field__radios{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-field__radio{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
    cursor: pointer;
}
/* 郵便番号 + 住所検索ボタン 横並び */
.contact-field__zip{
    display: flex;
    gap: 16px;
    align-items: center;
}
.contact-field__zip .contact-field__input{
    flex: 1;
    min-width: 0;
}
.contact-field__zip__btn{
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #bba54d;
    border-radius: 40px;
    padding: 12px 24px;
    color: #bba54d;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    white-space: nowrap;
    cursor: pointer;
}
/* 送信/確認へボタン */
.contact-field__submit{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    height: 55px;
    margin: 8px auto 0;
    background: #fff;
    border: 1px solid #bba54d;
    border-radius: 40px;
    color: #bba54d;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
}
/* エラー通知 */
.contact__notice{
    font-size: 14px;
    line-height: 1.8;
    color: #f03030;
    text-align: center;
}
/* 確認画面 */
.contact__confirm__lead{
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
    text-align: center;
}
.contact__confirm__list{
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.contact__confirm__row{
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.contact__confirm__label{
    width: 150px;
    flex-shrink: 0;
    font-weight: 700;
}
.contact__confirm__value{
    margin: 0;
    flex: 1;
    min-width: 0;
}
.contact__confirm__message{
    margin: 0;
}
.contact__confirm__actions{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.contact__confirm__actions .contact-field__submit{
    margin: 0 auto;
}
.contact__confirm__back{
    display: block;
    height: 45px;
    margin: 0 auto;
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: #bba54d;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
}
/* 完了（thanks）画面 */
.contact__thanks{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}
.contact__thanks__icon{
    width: 80px;
    height: 80px;
}
.contact__thanks__title{
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.8;
    letter-spacing: 2px;
    color: #727272;
}
.contact__thanks__text{
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.contact__thanks__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    height: 55px;
    background: #fff;
    border: 1px solid #bba54d;
    border-radius: 40px;
    color: #bba54d;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    text-decoration: none;
}
.contact__privacy{
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
    text-decoration: underline;
}
/* フッター（訪問看護） */
.footer{
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 24px 16px;
    flex-shrink: 0;
}
.footer__nav{
    width: 100%;
}
.footer__nav__list{
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.footer__nav__list__item{
    text-align: center;
}
.footer__nav__list__item a{
    color: #727272;
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
}
.footer__brand{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.footer__logo{
    width: 180px;
}
.footer__logo img{
    width: 100%;
    height: auto;
    display: block;
}
img.footer__logo__pc{
    display: none;
}
.footer__phone{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}
.footer__phone__icon{
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.footer__phone__number{
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    color: #727272;
}
.footer__phone__hours{
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    color: #727272;
}
.footer__docs{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 24px;
}
.footer__doc{
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
    text-decoration: underline;
}
.footer__license{
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: #727272;
    text-align: center;
}
.footer__copyright{
    font-size: 10px;
    line-height: 1.6;
    color: #727272;
}
@media screen and (min-width:1024px) {
    .area__inner{
        flex-direction: row;
        align-items: flex-start;
    }
    .area__info{
        flex: 1;
        min-width: 0;
    }
    .area__map{
        flex: 1;
        max-width: 450px;
    }
    .career{
        border-radius: 80px;
    }
    .career__env__img{
        width: 280px;
    }
    /* フッター PC */
    .footer{
        padding: 40px 140px 16px;
    }
    .footer__nav__list{
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        width: 100%;
        max-width: 1000px;
    }
    .footer__nav__list__item a{
        white-space: nowrap;
    }
    .footer__brand{
        flex-direction: row;
        align-items: center;
        gap: 16px;
        width: 100%;
        max-width: 1000px;
    }
    .footer__logo{
        width: 200px;
    }
    img.footer__logo__sp{
        display: none;
    }
    img.footer__logo__pc{
        display: block;
    }
    .footer__phone{
        margin-left: auto;
        align-items: baseline;
    }
}
/* プライバシーポリシー */
.privacy{
    background: #f6f5f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 80px 16px 48px;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
}
.privacy__inner{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    max-width: 780px;
}
.privacy .sec-head--center{
    align-self: center;
}
.privacy__lead{
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.privacy__section{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.privacy__section__title{
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #727272;
}
.privacy__section__text{
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.privacy__list{
    margin: 0;
    padding-left: 21px;
    list-style: disc;
    font-size: 14px;
    line-height: 1.8;
    color: #727272;
}
.privacy__contact{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    padding: 48px 32px;
    background: #fff;
    border-radius: 40px;
    color: #727272;
}
.privacy__contact__name{
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 2px;
}
.privacy__contact__detail{
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
    line-height: 1.8;
}
.privacy__contact__address{
    margin: 0;
}
.privacy__contact__mail{
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0;
    white-space: nowrap;
}
.privacy__contact__mail__label{
    font-weight: 700;
}
.privacy__back{
    width: 100%;
    max-width: 200px;
}