/* 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"; */
    overflow-x: hidden;
}
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:#444;
    font-weight:bold;
}
.emphasis_green {
    color: #72bd01;
    font-weight: bold;
}
.emphasis_orange {
    color: #f78b2b;
    font-weight: bold;
}
.emphasis_blue {
    color: #2dabea;
    font-weight: bold;
}
.link {
    border-bottom: 0.5px solid #00A0E9;
    font-weight: 500;
    color: #00A0E9;
}
.link:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.subtitle {
    position: relative;
    width: fit-content;
    min-width: 200px;
    display: block;
    margin: 20px auto 30px;
    padding: 0 0.25em;
    background-size: 0.75em;
    color: #555;
    text-align: center;
    font-size: 2rem;
}
.subtitle_under {
    position: absolute;
    display: block;
    width: 100%;
    left: 50%;
    bottom: -33px;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: normal;
    color: #72bd01;
    /* color: #00A0E9; */
    font-size: 1.6rem;
}
.contents_index {
    display: block;
    width: fit-content;
    margin: 1em auto;
    border-bottom: 2px solid #72bd01;
    font-size: 1.6rem;
}
.basic_sentence {
    width: 90%;
    margin: 10px auto 10px;
    font-size: 1.4rem;
}
.basic_list {
    list-style-type: none;
    padding-left: 1em;
}
.basic_list li {
    position: relative;
    margin: 0 0 0.25em;
}
.basic_list li::before {
    position: absolute;
    content: "・";
    left: -1em;
    font-weight: bold;
}
/* 水平線タイトル */
.horizon_title {
    position: relative;
    display: block;
    width: fit-content;
    margin: 10px auto;
    color: #2dabea;
    font-weight: 500;
    font-size: 1.6rem;
}
.horizon_title::before, .horizon_title::after {
    position: absolute;
    content: '';
    top: 50%;
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #2dabea;
}
.horizon_title::before {
    left: -45px;
}
.horizon_title::after {
    right: -45px;
}

/* トップ 募集中の求人一覧 */
.top_recruit {
    width: 100%;
    margin: 10px auto;
}
.tr_index {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto 5px;
    border-bottom: 1px solid #2dabea;
    color: #2dabea;
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
}
.tr_list {
    width: 95%;
    /* max-width: 800px; */
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
    margin: 10px auto 0;
}
.tr_item {
    position: relative;
    margin: -1px 0 0 -1px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: -1px -1px 2px #eee, 2px 2px 2px #ccc;
    text-align: center;
    color: #444;
}
.tr_item:hover {
    transition: 0.2s;
    color: #2dabea;
}
.tr_item a {
    display: grid;
    grid-template-columns: 1fr 4fr;
    padding: 10px 5px;
    font-weight: bold;
    font-size: 1.6rem;
}
.tr_tri {
    color: #2dabea;
    transform: scale(1, 1.2);
}
.tr_text p {
    display: block;
    width: fit-content;
    margin: 0 auto;
}


/* ページボタン */
.bl_index {
    border-bottom: 1px solid #72bd01;
    color: #72bd01;
}
.button_list {
    width: 95%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
    margin: 10px auto 0;
}
.button_item {
    position: relative;
    margin: -1px 0 0 -1px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: -1px -1px 2px #eee, 2px 2px 2px #ccc;
    text-align: center;
    color: #444;
}
.button_item:hover {
    transition: 0.2s;
    color: #9dd34c;
}
.button_item a {
    display: grid;
    grid-template-columns: 1fr 4fr;
    padding: 10px 5px;
    font-weight: bold;
    font-size: 1.6rem;
}
.button_item_1_3 {
    grid-column: 1 / 3;
}
.button_item_1_3 a {
    grid-template-columns: 1fr 9fr;
}
.button_item_1_3 .bi_text {
    padding-right: 1em;
}
.bi_grid {
    display: grid;
    
}
.bi_tri {
    color: #9dd34c;
    transform: scale(1, 1.2);
}
.bi_text p {
    display: block;
    width: fit-content;
    margin: 0 auto;
}
/* .button_item::before {
    position: absolute;
    content: "";
    width: 13px;
    height: 8px;
    background: #9dd34c;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    left: 5%;
    top: 40%;
    transform: rotate(90deg) translate(0, -50%);
} */

.basic_wrapper {
    width: 95%;
    margin: 0 auto 15px;
}

/* ジャンプボタン */
.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;
    padding-left: 1em;
}
.form_jump:hover {
    color: #fff;
    background-color: #ff9d26;
    transition: 0.2s;
}
.form_jump:hover {
    opacity: 0.8;
    transition: 0.2s;
}

/* ジャンプボタン（別ver.） */
.form_jump_ano {
    width: 300px;
    border-radius: 0px;
    margin-bottom: 15px;
    background-color:#fffaf0;
}

/* ジャンプボタン → 電話ボタン変換（sp用） */
.button_tel {
    margin: 12px auto 0;
    border-radius: 0;
}
.button_tel_border {
    padding: 0.25em;
    border-bottom: 1px solid #ff9d26;
}
.button_tel_sentence {
    color: #444;
    text-align: center;
    margin-top: 0.5em;
    font-size: 1.2rem;
}

/* 電話ブロック*/
.tel_block {
    position: relative;
    width: fit-content;
    margin: 20px auto 0;
    padding: 10px 25px;
    border: 1px solid #ff9d26;
    box-shadow: 2px 2px 2px #dd871e
}
.tb_space {
    padding: 0.5em;
}
.tb_number {
    letter-spacing: 0.2rem;
    color: #ff9d26;
    border-bottom: 2px solid #ff9d26;
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
}
.tb_number a:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.tb_sentence {
    margin-top: 5px;
    text-align: center;
    color: #666;
    font-weight: bold;
    font-size: 1.6rem;
}

/* インスタボタン */
.link_insta {
    width: 50%;
    max-width: 250px;
    display: block;
    margin: 0 auto 20px;
}
.link_insta:hover {
    opacity: 0.8;
    transition: 0.2s;
}

/* ----- 施設について ----- */
.top_facility_image {
    width: 50%;
    max-width: 500px;
    margin: 0 auto;
}
.photo_grid {
    width: 90%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0 auto;
}
.photo_grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.photo_grid img:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.wide_narrow_grid {
    display: grid;
    grid-gap: 10px;
}
.mb_wide img {
    width: 100%;
}
.mg_narrow img {
    width: 95%;
}
.wn_text {
    margin: 0.5em auto 0.25em;
    font-size: 1.6rem;
}

/* ----- グループ説明 ----- */
.group_grid {
    position: relative;
    width: 100%;
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 0;
    margin: 10px auto 30px;
    background-image: url(../images/ring.png);
    background-size: cover;
}
.group_block {
    position: relative;
}
.group_block a {
    display: block;
    width: fit-content;
    margin: 0 auto;
}
.group_block a:hover {
    /* opacity: 0.8;
    transition: 0.2s; */
}
.group_block img{
    width: 100px;
    text-align: center;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 2px 2px 4px #ccc;
}
.FAC_TL_index {
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    padding: 0.1em 1em;
    border-radius: 50%;
    box-shadow: 2px 2px 2px #fff;
    color: #fff;
    font-weight: bold;
    font-size: 1.6rem;
}
.TL_blue {
    background-color: #37a0da;
}
.TL_green {
    background-color: #42b049;
}
.TL_orange {
    background-color: #ef834a;
}
.TL_pink {
    background-color: #ea6d8d;
}
.gg_center {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}
.gg_center img {
    width: 75px;
}

/* 業種別リスト */
.FAC_TL_relative {
    position: relative;
    padding-bottom: 15px;
}
.FAC_sentence {
    width: 100%;
    margin: 10px auto 10px;
    text-align: center;
    font-size: 1.4rem;
}
.FAC_subtitle {
    margin: 1em 0 0 0;
    /* font-size: 1.4rem; */
    color: #555;
    font-weight: bold;
}
.FAC_txt_list {
    width: 100%;
    
    margin: 0 auto 10px;
    padding-bottom: 5px;
    box-shadow: 2px 2px 4px #aaa;
    font-size: 1.2rem;
}
.FAC_TL_left {
    top: 20px;
    left: -170px;
}
.FAC_TL_right {
    top: 20px;
    right: -170px;
}
.FAC_TL_type {
    margin-bottom: 0.2em;
    padding: 0.1em 0.5em;
    font-weight: bold;
    color: #fff;
}
.FAC_TL_item {
    padding: 0 0.5em;
    text-align: left;
    background-color: #fff;
    color: #444;
    font-weight: bold;
}
.FAC_TL_item a {
    margin: 0;
}
.FAC_TL_item a:hover {
    /* transition: 0.2s;
    color: #ff9d26; */
}

/* ----- 運営会社について ----- */
.intro_list {
    list-style-type: disc;
    padding-left: 1em;
    color: #2e7eb7;
    font-weight: bold;
}
.intro_item {
    margin: 0.25em 0;
}
.company_video {
    margin-top: 20px;
}
.company_video video {
    width: 95%;
    max-width: 600px;
}


/* ----- 福利厚生----- */
.rotate_grid {
    display: grid;
    grid-gap: 20px;
    /* padding: 20px 0; */
    /* background-color: #ebffeb; */

    /* background-color: #e2ffe1; */
    /* background-color: #87d217; */
    /* background-color: #856959; */
    
    
}
.rotate_block {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ff9d26;
}
.rb_titel {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: #ff9d26;
    font-size: 2rem;
}
.rb_emphasis {
    color: #ff9d26;
    font-weight: bold;
}
/* .rb_titel::before, .rb_titel::after {
    position: absolute;
    content: '';
    top: 50%;
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #87d217;
    margin: 0 auto;
}
.rb_titel::before {
    left: -40px;
}
.rb_titel::after {
    right: -40px;
} */
.rb_image {
    margin: 10px auto 15px;
}
.rb_image img {
    width: 80%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.rb_sentence_wrapper .rb_sentence:nth-child(n+2){
    margin-top: 5px;
}
.rb_sentence_wrapper .ab_list {
    width: 95%;
    margin: 0 auto;
    padding: 0.5em 0.5em 0.5em 1.5em;
    border: 1px dashed #ccc;
}
.rb_sentence_wrapper .ab_list li:nth-child(n+2) {
    margin-top: 0.5em;
}
.rb_sentence {
    padding: 0 0.5em;
    font-size: 1.4rem;
}

/* ----- お祝い金 ----- */
.gift_sentence {
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    background-size: contain;
    text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 2px #fff;
    line-height: 1.8;
    color: #000;
    font-weight: 500;
}
.gift_sentence img {
    width: 150px;
    opacity: 0.3;
}
.gift_image {
    z-index: -100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* 台形インデックス */
.trapezoid_wrapper {
    width: 95%;
    display: grid;
    grid-gap: 20px;
    margin: 0 auto;
}
.trapezoid_index {
    width: 100%;
    grid-column: 1 / 4;
    display: flex;
    margin:  0 auto ;
    /* border-bottom: 1px solid #2dabea; */
    /* border-bottom: 1px solid #00A0E9; */
    color: #fff;
    font-weight: bold;
    font-size: 1.4rem;
}
.trapezoid_text {
    display: block;
    width: fit-content;
    padding: 0.5em 0.5em 0.1em 1em;
    /* background-color: #2dabea; */
    background-color: #00A0E9;
}
.trapezoid_tri {
    width: 0;
    height: 0;
    border-right: 17px solid  transparent;
    /* border-bottom: 29px solid  #2dabea; */
    border-bottom: 34px solid  #00A0E9;
}
.trapezoid_box {
    margin: 0 auto;
    border: 1px solid  #00A0E9;
    background-color: #fff;
    padding: 0.5em 1em 0.5em 1.5em;
    font-size: 1.4rem;
}
.trapezoid_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px 20px;
    margin: 0.2em 0;
    padding-left: 1em;
    list-style-type: none;
}
.trapezoid_list li {
    position: relative;
}
.trapezoid_list li::before {
    position: absolute;
    content: "・";
    left: -1em;
    font-weight: bold;
}
.trapezoid_order {
    line-height: 1.8;
}
.trapezoid_order li {
    position: relative;
    margin: 0.5em 0;
    padding-left: 1em;
}
.to_01::before {
    position: absolute;
    content: "①";
    left: -0.4em;
}
.to_02::before {
    position: absolute;
    content: "②";
    left: -0.4em;
}

/* ----- 求人アイコン ----- */
.recruit_icon_title {
    margin-top: 10px;
    color: #e78d37;
    text-align: center;
    font-weight: bold;
    font-size: 1.4rem;
}
.rit_border {
    padding-bottom: 1px;
    border-bottom: 1px solid #e78d37;
}
.recruit_icon_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px 0;
    width: 93%;
    max-width: 700px;
    margin: 10px auto 10px;
}
.recruit_icon_image {
    
}
.recruit_icon_image img {
    width: 75%;
}
.recruit_icon_block {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 3px;
    align-items: center;
    text-align: center;
}
.recruit_icon_text {
    color: #e78d37;
    /* color: #444; */
    font-weight: bold;
    font-size: 1.2rem;
}

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

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

/* ----- アクセス ----- */
.access_map {
    max-width: 1100px;
    margin: 0 auto;
}
.access_index {
    position: relative;
    display: block;
    width: fit-content;
    margin: 10px auto 5px;
    padding-left: 1em;
    color: #555;
    font-weight: bold;
    font-size: 1.6rem;
}
.access_index::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(../images/icon_access.png);
    background-size: contain;
    top: 45%;
    left: -0.3em;
    transform: translate(0, -50%);
}
.access_map img {
    width: 90%;
    text-align: center;
}
.access_address {
    width: 90%;
    margin: 10px auto 5px;
    color: #72bd01;
    font-weight: bold;
    font-size: 1.6rem;
}
.access_list {
    width: 90%;
    margin: 0 auto;
}
.access_item {
    display: flex;
    margin: 1em 0 0.5em;
    align-items: center;
    font-size: 1.4rem;
}
.access_item img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.access_sentence {
    font-size: 1.4rem;
}
.link_text {
    display: block;
    width: fit-content;
    margin: 5px auto;
    border-bottom: 1px solid #00A0E9;
    color: #00A0E9;
    font-weight: 500;
    font-size: 1.4rem
}
.link_text:hover {
    opacity: 0.8;
    transition: 0.2s;
}

.map_grid {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 10px;
}
.map_grid img {
    width: 100%; 
    max-width: 500px;
}
.map_left {
    text-align: center;
    color: #00A0E9;
    font-size: 1.2rem;
}


/* -----フッター----- */
.footer {
    position: relative;
    margin-top: 30px;
    /* margin-top: 100px; */
    padding: 10px 0 10px;
    /* padding: 10px 0 60px; */
    background-color: #eee;
    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;
}

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

/* fixedボタン */
.pageup_button {
    z-index: 9999;
    position: fixed;
    right: 5vw;
    bottom: 3vh;
    
}
.pageup_button:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.pageup_button img {
    width: 40px;
}

@media screen and (max-width: 599px) {
    .sp_hidden {
        display: none;
    }
    .spW_85 {
        width: 85%;
    }
    .sp_order2 {
        order: 2;
    }
    .sp_order3 {
        order: 3;
    }
    .sp_order4 {
        order: 4;
    }
    .sp_order5 {
        order: 5;
    }
    
}

@media screen and (min-width: 600px) {
    .pc_hidden {
        display: none;
    }
    .pc_center {
        text-align: center;
    }
    .subtitle {
        font-size: 3rem;
    }
    .contents_index {
        font-size: 2.4rem;
    }

    .basic_wrapper {
        margin: 0 auto 60px;
    }
    .basic_sentence {
        margin: 20px auto;
        font-size: 2rem;
    }
    .horizon_title {
        margin: 10px auto 20px;
        font-size: 2.4rem;
    }
    .link {
        border-bottom: 1px solid #00A0E9;
    }

    .top_wrapper {
        position: relative;
        width: 100%;
        margin-bottom: 50px;
    }

    .top_recruit {
        margin: 20px auto;
    }
    .tr_index {
        font-size: 2rem;
    }
    .tr_list {
        /* grid-template-columns: 1fr 1fr; */
        grid-template-columns: 1fr 1fr 1fr; 
        grid-gap: 10px;
        margin: 10px auto 0;
    }
    .tr_item a {
        grid-template-columns: 1fr 6fr;
        padding: 10px 40px 10px 5px;
        /* font-size: 1.5vw; */
        font-size: 1.8rem;
    }

    .button_list {
        position: absolute;
        /* width: 40%; */
        width: 35%;
        position: absolute;
        top: 70%;
        /* top: 82%; */
        left: 81%;
        transform: translate(-50%, -50%);
        grid-gap: 10px;
        
    }
    .button_item {
        box-shadow: 2px 2px 2px #555;
    }
    .button_item::before {
        width: 18px;
        height: 12px;
        top: 42%;
        transform: rotate(90deg) translate(0, -50%);
    }
    .button_item a {
        grid-template-columns: 1fr 5fr;
        /* font-size: 1.5vw; */
        font-size: 1.3vw;
    }
    .button_item_1_3 a {
        grid-template-columns: 1fr 10fr;
    }
    .button_item_1_3 .bi_text {
        padding-right: 1.5em;
    }
    

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

    /* 電話ブロック*/
    .tel_block {
        margin: 30px auto 0;
        padding: 10px 30px;
        border: 1px solid #ff9d26;
        box-shadow: 2px 2px 2px #dd871e
    }
    .tb_space {
        padding: 0.5em;
    }
    .tb_number {
        letter-spacing: 0.2rem;
        border-bottom: 2px solid #ff9d26;
        text-align: center;
        font-weight: bold;
        font-size: 3rem;
    }
    .tb_sentence {
        margin-top: 5px;
        text-align: center;
        font-size: 2rem;
    }

    /* ----- 施設について ----- */
    .wide_narrow_grid {
        grid-gap: 20px 10px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .mb_wide img {
        width: 90%;
    }
    .mg_narrow img {
        width: 80%;
    }
    .pc_grid_columns_1_3 {
        grid-column: 1 / 3;
    }

    /* ----- グループ説明 ----- */
    .group_grid {
        margin: 50px auto;
        grid-gap: 60px 0;
    }
    .group_block img{
        width: 200px;
        border: 8px solid #fff;
        box-shadow: 4px 4px 8px #ccc;
    }
    .FAC_TL_index {
        bottom: -20px;
        box-shadow: 4px 4px 4px #fff;
        font-size: 2.4rem;
    }
    .FAC_txt_list {
        font-size: 1.6rem;
    }
    .FAC_sentence {
        width: 90%;
        margin: 30px auto 50px;
        padding: 10px 0 40px;
        font-size: 2.2rem;
    }
    .gg_center img {
        width: 130px;
    }
    

    /* ----- 運営会社について ----- */
    .company_video {
        margin: 40px auto 0;
    }
    
    /* ----- 福利厚生 ----- */
    .rotate_grid {
        grid-gap: 40px;
        /* padding: 60px 0; */
        margin: 50px auto 50px;
        
    }
    .rotate_block {
        display: grid;
        grid-template-columns: 2fr 3fr;
        grid-gap: 20px;
        margin: 0 auto ;
        padding: 20px 10px;
    }
    .rb_titel {
        grid-column: 1 / 3;
        font-size: 3rem;
    }
    .rb_image {
        margin: 6px auto;
    }
    .rb_image img {
        width:90%;
    }
    .rb_sentence_wrapper .rb_sentence:nth-child(n+2){
        margin-top: 10px;
    }
    .rb_sentence_wrapper .ab_list {
        padding: 1em 0.5em 1em 1.5em;
    }
    .rb_sentence {
        font-size: 2rem;
    }
    
    /* ----- お祝い金 ----- */
    .gift_sentence {
        padding: 40px 0;
    }
    .gift_sentence img {
        width: 180px;
    }
    /* 台形インデックス */
    .trapezoid_wrapper {
        grid-gap: 40px;
    }
    .trapezoid_index {
        max-width: 650px;
        font-size: 2rem;
    }
    .trapezoid_tri {
        border-right:  24px solid transparent;
        /* border-bottom: 41px solid  #2dabea; */
        border-bottom: 48px solid #00A0E9;
    }
    .trapezoid_box {
        max-width: 650px;
        margin: 0 auto;
        border: 1px solid  #00A0E9;
        background-color: #fff;
        padding: 0.5em 1em 0.5em 1.5em;
        font-size: 2rem;
    }


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

    /* アクセス */
    .access_map {
        margin: 30px auto;
        display: grid;
        grid-template-columns: 3fr 2fr;
        grid-gap: 30px;
    }
    .access_index {
        margin: 0 auto 10px;
        font-size: 2.4rem;
    }
    .access_index::before {
        width: 25px;
        height: 25px;
        top: 48%;
        left: -0.2em;
    }
    .access_address {
        font-size: 2rem;
    }
    .access_list {
        /* display: grid;
        grid-template-columns: 1fr 1fr; */
        grid-gap: 20px;
        margin: 0 auto;
    }
    .access_item {
        font-size: 1.6rem;
    }
    .access_item img {
        width: 40px;
        height: 40px;
        margin-right: 20px;
    }
    .link_text {
        font-size: 1.8rem
    }

    .map_grid {
        width: 100%;
        grid-template-columns: 4fr 5fr;
        grid-gap: 40px;
        margin: 20px auto 10px;
        align-items: center;
    }
    .map_left {
        font-size: 1.6rem;
    }

    /* フッター */
    .footer {
        margin-top: 100px;
        /* margin-top: 250px; */
        padding: 30px 0 ;
    }
    .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;
    }

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

    /* fixedボタン */
    .pageup_button img {
        width: 50px;
    }
}

@media screen and (max-width: 900px) {
    .max900_hidden {
        display: none;
    }

    .FAC_txt_list_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 5px 10px;
    }
}
@media screen and (min-width: 901px) {
    .min901_hidden {
        display: none;
    }
    
    /* 業種別リスト */
    .FAC_txt_list {
        position: absolute;
        width: fit-content;
        min-width: 225px;
        box-shadow: 2px 2px 4px #aaa;
        font-size: 1.6rem;
    }
    .FAC_TL_upper_left {
        top: 20px;
        left: 10%;
        transform: translate(-50%, 0);
    }
    .FAC_TL_upper_right {
        top: 20px;
        left: 90%;
        transform: translate(-50%, 0);
    }
    .FAC_TL_lower_left {
        top: 300px;
        left: 10%;
        transform: translate(-50%, 0);
    }
    .FAC_TL_lower_right {
        top: 300px;
        left: 90%;
        transform: translate(-50%, 0);
    }
    .FAC_TL_type {
        padding: 0.1em 0.5em;
    }
    .FAC_TL_item {
        padding: 0 0.5em;
        text-align: left;
    }
}

#facility, #benefit, #recruit, #inquiry, #recruit01, #recruit02, #recruit03, #recruit04, #recruit05, #recruit06 {
    margin-top: -20px;
    padding-top: 20px;
}
#recruit01, #recruit02, #recruit03, #recruit04, #recruit05, #recruit06 {
    margin-top: -10px;
    padding-top: 10px;
}
@media screen and (min-width: 600px) {
    #facility, #benefit, #recruit, #inquiry, #recruit01, #recruit02, #recruit03, #recruit04, #recruit05, #recruit06 {
        margin-top: -30px;
        padding-top: 30px;
    }
    #recruit01, #recruit02, #recruit03, #recruit04, #recruit05, #recruit06 {
        margin-top: -15px;
        padding-top: 15px;
    }
}