@media(min-width:1025px){
  .pc_hide{
    display: none!important;
  }
}/*@media(min-width:768px){*/

@media(max-width:1024px){
  .pad_hide{
    display: none!important;
  }

  /*
  ----------------------------------------------------
  共通パーツ
  ----------------------------------------------------
  */

  .container{
    width:720px;
    max-width: 100%;
    margin:0 auto;
  }

  .common_hover_opa{
    transition: 0.4s;
  }
  .common_hover_opa:hover{
    opacity: 1;
  }



  /*
  ----------------------------------------------------
  共通セクション　ヘッダー
  ----------------------------------------------------
  */

  .header{
    position: fixed;
    width:100%;
    top:0;
    left:0;
    z-index:100;
    pointer-events: none;
  }


  .header.common_header{
    
  }

  .header.top_header{
    position: absolute;
    width:100%;
    top:0;
    left:0;
    z-index:100;
  }


  .header .header_flex{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .header .header_left{
    display: none;
    padding-left: 32px;
  }

  .header .header_logo{
    display: block;
    pointer-events: auto;
  }

  .header .header_logo img{
    width:285px;
  }

  .header .header_right{
    display: none;
  }

  .header .drawer_open{
    width:56px;
    height:56px;
    border-radius: 0 0 0 16px;
    background-color: #FB7813;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
  }

  .header .drawer_open .bar_frame{
    width:24px;
    height:16px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  header .drawer_open .bar{
    width:100%;
    height:2px;
    background-color: #fff;
    transition-duration: 0.5s;
  }
  
  header .drawer_open.active .bar1 {
    transform: translateY(7px) rotate(-45deg);
  }
  header .drawer_open.active .bar2 {
    display: none;
  }
  header .drawer_open.active .bar3 {
    transform: translateY(-7px) rotate(45deg);
  }

  #drawer_menu{
    position: fixed;
    top:0;
    left:0;
    z-index:99;
    width:100vw;
    height: calc(100vh ); 
    height: calc(var(--vh2, 1vh) * 100);
    background-color: #3DBADA;
    opacity: 0;
    pointer-events: none;
    transition-duration: 0.4s;
    padding-top: 56px;
  }

  #drawer_menu.show{
    opacity: 1;
    pointer-events: auto;
  }
  
  #drawer_menu .frame{
    height:100%;
    overflow-y: scroll;
  }

  #drawer_menu .drawer_contents{
    padding:80px 32px;
    max-width: 500px;
    margin: 0 auto;
  }

  #drawer_menu .parent_item{
    margin-top: 36px;
    text-align: center;
  }

  #drawer_menu .parent_item:first-child{
    margin-top: 0;
  }

  #drawer_menu .parent_item .parent_link{
    text-align: center;
    font-weight: bold;
    font-size: 17px;
    line-height: 1.3;
    color: #fff;
  }

  #drawer_menu .parent_item .child_switch{
    width: fit-content;
    margin:0 auto;
    position: relative;
  }

  #drawer_menu .parent_item .child_switch::after{
    content:"";
    width:5px;
    height:9px;
    background-image: url('../img/common/angle_right_white');
    position: absolute;
    left:calc(100% + 12px);
    top:8px;
    transform: rotateZ(90deg);
    transition-duration: 0.4s;
  }

  #drawer_menu .parent_item .child_switch.active::after{
    transform: rotateZ(270deg);
  }

  #drawer_menu .child_list{
    margin-top: 16px;
    display: none;
  }

  #drawer_menu .child_item{
    margin-top: 16px;
    text-align: center;
  }

  #drawer_menu .child_link{
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3;
    color: #fff;
  }

  #drawer_menu .entry_link{
    width: 180px;
    height: 58px;
    border-radius: 29px;
    background: #fc7812;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:64px auto 0;
  }

  #drawer_menu .entry_link .entry01{
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    text-align: center;
  }

  #drawer_menu .entry_link .entry02{
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin-top: 3px;
  }

  #drawer_menu .border{
    height:1px;
    background: #fff;
    margin-top: 72px;
  }

  #drawer_menu .button_link{
    width: 242px;
    height: 32px;
    border-radius: 16px;
    border: 1px solid #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 17px;
    line-height:1;
    color: #fff;
    margin:36px auto 0;
  }

  #drawer_menu .button_link::before{
    content:"";
    width:3px;
    height:5px;
    background-image: url('../img/common/angle_right_white');
    position: absolute;
    left:24px;
    top:0;
    bottom:0;
    margin:auto;
  }

  #drawer_menu .button_link + .button_link{
    margin-top: 16px;
  }


  /*
  ----------------------------------------------------
  共通セクション　ページ下部のお問い合わせや採用について
  ----------------------------------------------------
  */

  .common_link_section{
    position: relative;
    padding:120px 0;
  }

  .common_link_section .flex{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 330px;
    margin:0 auto;
  }

  .common_link_section .flex .border{
    width:100%;
    height:1px;
    background-color: #3EB9DA;
    margin:96px 0;

  }

  .common_link_section .link_title{
    font-size: 42px;
  }

  .common_link_section .link_text_frame{
    margin-top: 24px;
    min-height: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  .common_link_section .link_button{
    width: 284px;
    height: 76px;
    margin:48px auto 0;
    font-size: 20px;
  }


  /*
  ----------------------------------------------------
  トップページ
  ----------------------------------------------------
  */

  .top_section01{
    min-height: calc(100vh ); 
    min-height: calc(var(--vh2, 1vh) * 100);
  }

  .top_section01 .flex{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }

  .top_section01 .img_area{
    display: none;
  }

  .top_section01 .text_area{
    /* width:100%; */
  }

  .top_section01 .sec_title{
    text-align: center;
  }

  .top_section01 .text_area .illa{
    width:100%;
    max-width: 500px;
    margin:24px auto;
  }

  .top_section01 .text_area .p01{
    width: fit-content;
    margin:40px auto 0;
  }

  .top_section01 .deco {
    bottom: 10.1%;
    left: 50%;
  }

  .top_section02{
    min-height: calc(100vh ); 
    min-height: calc(var(--vh2, 1vh) * 100);
    padding: 0;
  }

  .top_section02 .flex{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding:40px 0 80px;
  }

  .top_section02 .sec_title{
    text-align: center;
  }

  .top_section02 .img_area{
    display: none;
  }

  .top_section02 .flex .text_area{
    padding-top: 0;
  }

  .top_section02 .text_area .illa{
    width:100%;
    max-width: 250px;
    margin:24px auto;
  }

  .top_section03{
    padding:120px 0 400px;
    position: relative;
    overflow: hidden;
  }

  .top_section03 .flex{
    justify-content: center;
  }

  .top_section03 .text_area .sec_title{
    text-align: center;
  }

  .top_section03 .bg {
    width: 1000px;
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: calc(50% - 500px);
    transition-delay: 0.3s;
  }

  .top_section05{
    min-height: auto;
    padding-bottom: 400px;
  }

  .top_section05 .flex {
    padding: 0 60px;
    justify-content: center;
  }

  .top_section05 .map_block{
    width:400px;
  }

  /*
  ----------------------------------------------------
  施設紹介
  ----------------------------------------------------
  */

  .facility_section01 .facility_block{
    max-width: 720px;
  }

  .facility_section01 .facility_head{
    padding:72px 0 56px;
    width: 500px;
    margin:0 auto;
  }

  .facility_section01 .facility_head .facility_left{
    display: none;
  }

  .facility_section01 .facility_head .facility_head_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }

  .facility_section01 .facility_head .facility_name{
    white-space: normal;
  }

  .facility_section01 .facility_head .facility_right{
    width:100%;
  }

  .facility_section01 .facility_head .facility_img{
    width:100%;
    margin:24px auto 0;
  }

  .facility_section01 .facility_body{
    padding:0 0 80px;
    width:500px;
    margin:0 auto;
    display: none;
  }

  /*
  ----------------------------------------------------
  働き方を知る
  ----------------------------------------------------
  */

  .job_section02 .message_list{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 550px;
    margin:0 auto;
  }

  .job_section02 .message_card{
    margin-right:0;
  }


  /*
  ----------------------------------------------------
  鳴光荘
  ----------------------------------------------------
  */

  .meikousou_section01 .flex{
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
  }

  .meikousou_section01 .flex .thumb{
    width:100%;
    max-width: 500px;
    margin-top: 24px;
  }

  .meikousou_section01 .flex .text_area{
    width:fit-content;
    
    padding-left: 0;
    text-align: center;
  }

  .meikousou_section02 .about_frame01 .sub_head01 {
    width: 480px;
    top: -190px;
    right: calc(50% - 100px);
  }

  .meikousou_section02 .about_frame02 .sub_head02 {
    width: 510px;
    top: -160px;
    left: calc(50% - 120px);
  }

  .meikousou_section02 .about_frame02 .icon01 {
    width: 90px;
    top: 238px;
    left: calc(50% + 300px);
  }
  
  .meikousou_section02 .about_frame02 .icon02 {
    width: 180px;
    top: 400px;
    left: calc(50% + 60px);
  }

  .meikousou_section02 .about_frame03 .sub_head03 {
    width: 490px;
    top: -180px;
    right: calc(50% - 100px);
  }

  .meikousou_section02 .about_frame03 .icon02 {
    width: 90px;
    bottom: -240px;
    right: calc(50% + 230px);
}


  /*
  ----------------------------------------------------
  ブログ一覧
  ----------------------------------------------------
  */

  .blog_section01 .blog_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .blog_section01 .blog_list li{
    width:48%;
    margin-right: 0;
  }

  /*
  ----------------------------------------------------
  ブログ一詳細
  ----------------------------------------------------
  */

  .blog_sinlge_section01 .link_flex .archive_link{
    width:240px;
  }
  

  /*
  ----------------------------------------------------
  情報公開
  ----------------------------------------------------
  */

  .information_section01 .pdf_list{
    max-width:500px;
    margin:0 auto;
  }

  
  .information_list_section .info_block + .info_block{
    margin-top: 180px;
  }
  
  .information_list_section .info_head{
    gap:16px 20px;
    font-size: 30px;
    padding-bottom: 24px;
  }
  
  .information_list_section .info_head span{
    font-size: 17px;
  }
  
  .information_list_section .item_list{
    gap:24px 30px;
    margin-top: 32px;
  }
  
  .information_list_section .item_list li{
    width:220px;
  }
  
  .information_list_section .item_link{
    min-height: 60px;
    padding:8px 12px;
    background-color: #fff;
    font-size: 17px;  
  }
      
}/*@media(max-width:767px){*/