/* CSS Document */
*,*::before,*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
/* -----共通項目----- */
html {
	font-size: 62.5%;
}
body {
    background-color: #fff;
    color: #000;
    font-family:  游ゴシック,"ヒラギノ角ゴ ProN W3", HiraKakuProN-W3,  "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
    /* font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO"; */
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	vertical-align: bottom;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.wrapper {
    /* max-width: 1200px; */
    margin:  0 auto;
}
.uppercase {
    text-transform: uppercase;
}
select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
}
ul {
    list-style: none;
}
.center {
    text-align: center;
}
.emphasis {
    color:#000;
    font-weight:bold;
}
.gr_emphasis {
    color:#72bd01;
    font-weight: bold;
}
.or_emphasis {
    color:#ff962c;
    font-weight: bold;
}

.sub_wrapper {
    width: 95%;
    max-width: 1000px;
    margin: 20px auto 0;
}
.subtitle {
    position: relative;
    width: fit-content;
    margin: 1em auto 0;
    color: #724618;
    border-bottom: 2px solid ;
    border-image: linear-gradient(to right, #22ac38, #006934) 1;
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
}
.subtitle::before {
    position: absolute;
    content:'';
    width: 25px;
    height: 25px;
    top: 2px;
    left: -30px;
    background-image: url("../../images/green_heart.png");
    background-size: contain;
}
.subtitle_cherry::before {
    background-image: url(../../images/cherry_blossom.png);
}

/* ----- ヘッダー ----- */
.header {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 4px;
    color: #86d80c;
    text-align: center;
    border-bottom: 1px solid #86d80c;
}
.header img {
    width: 200px;
}
.title_right {
    margin-left: 10px;
    line-height: 1.3;
    font-weight: bold;
    font-size: 1.8rem;
}
.bgc_green {
    background-color: #f2fffc;
}

.main {
    max-width: 1200px;
    margin: 0 auto;
}
.main img {
    width: 100%;
}

.top_movie {
    width: 100%;
    max-width: 100vh;
    border: 2px solid #fff;
}
.top_movie video {
    width: 100%;
    filter: drop-shadow(0px 0px rgba(0,0,0,0));
    outline: none;
    border: none;
}

/* ----- 店舗について ----- */
.top_image {
    width: 80%;
    max-width: 500px;
    margin: 10px auto;
    text-align: center;
}
.top_image img {
    width: 100%;
}
.grid_3_2 {
    width: 90%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    align-items: center;
    margin: 10px auto;
}
.grid_3_2 img {
    width: 80%;
    margin: 0 auto;
}
.basic_sentence {
    font-size: 1.4rem;
}
.grid_3_2_date {
    padding: 0.25em 0 0 10.5em;
}
.intro_detail {
    width: fit-content;
    margin: 0.75em auto;
    padding: 0.5em 1em;
    border: 1px solid #888;
    /* border: 1px solid #2ee69b; */
}

/* アクセス */
.access_wrapper {
    width: 90%; 
    max-width: 800px; 
    margin: 0 auto 0;
}

/* ----- 施設一覧 ----- */
.facility_wrapper {
    z-index: 100;
    position: relative;
    margin-top: 6px;
    padding: 16px 0 18px;
    background-color: #ffeaf4;
}
.facility_list {
    width: 90%;
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:10px ;
    margin: 10px auto 20px;
    font-size: 1.2rem;
}
.facility_item {
    display: grid;
    grid-template-rows: 8fr 5fr;
    /* border: 1px solid #333; */
    border-radius: 10px;
    aspect-ratio: 4 / 3;
    background-color: #fff;
    box-shadow: 3px 3px 3px #d3e9d6;
    /* box-shadow: 3px 3px 3px #ddd; */
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.facility_item a {
    display: block;
    width: 100%;
    height: 100%;
}
.facility_item:hover {
    color: #7ecf04;
    /* opacity: 0.9; */
    transition: 0.2s;
}
.facility_item img {
    width: 100%;
}
.fi_title {
    z-index: 5000;
    line-height: 1.3;
}
.facility_birdA {
    z-index: 1000;
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 170px;
}

/* ----- 施設のポイント ----- */
.recruit_icon_grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 4px;
    width: 90%;
    max-width: 1000px;
    margin: 10px auto;
}
.recruit_icon_img {
    padding: 4px 4px 4px 1px;
}
.recruit_icon_img img {
    width: 100%;
}
.recruit_icon_block {
    display: grid;
    grid-template-columns: 2fr 7fr;
    align-items: center;
}
.contents_icon_text {
    padding: 0 0.5em;
    font-size: 1.4rem;
}
.or_emphasis {
    color: #e78d37;
    font-weight: bold;
}

/* ----- 求人ラインナップ ----- */
.first_recruit {
    max-width: 1000px;
    margin: 1em auto 0;
}
.facility_announce_text {
    margin-top: 5px;
    text-align: center;
    font-size: 1.4rem;
}
.fr_index {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    margin: 5px auto;
}
.fr_a {
    width: 30%;
    display: block; 
}
.fr_index img {
    width: 100%;
    margin-bottom: 12px;
    box-shadow: 2px 2px 2px #0286c3;
}
.fr_index img:hover {
    transition: 0.2s;
    opacity: 0.8;
}

/* ----- お知らせ ----- */
.news_wrapper {
    margin-top: 1em;
}

/* ----- 導入説明 ----- */
.intro_wrapper {
    width: 100%;
    margin-top: 30px;
}
.intro_wrapper img {
    width: 70vw;
}
.intro_image {
    margin: 10px auto;
    text-align: center;
}
.intro_image img {
    max-width: 800px;
}
.intro_text {
    width: 90%;
    margin: 1em auto 0;
    font-size: 1.4rem;
}

/* ----- おすすめポイント ----- */
.point_mt {
    margin-top: 30px;
}
.point_wrapper {
    position: relative;
    width: 100%;
    margin: 60px 0;
    background-color: #86d80c;
}
.point_wrapper:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 45px 100vw 0 0;
    border-color: transparent #86d80c transparent transparent;
    position: absolute;
    left: 0;
    top: -45px;
}
.point_wrapper:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100vw 45px 0;
    border-color: transparent #86d80c transparent transparent;
    position: absolute;
    left: 0;
    bottom: -45px;
}
.point_list {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin: 0 auto;
    padding: 30px 0; 
}

.point_block {
    width: 100%;
    margin: 0 auto;
    color: #fff;
}
.point_block img {
    width: 61.8%;
    text-align: center;
}
.point_text_wrapper {
    width: 80%;
    margin: 0 auto;
}
.point_title {
    width: fit-content;
    margin-top: 1em;
    border-bottom: 2px dashed #fff;
    font-weight: bold;
    font-size: 1.6rem;
}
.point_sentence {
    margin-top: 0.5em;
    font-weight: bold;
    font-size: 1.4rem;
}


/* -----職種一覧----- */
.type_title_wrapper {
    width: 95%;
    max-width: 900px;
    margin: 0 auto;
}
.type_title {
    margin: 0.5em auto -0.5em;
    color: #7f540f;
    font-weight: bold;
    font-size: 1.6rem;
}
.type_title2 {
    margin-top: 1em;
}
/* .type_title {
    width: fit-content;
    margin: 1em 0 0;
    padding: 0 0.5em;
    color: #fff;
    background-color: #7f540f;
    font-weight: bold;
    font-size: 1.6rem;
} */

.recruitment_title {
    margin: 5px 0;
    text-align: center;
    margin-top: 50px;
    text-decoration:underline;
    font-size: 2rem;
}
.recruitment_annotation {
    text-align: center;
    font-size: 1.2rem;
}
.job_list {
    width: fit-content;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin: 20px auto;
    font-weight: bold;
    font-size: 1.6rem;
}
.branch_item {
    width: fit-content;
    margin: 0.5em 0 0;
    border-bottom:1px dotted;
    font-size: 1.6rem;
}

.contents_title {
    text-align: center;
    font-size: 2rem;
}

/* -----アコーディオン----- */
.accordion_area{
    list-style: none;
    width: 95%;
    max-width: 800px;
    margin: 10px auto;
}

.accordion_area li{
    margin: 10px 0;
}

.accordion_area section {
    padding-bottom: 4px;
	box-shadow: 3px 3px 3px #aaa;
    border: 1px solid rgb(230, 230, 230);
}
/*アコーディオンタイトル*/
.accordion_title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-weight: bold;
    padding: 4px 4px 2px 40px;
    transition: all .5s ease;
    color:#72bd01;
    /* color: #86d80c; */
    font-size:1.6rem;
}

/*アイコンの＋と×*/
.accordion_title::before,
.accordion_title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 3px;
    background-color: #444;
    border-radius: 1px;
}

.accordion_title::before{
    top:48%;
    left: 13px;
    transform: rotate(0deg);
    transition: 0.2s;
}
.accordion_title::after{    
    top:48%;
    left: 13px;
    transform: rotate(90deg);
    transition: 0.2s;
}
/*　closeというクラスがついたら形状変化　*/
.accordion_title.close::before{
	transform: rotate(225deg);
    transition: 0.2s;
}

.accordion_title.close::after{
	transform: rotate(-45deg);
    transition: 0.2s;
}

/*アコーディオンで現れるエリア*/
.accordion_box {
    display: none;/*はじめは非表示*/
    background: #fff;
	margin:3%;
    padding-bottom: 10px;
}
/* 求人情報 */
.detail_block {
    max-width: 0 0 8px;
}
.detail_announce {
    padding: 0.5em;
    font-size: 1.2rem;
}
.detail_index {
    margin: 0 0 3px;
    border-bottom: 1px solid #72bd01;
    line-height: 24px;
    font-size:1.4rem;
}
.accordion_index {
    margin-left: 0;
    font-weight: bold;
    font-size: 1.4rem;
}
.ai_emphasis {
    font-size: 2rem;
}
/* .ai_small {
    font-size: 1.2rem;
} */
.accordion_annotation {
    display: flex;
    justify-content: space-between;
    margin-top: 2px;
    color: #000;
    font-size: 1.2rem;
}
.detail_content {
    margin: 4px 0 8px;
    line-height: 1.5;
    font-size: 1.4rem;
}
.accordion_annotation_p{
    display: block;
}
.mb {
    margin-bottom: 10px;
}
.ml- {
    margin-left: -6px;
}
.ls05em {
    letter-spacing: 0.5em;
}
.ls1em {
    letter-spacing: 1em;
}
.ls15em {
    letter-spacing: 1.5em;
}
.ls2em {
    letter-spacing: 2em;
}
.ls35em {
    letter-spacing: 3.5em;
}
.ls066em {
    letter-spacing: calc(1em / 3 * 2);
}
.ls033em {
    letter-spacing: calc(1em / 3);
}
.ls025em {
    letter-spacing: 0.25em;
}
.ls02em {
    letter-spacing: 0.2em;
}

/* ----- モデル給与 ----- */
.model_wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 10px auto 0;
}
.model_title {
    color: #72bd01;
    font-weight: bold;
    font-size: 1.6rem;
}
.model_grid_container {
    display: grid;
    grid-gap: 10px;
    margin: 5px auto 0;
}
.model_grid {
    width: 95%;
    max-width: 550px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    margin: 0 auto;
    padding: 4px 8px;
    border: 1px solid #7ecf04;
    /* border: 2px solid #7ecf04;
    border-radius: 5px; */
    align-items: flex-end;
}
.model_grid img {
    width: 95%;
    margin-bottom: 6px;
}
.model_subtitle {
    color: #72bd01;
    border-bottom: 1px solid #72bd01;
    font-weight: bold;
    font-size: 1.2rem;
}
.model_salary {
    color: #e78d37;
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
}
.model_announce {
    text-align: center;
    font-size: 1.2rem;
}
.part_grid {
    grid-template-columns: 4fr 1fr;
    align-items: center;
}
.part_grid img {
    margin-bottom: 0;
}
.model_part_list {
    width: 95%;
    max-width: 550px;
    margin: 10px auto 0;
}
.model_part_list {
    list-style-type: square;
}
.model_part_item {
    margin: 0 0 0.5em 1em;
    font-size: 1.4rem;
}
.model_part_emphasis {
    border-bottom: 1px solid #444;
    color: #444;
    font-weight: bold;
}
/* ----- 祝い金 ----- */
.celebration_wrapper {
    margin: 0 auto 10px;
} 
.celebration_amount {
    width: 70%;
    max-width: 450px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    margin: 5px auto;
    color: #724618;
    font-weight: bold;
    font-size: 1.8rem;
}
.price_color {
    text-align: right;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 0 0 2px #e78d37, 0 0 2px #e78d37, 0 0 2px #e78d37, 0 0 2px #e78d37, 0 0 2px #e78d37, 0 0 2px #e78d37, 0 0 2px #e78d37, 0 0 2px #e78d37, 0 0 2px #e78d37, 0 0 2px #e78d37, 0 0 2px #e78d37, 0 0 2px #e78d37, 0 0 2px #e78d37, 0 0 2px #e78d37, 0 0 2px #e78d37, 0 0 2px #e78d37;
}
.price_job, .price_color {
    border-bottom: 2px solid #c7e49c;
    margin-bottom: 0.5em;
}
.celebration_condition {
    max-width: 500px;
    font-size: 1.2rem;
}
/* -----  pdfボタン ----- */ 
.management_botton {
    width: 90%;
    max-width: 500px;
    display: grid;
    grid-template-columns: 5fr 1fr;
    margin: 10px auto 20px;
    padding: 8px 8px;
    border: 1px solid #999;
    box-shadow: 2px 2px 2px #ccc;
    align-items: center;
    text-align: center;
}
.management_botton img {
    width: 80%;
    margin: 0 auto;
}
.management_text {
    color: #666;
    font-weight: bold;
    font-size: 1.4rem;
}
.model_wrapper a:hover {
    opacity: 0.8;
    transition: 0.2s;
}


/* ジャンプボタン */
.form_jump {
    display: block;
    width: 220px;
    margin: 0 auto;
    color: #ff9d26;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ff9d26;
    border-radius: 20px;
    box-shadow: 2px 2px 2px #dd871e;
    line-height: 40px;
    font-weight: bold;
    font-size: 1.4rem;
}
.form_jump a {
    display: block;
}
.form_jump:hover {
    color: #fff;
    background-color: #ff9d26;
    transition: 0.2s;
}
.form_jump:hover {
    opacity: 0.8;
    transition: 0.2s;
}

/* 電話ボタン */
.button_tel {
    margin: 12px auto 0;
    border-radius: 0;
}
/* 電話番号 */
.tel_block {
    position: relative;
    width: fit-content;
    margin: 50px auto 0;
    padding: 25px 50px 20px ;
    border: 1px solid #ff9d26;
}
.tb_title {
    position: absolute;
    top: -15px;
    left: 20px;
    color: #ff9d26;
    font-weight: bold;
    font-size: 2rem;
}
.tb_space {
    padding: 0.5em;
    background-color: #fff;
}
.tb_number {
    letter-spacing: 0.2rem;
    color: #ff9d26;
    /* border-bottom: 2px solid #ff9d26; */
    text-align: center;
    font-weight: bold;
    font-size: 3rem;
}
.tb_number a:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.tb_sentence {
    margin-top: 10px;
    text-align: center;
    font-size: 2rem;
}
#form_wrapper {
    padding-top: 5px;
    margin-top: -5px;
}

/* 地図 */
.map {
    max-width: 1200px;
    margin: 10px auto 0;
    text-align: center;
}

/* 施設情報 */
.about_table {
    width:100%;
    max-width: 800px;
    margin: 8px auto 0;
    font-size: 1.4rem;
}

.about_th, .about_td {
    padding: 4px 8px;
    border-top: 1px solid #c4e1ef;
    border-bottom: 1px solid #c4e1ef;
}
.about_th {
    min-width: 75px;
    background-color: #eaf8ff;
    /* background-color: #effdff; */
    font-weight:bold;
}

/* 法人紹介 */
.company_video {
    margin-top: 20px;
    max-width: 100vh;
}
.company_video video {
    width: 90%;
}

/* -----フッター----- */
.footer {
    position: relative;
    margin-top: 100px;
    padding: 10px 0 20px;
    background-color: #f0fff2;
    color: #000;
}
.footer img {
    width: 350px;
}
.silhouette {
    position: absolute;
    top: -85px;
    left: 50%;
    transform: translate(-50%, 0);
}

.footer_contents {
    max-width: 1200px;
    margin: 0 auto;
}
.footer_block {
    margin: 0 auto;
    padding: 10px;
}
.footer_name {
    font-size: 2rem;
    font-weight: bold;
}
.footer_address, .footer_tel {
    font-size: 1.6rem;
}
.footer_business {
    margin-top: 0.5em;
    font-size: 1.2rem;
}
.copy {
    padding: 20px 0 0;
    text-align: center;
    font-size: 1rem;
}

/* ----- fixedボタン ----- */
.fixed_button {
    z-index: 9999;
    width: 100%;
    position: fixed;
    bottom: 0;
    /* background-color: rgba(255,255,255,0.8); */
    border: 1px solid #ff9d26;
    background-color: #fff;
    text-align: center;
    font-weight: bold;
    color: #ff9d26;
    font-size: 1.6rem;
}
.fixed_button a {
    display: block;
    padding: 10px;
}


/* ----- サンクスページ ----- */
.thanks_wrapper {
    max-width: 1200px;
    margin: 30px auto 0;
}
.thanks_title {
    text-align: center;
    font-size: 2rem;
}
.thanks_message {
    width: 90%;
    margin: 10px auto;
    text-align: center;
    color: #003953;
    line-height: 2 ;
    font-size: 1.4rem;
}

@media screen and (min-width: 601px) {
    .pc_hidden {
        display: none;
    }
    .sub_wrapper {
        margin: 60px auto 0;
    }

    .subtitle {
        margin-top: 2em;
        font-size: 3rem;
    }
    .subtitle::before {
        width: 30px;
        height: 30px;
        top: 8px;
        left: -38px;
    }

    /* ヘッダー */
    .header {
        padding: 8px;
    }
    .header img {
        width: 300px;
    }
    .title_right {
        margin-left: 20px;
        font-size: 2.6rem;
    }

    .top_movie {
        max-width: 1000px;
        margin: 0 auto;
    }

    .diagonal_title {
        font-size: 3rem;
    }

    .first_recruit {
        margin: 50px auto;
    }
    .facility_announce_text {
        margin-top: 15px;
        text-align: center;
        font-size: 2rem;
    }
    .fr_index {
        margin: 15px auto;
    }
    .fr_index img {
        margin-bottom: 20px;
        box-shadow: 3px 3px 3px #0286c3;
    }

    .type_title_wrapper {
        padding: 0;
    }
    .type_title {
        margin: 1em auto 0;
        font-size: 2.4rem;
    }
    .type_title2 {
        margin-top: 1.5em;
    }

    /* ----- 店舗について ----- */
    .top_image {
        margin: 20px auto;
    }
    .grid_3_2 {
        grid-template-columns: 3fr 2fr;
        margin: 50px auto;
    }
    .grid_3_2 img {
        order: 2;
        width: 100%;
    }
    .basic_sentence {
        order: 1;
        font-size: 2rem;
    }
    .intro_detail {
        margin: 1em auto;
        padding: 0.75em 1.5em;
        border: 1px solid #888;
    }

    /* アクセス */
    /* .access_wrapper {
        margin: 40px auto 0;
    } */


    /* ----- 施設一覧 ----- */
    .facility_wrapper {
        margin-top: 12px;
        padding: 30px 0 32px;
    }
    .facility_list {
        width: 90%;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 40px 20px;
        margin: 20px auto;
        font-size: 2rem;
    }
    .facility_item {
        border-radius: 10px;
        aspect-ratio: 4 / 3;
        box-shadow: 4px 4px 4px #d3e9d6;
    }
    .fi_small {
        margin-left: 0.5em;
        font-size: 1.8rem;
    }
    .facility_birdA {
        z-index: 1000;
        right: 0;
        bottom: 50px;
        width: 300px;
    }
    .facility_birdB {
        z-index: 1000;
        position: absolute;
        left: 0;
        top: 50px;
        width: 300px;
    }

    /* ----- 施設のポイント ----- */
    .recruit_icon_grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px 10px;
        margin: 20px auto;
    }
    .contents_icon_text {
        padding: 0.5em;
        font-size: 2rem;
    }
    .recruit_icon_img {
        padding: 6px 6px 6px 1px;
    }

    /* アコーディオン */
    .accordion_index {
        font-size: 2rem;
    } 
    .ai_emphasis {
        font-size: 2.4rem;
    }
    /* .ai_small {
        margin-left: 10px;
        font-size: 1.6rem;
    } */
    .detail_index {
        font-size: 2rem;
    }
    .accordion_annotation {
        font-size: 1.6rem;
    }
    .detail_block {
        margin: 0 0 24px;
    }
    .detail_announce {
        font-size: 1.6rem;
    }
    .detail_content {
        font-size: 2rem;
    }

    /* 導入説明 */
    .intro_wrapper {
        margin-top: 50px;
    }
    .intro_wrapper img {
        width: 50%;
    }
    .intro_image {
        margin: 30px auto 10px;
    }

    .intro_text {
        width: 80%;
        max-width: 900px;
        font-size: 2rem;
    }

    /* おすすめポイント */
    .point_mt {
        margin-top: 50px;
    }
    .point_wrapper {
        margin: 150px 0;
    }
    .point_wrapper:before {
        border-width: 100px 100vw 0 0;
        left: 0;
        top: -100px;
    }
    .point_wrapper:after {
        border-width: 0 100vw 100px 0;
        left: 0;
        bottom: -100px;
    }
    .point_list {
        grid-template-columns: 1fr 1fr;
        grid-gap: 80px 40px;
        padding: 80px 0;
    }
    .point_block img {
        width: 70%;
    }
    .point_title {
        margin-top: 1em;
        border-bottom: 4px dashed #fff;
        font-size: 2.4rem;
    }
    .point_sentence {
        margin-top: 0.5em;
        font-size: 2rem;
    }

    /* モデル給与 */
    .model_wrapper {
        margin: 20px auto 0;
    }
    .model_title {
        font-size: 2.4rem;
    }
    .model_grid_container {
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px 0;
        padding-bottom: 20px;
        /* border-bottom: 1px dotted #ccc; */
    }
    .model_grid {
        display: grid;
        grid-template-columns: 12fr 5fr;
        margin: 20px auto 0;
        padding: 10px 40px 20px;
        align-items: center;
    }
    .model_grid img {
        width: 90%;
        margin: 0 auto;
    }
    .model_subtitle {
        border-bottom: 2px solid #72bd01;
        font-size: 1.8rem;
    }
    .model_salary {
        font-size: 2.4rem;
    }
    .model_announce {
        font-size: 1.5rem;
    }
    .part_grid {
        grid-template-columns: 12fr 3fr;
        padding: 10px 40px 20px;
    }
    .model_part_list {
        margin: 20px auto 0;
    }
    .model_part_item {
        font-size: 1.8rem;
    }
    .model_part_emphasis {
        border-bottom: 2px solid #444;
    }
    /* 祝い金 */
    .celebration_wrapper {
        margin: 0 auto 20px;
    }
    .celebration_amount {
        margin: 15px auto;
        font-size: 3.2rem;
    }
    .price_color {
        text-shadow: 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37, 0 0 3px #e78d37;
    }
    .price_job, .price_color {
        border-bottom: 3px solid #c7e49c;
    }
    .celebration_condition {
        margin: 0 auto;
        font-size: 1.6rem;
    }

    /* -----  pdfボタン ----- */ 
    .management_botton {
        margin: 20px auto 40px;
        padding: 10px 20px;
        box-shadow: 4px 4px 2px #ddd;
    }
    .management_botton img {

    }
    .management_text {
        font-size: 2rem;
    }


    /* ジャンプボタン */
    .form_jump {
        width: 310px;
        margin: 40px auto;
        border-radius: 40px;
        box-shadow: 3px 3px 3px #dd871e;
        line-height: 50px;
        font-size: 2rem;
    }
    .form_jump_ano {
        width: 400px;
        padding: 0;
        border-radius: 0;
    }
    .form_jump_ano a {
        line-height: 66px;
    }

    /* 地図 */
    .map {
        margin: 20px auto 0;
    }

    /* 施設情報 */
    .about_table {
        margin: 20px auto 0;
        font-size: 2rem;
    }
    .about_th, .about_td {
        padding: 8px 16px;
    }

    /* 法人紹介 */
    .company_video {
        width: fit-content;
        margin: 40px auto 0;
    }

    /* フッター */
    .footer {
        margin-top: 250px;
        padding: 40px 0 ;
        color: #444;
    }
    .footer img {
        width: 800px;
    }
    .silhouette {
        top: -200px;
    }
    .footer_name {
        font-size: 2.4rem;
    }
    .footer_address, .footer_tel {
        font-size: 2rem;
    }
    .footer_business {
        margin-top: 0.5em;
        font-size: 1.6rem;
    }
    .copy {
        padding: 20px 0 0;
        font-size: 1.2rem;
    }

    /* ----- fixedボタン ----- */
    .fixed_button {
        width: 280px;
        right: 2%;
        bottom: 2%;
        border: 2px solid #ff9d26;
        border-radius: 16px;
        font-size: 2rem;
    }
    .fixed_button a {
        display: block;
        padding: 10px;
    }

    /*  サンクスページ  */
    .thanks_wrapper {
        margin: 100px auto 0;
    }
    .thanks_title {
        font-size: 3rem;
    }
    .thanks_message {
        width: 90%;
        margin: 50px auto;
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 600px) {
    .sp_hidden {
        display: none;
    }
    .sp_font14 {
        font-size: 1.4rem;
    }
    .ai_small {
        font-size: 1.6rem;
    }
    .grid_3_2_date {
        text-align: right;
    }

    
}