/* CSS Document */
*,*::before,*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
/* -----共通項目----- */
html {
	font-size: 62.5%;
}
body {
    /* background-color: #fffbfe; */
    background-color: #fff;
    color: #000;
    font-family:  游ゴシック,"ヒラギノ角ゴ ProN W3", HiraKakuProN-W3,  "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	vertical-align: bottom;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.wrapper {
    max-width: 1400px;
    margin:  0 auto;
}

.uppercase {
    text-transform: uppercase;
}

.center {
    text-align: center;
}

.emphasis {
    font-weight:bold;
    color:#000;
}
.subtitle {
    position: relative;
    width: fit-content;
    margin: 1em auto 0;
    text-align: center;
    font-size: 2rem;
}
.subtitle::before {
    position: absolute;
    content:'';
    width: 20px;
    height: 20px;
    top: 6px;
    left: -24px;
    background-image: url(../images/leaf.png);
    background-size: contain;
}
.basic_wrapper {
    width: 95%;
    max-width: 1200px;
    margin: 30px auto;
}

/* ----- リスト ----- */
ul {
    list-style: none;
}
.basic_list {
    list-style-type: none;
    padding-left: 1em;
}
.basic_list li {
    position: relative;
    margin: 0;
}
.basic_list li::before {
    position: absolute;
    content: "・";
    left: -1em;
    font-weight: bold;
}
.annotation_list {
    list-style-type: none;
    padding-left: 1em;
}
.annotation_list li {
    position: relative;
    margin: 0;
    padding-left: 0.1em;
}
.annotation_list li::before {
    position: absolute;
    content: "※";
    left: -1em;
}

/* ----- ヘッダー ----- */
.header {
    width: 100%;
    position: fixed;
    z-index: 9000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: #fff;
}
.header img {
    width: 180px;
    vertical-align: middle;
}
/* PC版のみ */
.header_nav_list {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    color: #555;
    font-weight: bold;
    font-size: 1.8rem;
}
.header_nav_item {
    position: relative;
    margin: 0 20px;
}
.header_nav_item {
    width: fit-content;
    position: relative;
    margin: 0 20px;
}
.header_nav_item:hover {
    color: #85bc41;
    transition: 0.3s;
}
.header_nav_item::before {
    position: absolute;
    content:'';
    width: 18px;
    height: 18px;
    top: 6px;
    left: -22px;
    background-image: url(../images/leaf.png);
    background-size: contain;
    opacity: 0;
}
.header_nav_item:hover::before {
    transition: 0.3s;
    opacity: 1;
}

.header_tel {
    width: fit-content;
    margin: 0 20px;
    color: #ff9d26;
    font-weight: bold;
    font-size: 2rem;
}
.header_tel::after {
    display: none;
}

.top_image {
   padding-top: 45px;
}

/* -----ハンバーガーメニュー----- */
/*　ハンバーガーボタン　*/
.hamburger {
    z-index: 9999;
	display : block;
	position: fixed;
	right : 13px;
	top   : 6px;
	width : 42px;
	height: 36px;
	cursor: pointer;
	text-align: center;
    background-color: #85bc41;
}
.hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 3px ;
    left    : 6px;
    background : #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
    top: 9px;
}
.hamburger span:nth-child(2) {
    top: 17px;
}
.hamburger span:nth-child(3) {
    top: 25px;
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
    top : 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
}
nav.globalMenuSp {
    position: fixed;
    z-index : 2;
    top  : 0;
    left : 0;
    color: #000;
    /* background: #fff; */
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    font-size: 1.6rem;
}
nav.globalMenuSp ul {
    background-color: rgba(0,0,0,0.8);
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #ccc;
}
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
nav.globalMenuSp ul li:hover{
    background :#ddd;
}
nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 2em 0;
    text-decoration :none;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}

/* ----- お知らせ ----- */
/* お知らせ */
.news_list {
    box-sizing: border-box;
	margin: 0;
	padding: 0;

    width: 90%;
    max-width: 700px;
    height: 180px;
    overflow-y: scroll;
    margin: 10px auto;
    padding-right: 10px;
    font-size: 14px;
}
.news_over {
    display: flex;
    margin-bottom: 5px;
    align-items: baseline;
    line-height: 1.3;
}
.news_date {
    margin-right: 1.5em;
}
.news_category {
    padding: 0.2em 0.5em;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 1.3rem;
}
.nc_news {
    background-color: #72bd01;
}
.nc_recruit {
    background-color: #2dabea;
}
.news_item {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #72bd01;
    color: #444;
    font-weight: 500;
}
.news_item a:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.ni_link {
    border-bottom: 1px solid #523210;
}
/* .news_wrapper {
    width: 90%;
    max-width: 900px;
    margin: 12px auto 0;
}
.news_list {
    height: 140px;
    padding: 8px 8px 8px 16px;
    overflow-y: scroll;
    background-color: #fff;
    border: 1px solid #aaa;
}
.news_item {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-gap: 10px;
    line-height: 1.7;
    margin-bottom: 4px;
    padding: 2px 0 4px;
    border-bottom: 1px dotted #aaa;
    font-size: 1.2rem;
}
.ni_border {
    border-bottom: 1px solid #444;
} */

/* スクロールバー */
.news_list::-webkit-scrollbar {
    width: 14px;
}
.news_list::-webkit-scrollbar-track {
    background-color: #EFEFEF;
    border-radius: 10px;
}
.news_list::-webkit-scrollbar-thumb {
    background-color: #c9c9c9;
    /* background-image: linear-gradient(
        135deg, rgb(255, 186, 115), #ffb2b2); */
    border-radius: 10px;
}


/* ----- グループ説明 ----- */
.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;
}
.FAC_blue .FAC_TL_type, .TL_blue {
    background-color: #37a0da;
}
.FAC_blue a:hover, .FAC_btn_list_blue a:hover {
    transition: 0.2s;
    color: #37a0da;
}
.FAC_green .FAC_TL_type, .TL_green {
    background-color: #42b049;
}
.FAC_green a:hover, .FAC_btn_list_green a:hover {
    transition: 0.2s;
    color: #42b049;
}
.FAC_orange .FAC_TL_type, .TL_orange {
    background-color: #ef834a;
}
.FAC_orange a:hover, .FAC_btn_list_orange a:hover {
    transition: 0.2s;
    color: #ef834a;
}
.FAC_pink .FAC_TL_type, .TL_pink {
    background-color: #ea6d8d;
}
.FAC_pink a:hover, .FAC_btn_list_pink a:hover {
    transition: 0.2s;
    color: #ea6d8d;
}
.gg_center {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}
.gg_center img {
    width: 50px;
}

/* 業種別リスト */
.FAC_TL_relative {
    position: relative;
}
.FAC_txt_list {
    width: 95%;
    min-width: 260px;
    max-width: 500px;
    margin: 0 auto 20px;
    background-color: #fff;
    box-shadow: 2px 2px 4px #aaa;
    font-size: 1.6rem;
}
.FAC_TL_left {
    top: 20px;
    left: -170px;
}
.FAC_TL_right {
    top: 20px;
    right: -170px;
}
.FAC_TL_type {
    padding: 0.2em 0.5em;
    font-weight: bold;
    color: #fff;
}
.FAC_txt_list .basic_list {
    padding: 0.2em 0 0.2em 1.5em;
}
.FAC_txt_list .basic_list li {
    padding: 0.1em ;
    text-align: left;
    background-color: #fff;
    color: #444;
    font-weight: bold;
}

/* 業種説明 */
.industry_title {
    text-align: center;
    font-weight: 500;
    font-size: 2.4rem;
}
.blue {
    color: #37a0da;
}
.green {
    color: #42b049;
}
.orange {
    color: #ef834a;
}
.pink {
    color: #ea6d8d;
}

.industry_grid {
    width: 100%;
    margin: 10px auto 20px;
    position: relative;
}
.industry_index {
    font-weight: bold;
    font-size: 2rem;
}
.industry_explain {
    margin: 0.5em 0 1em;
    padding: 0 1em;
    font-weight: 500;
    font-size: 1.4rem;
}
.industry_image {
    margin-bottom: 15px;
    text-align: center;
}
.trapezoid_01 {
    z-index: -100;
    position: absolute;
    width: 90%;
    border-bottom: 482px solid #ddf3ff;
    border-left: 100px solid transparent;
    top: -10px;
    right: 0;
}
.trapezoid_02 {
    z-index: -100;
    position: absolute;
    width: 90%;
    border-bottom: 415px solid #dcffde;
    border-right: 100px solid transparent;
    top: -10px;
    left: 0;
}
.trapezoid_03 {
    z-index: -100;
    position: absolute;
    width: 90%;
    border-bottom: 438px solid #fbe4d7;
    border-left: 100px solid transparent;
    top: -10px;
    right: 0;
}
.trapezoid_04 {
    z-index: -100;
    position: absolute;
    width: 90%;
    border-bottom: 393px solid #ffdae3;
    border-right: 100px solid transparent;
    top: -10px;
    left: 0;
}
.industry_image img {
    width: 80%;
}

/* ----- 施設ボタン ----- */
.FAC_btn_list {
    width: 90%;
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:10px ;
    margin: 0 auto 0;
}
.FAC_btn_list a {
    z-index: 5000;
}
.FAC_btn_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 #ccc;
    /* box-shadow: 3px 3px 3px #ddd; */
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.FAC_btn_item a {
    display: block;
    width: 100%;
    height: 100%;
}
/* .FAC_btn_item:hover {
    color: #ff9d26;
    transition: 0.2s; 
    opacity: 0.9;
} */
.FAC_btn_item img {
    width: 100%;
}
.fi_title {
    z-index: 5000;
    line-height: 1.3;
    font-size: 1.4rem;
}
.fi_middle {
    font-size: 1.3rem;
}



/* -----アコーディオン----- */
.accordion_area{
    list-style: none;
    width: 95%;
    max-width: 900px;
    margin: 20px auto 0;
}
.accordion_area li{
    margin: 10px 0;
}
.accordion_area section {
	box-shadow: 3px 3px 3px #aaa;
    border: 1px solid #ddd;
}
/*アコーディオンタイトル*/
.accordion_title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-weight: bold;
    padding: 12px 50px;
    transition: all .5s ease;
    /* color: #00A0E9; */
    font-size: 2rem;
}
.accordion_title:hover {
    opacity: 0.8;
    transition: 0.2s;
}

/*アイコンの＋と×*/
.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: 20px;
    transform: rotate(0deg);
    transition: 0.2s;
}
.accordion_title::after{    
    top:48%;
    left: 20px;
    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;
}

.at_line {
    position: relative;
    width: 180px;
    margin: 0 auto;
    line-height: 2;

    display: inline-block;
    background: linear-gradient(135deg, #fa505e 0%, #fed878 100%);
    background: -webkit-linear-gradient(-45deg, #fa505e 0%, #fed878 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* .at_line:after {
    content: "";
    display: block;
    height: 3px;
    background: -webkit-linear-gradient(to right, rgb(255, 186, 115), #ffb2b2);
    background: linear-gradient(to right, rgb(255, 186, 115), #ffb2b2);
  } */

/*アコーディオンで現れるエリア*/
.accordion_box {
    display: none;/*はじめは非表示*/
    background: #fff;
	margin:3%;
    padding: 0 4px;
    font-size: 1.4rem;
}
.accordion_block {
    margin-bottom: 16px;
}
.detail_index {
    width: 100%;
    max-width: 550px;
    margin: 0 auto 4px;
    padding: 0 0 4px;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #fa505e 0%, #fed878 100%);
    border-image-slice: 1;
    text-align: center;
    line-height: 24px;
    font-size: 1.6rem;
}
.accordion_text {
    font-size: 1.4rem;
}
.at_border {
    display: block;
    width: fit-content;
}
.at_border  {
    display: block;
    border-bottom: 1px solid #000;
}
.ab_list {
    width: fit-content;
    margin-left: 1em;
}
.ab_item {
    
}

/* ----- 沿革 ----- */
.history_grid {
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr 3fr;
    margin: 0 auto;
    padding: 10px 0 0;
    color: #444;
    font-weight: 500;
    font-size: 1.2rem;
}
.hg_time {
    display: block;
    /* margin: -1px 0 0 -1px; */
    padding: 0.5em 1em 0.5em 0;
    text-align: right;
}
.hg_action {
    position: relative;
    display: block;
    /* border-left: 1px solid #8ecae7; */
    border-left: 1px solid #fc9283;
    /* margin: -1px 0 0 -1px; */
    padding: 0.5em 0.5em 0.5em 1em;
}
.hg_action::before {
    position: absolute;
    content: "";
    left: -6px;
    top: 10px;
    width: 11px;
    height: 11px;
    /* background-color: #8ecae7; */
    background-color: #fc9283;
    border-radius: 50%;
}

/* ----- 行動計画 ----- */
.plan_box {
    padding: 0 4px;
}
.plan_title {
    margin-bottom: 0.5em;
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
}
.plan_date {
    margin-bottom: 0.5em;
    text-align: center;
}
.plan_explain {

}
.plan_item {
    margin: 0 0 1em !important;
}

.video_wrapper {
    margin: 15px auto 0;
    text-align: center;
}
.video_title {
    margin-bottom: 0.25em;
    color: #fff;
    text-shadow: 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26, 0 0 2px #ff9d26;
    font-weight: bold;
    font-size: 1.6rem;
}
.video_wrapper video {
    width: 90%;
    max-width: 600px;
}

/* ----- 採用情報 ----- */
.recruit_wrapper {
    margin: 12px auto 0;
}
.recruit_wrapper a {
    display: block;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto; 
    text-align: center;
}
.recruit_wrapper img {
    width: 100%;
}
.recruit_icon_grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    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: 1fr 3fr;
    align-items: center;
}
.detail_icon_text {
    padding: 0 0.5em;
    font-size: 1.4rem;
}
.or_emphasis {
    color: #e78d37;
    font-weight: bold;
}

/* ジャンプボタン */
.form_jump {
    display: block;
    width: 220px;
    margin: 20px auto 0;
    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.5rem;
}
.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;
}

/* ----- アクセス ----- */
.access_wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 10px auto;
    text-align: center;
}
.access_address {
    color: #72bd01;
    font-weight: bold;
    font-size: 1.4rem;
}

.address_wrapper {
    width: 90%; 
    margin: 10px auto 20px;
}
.access_item {
    display: flex;
    margin: 0.25em 0 0.5em;
    align-items: center;
    font-size: 1.4rem;
}
.access_item img {
    display: block;
    width: 35px;
    height: 35px;
    margin-right: 15px;
}

/* -----フッター----- */
.footer {
    position: relative;
    margin-top: 100px;
    /* margin-top: 30px; */
    padding: 10px 0 ;
    background-color: #59baea;
    color: #fff;
}
.footer img {
    width: 350px;
}
.silhouette {
    position: absolute;
    top: -86px;
    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;
}
.footer_link {
    display: flex;
    justify-content: center;
    width: 80%;
    max-width: 600px;
    margin: 1em auto 1em;
    font-weight: bold;
}
.copy {
    padding: 20px 0 0;
    text-align: center;
    font-size: 1rem;
}

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

@media screen and (min-width: 601px) {
    .pc_hidden {
        display: none;
    }
    .subtitle {
        margin-top: 2em;
        font-size: 3rem;
    }
    .subtitle::before {
        width: 30px;
        height: 30px;
        top: 8px;
        left: -36px;
        background-image: url(../images/leaf.png);
        background-size: contain;
    }
    .basic_wrapper {
        margin: 80px auto;
    }
    #news, #facility, #association, #access, #industry01, #industry02, #industry03, #industry04 {
        margin-top: -62px;
        padding-top: 62px;
    }

    /* ヘッダー */
    .header {
        padding: 8px 16px;
    }
    .header img {
        width: 100%;
        max-width: 300px;
        vertical-align: bottom;
    }

    .top_image {
        padding-top: 56px;
     }

    /* お知らせ */
    .news_list {
        height: 230px;
        padding-right: 20px;
        font-size: 1.8rem;
    }
    .news_item {
        display: grid;
        grid-template-columns: 5fr 9fr;
        grid-gap: 20px;
        align-items: center;
    }
    .news_category {
        font-size: 1.6rem;
    }
    /* .news_wrapper {
        margin: 24px auto 0;
    }
    .news_title {
        font-size: 2.4rem;
    }
    .news_list {
        height: 180px;
        margin: 20px 0 0;
        padding: 12px 24px;
        border: 1px solid #aaa;
    }
    .news_item {
        margin-bottom: 8px;
        padding: 4px 0;
        font-size: 2rem;
    } */


    /* ----- グループ説明 ----- */
    .group_grid {
        margin: 50px auto;
        grid-gap: 60px 0;
    }
    .group_block img{
        width: 180px;
        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;
    }
    .gg_center img {
        width: 100px;
    } 
    

    /* 業種説明 */
    .industry_title {
        font-size: 3.6rem;
    }
    .industry_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 30px;
        /* align-items: center; */
        margin: 40px auto 50px;
        align-items: center;
    }
    .industry_image {
        
        margin-bottom: 0;
    }
    .order2 {
        order: 2;
    }
    .industry_image img {
        width: 75%;
        /* border: 8px solid #fff;
        box-shadow: 6px 6px 9px #aaa; */
    }
    .industry_index {
        margin-bottom: 0.5em;
        font-size: 2.4rem;
    }
    .industry_explain {
        padding: 0 2em 0 1em;
        font-size: 1.8rem;
    }
    .trapezoid_01 {
        width: 60%;
        border-bottom: 380px solid #ddf3ff;
        top: -30px;
    }
    .trapezoid_02 {
        width: 60%;
        border-bottom: 380px solid #dcffde;
        top: -30px;
    }
    .trapezoid_03 {
        width: 60%;
        border-bottom: 380px solid #fbe4d7;
        top: -30px;
    }
    .trapezoid_04 {
        width: 60%;
        border-bottom: 380px solid #ffdae3;
        top: -30px;
    }

    /* アコーディオン */
    .accordion_area {
        margin: 80px auto ;
    }
    .accordion_area li{
        margin: 20px 0;
    }
    .accordion_area section {
        box-shadow: 6px 6px 6px #aaa;
    }
    .accordion_title {
        padding: 30px 50px 30px;
        font-size: 3rem;
    }
    .accordion_block {
        margin-bottom: 40px;
    }
    .detail_index {
        margin: 0 auto;
        border-bottom: 2px solid;
        padding-bottom: 16px;
        font-size: 2.6rem;
    }
    .accordion_text {
        padding-top: 12px;
        text-align: center;
        font-size: 2.4rem;
    }
    .ab_list {
        margin-left: 2.5em;
        text-align: left; 
    }

    /*アイコンの＋と×*/
    .accordion_title::before,
    .accordion_title::after{
        width: 25px;
        height: 5px;
        border-radius: 2px;
    }
    .accordion_title::before{
        left: 40px;
    }
    .accordion_title::after{    
        left: 40px;
    }
    .at_line {
        width: 280px;
    }
    .at_line:after {
        height: 4px;
    }

    /* ----- 沿革 ----- */
    .history_grid_wrapper {
        max-width: 1000px;
        display: flex;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
        margin: 0 auto;
    }
    .history_grid {
        grid-template-columns: 1fr 4fr;
        padding: 20px 0 0 0;
        font-size: 2rem;
    }
    .hg_time {
        padding: 0.5em 1em 2em 0;
        text-align: right;
    }
    .hg_action::before {
        left: -7px;
        top: 20px;
        width: 13px;
        height: 13px;
    }
    
    /* ----- 行動計画 ----- */
    .plan_box {
        
    }
    .plan_block {
        grid-template-columns: 2fr 9fr;
        padding: 0 0 1em;
    }
    .plan_title {
        font-size: 2.4rem;
    }
    .plan_date {
        font-size: 2rem;
    }
    .plan_explain {
        width: fit-content;
        margin: 0 auto 2em;
        font-size: 2rem;
    }

    /* ----- 施設一覧 ----- */
    .FAC_TL_relative {
        margin-bottom: 150px;
    }
    .FAC_btn_list {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        grid-gap: 40px 20px;
        font-size: 2rem;
    }
    .FAC_btn_item {
        width: 250px;
        border-radius: 10px;
        aspect-ratio: 4 / 3;
        box-shadow: 4px 4px 4px #ccc;
    }
    .fi_title {
        font-size: 2rem;
    }
    .fi_middle {
        font-size: 1.8rem;
    }
    .fi_small {
        margin-left: 0.5em;
        font-size: 1.6rem;
    }

    .video_wrapper {
        margin: 50px auto 0;
    }
    .video_title {
        font-size: 2.4rem;
    }

    /* 採用情報 */
    .recruit_wrapper {
        margin: 24px auto 0;
    }
    .recruit_icon_grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px 10px;
        margin: 20px auto;
    }
    .detail_icon_text {
        padding: 0.5em;
        font-size: 2rem;
    }
    .recruit_icon_img {
        padding: 6px 6px 6px 1px;
    }
    /* ジャンプボタン */
    .form_jump {
        width: 310px;
        margin: 40px auto;
        border-radius: 40px;
        box-shadow: 3px 3px 3px #dd871e;
        line-height: 50px;
        font-size: 2rem;
    }

    /* アクセス */
    .access_wrapper {
        width: 90vw;
        height: 50vh;
        margin: 30px auto;
        
    }
    .access_address {
        display: flex;
        font-size: 2.2rem;
    }
    .access_address p {
        margin-right: 1em;
    }
    .map_grid {
        width: 100%;
        grid-template-columns: 5fr 4fr;
        grid-gap: 40px;
        margin: 20px auto 10px;
        align-items: center;
    }
    .address_wrapper {
        width: fit-content;
        margin: 0 auto 40px;
        padding: 0 5vw;
    }
    .access_list {
        display: flex;
    }
    .access_item {
        margin-right: 3em;
        font-size: 2rem;
    }
    .access_item img {
        width: 40px;
        height: 40px;
        margin-right: 20px;
    }

    /* フッター */
    .footer {
        margin-top: 250px;
        padding: 40px 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;
    }
    .footer_link {
        font-size: 1.2rem;
    }
    .copy {
        padding: 20px 0 0;
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 900px) {
    .max900_hidden {
        display: none;
    }

}
@media screen and (min-width: 901px) {
    
    /* 業種別リスト */
    .FAC_txt_list {
        position: absolute;
        width: fit-content;
        
        box-shadow: 2px 2px 4px #aaa;
        font-size: 1.6rem;
    }
    .FAC_blue {
        top: 20px;
        left: 12%;
        transform: translate(-50%, 0);
    }
    .FAC_green {
        top: 20px;
        left: 88%;
        transform: translate(-50%, 0);
    }
    .FAC_orange {
        top: 300px;
        left: 12%;
        transform: translate(-50%, 0);
    }
    .FAC_pink {
        top: 300px;
        left: 88%;
        transform: translate(-50%, 0);
        
    }
    .FAC_pink .basic_list {
        line-height: 1.8;
        font-size: 1.4rem;
    }



}

#news, #facility, #association, #access, #industry01, #industry02, #industry03, #industry04 {
    margin-top: -50px;
    padding-top: 50px;
}

@media screen and (min-width: 601px) {
    #news, #facility, #association, #access, #industry01, #industry02, #industry03, #industry04 {
        margin-top: -62px;
        padding-top: 62px;
    }
}
