@charset "utf-8";
/* ============================================================================
CSS information
 style info :  下層ページ
/* ============================================================================



/* ============================================================================
目次
 下層共通部分
 ・ヘッダー・リードなど
 ・page_menu / ページ内メニュー（目次ボタン）
 ・wihite_box / 白ボックスに左右配置
 concept / 私たちの想い
 features / 私たちにできること（強み・特徴）
 service / サービス・施設
 service / サービス・施設 / 施設詳細（CMS）
 facility / 施設のご案内
 about / 私たちについて
 recruit / 採用情報
 news / お知らせ
 etc / 汎用ページ

 anime /　流体系アニメ

/* ============================================================================

 下層共通部分
 ヘッダー・リードなど

=============================================================================== */
main.lower{
  margin-bottom: 100px;
}/*フッターとコンテンツの余白*/

#main_visual{
  position: relative;
  background-position:center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1{
  display: inline-block;
  line-height: 2.5;
  white-space: nowrap;
  position: relative;
}
h1 #catch{
  color: #fff;
  font-size: 100%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
h1 .fluid{
  background: rgba(255, 241, 0, .8);
  width: 360px;
  height: 360px;
}

/*メインキャッチコピーが遅れてフェードイン*/
#main_visual h1{
  animation-fill-mode:both;
  animation-name: maincatch_anime;
  animation-duration:3s;
  animation-delay:2s;
}
@keyframes maincatch_anime {
  0% {
    opacity: 0;
    transform :scale(1.2);
  }
  99.9%, to {
    opacity: 1;
    transform :scale(1.0);
  }
}

.read_inner {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*各セクションの見出し*/
.sectiton_catch{
  font-size: 250%;
  position: relative;
  margin-top: 1em;
  padding-top: 1em;
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
}
.sectiton_catch:before {
  display: block;
  content: "";
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent url(../common_images/line_free.svg);
  background-repeat: repeat-x;
  background-position: top left;
}

/*各セクションの見出し 文字・線の色*/
#co_concept .sectiton_catch{color: var(--common_B);}
#co_concept .sectiton_catch:before {filter: invert(64%) sepia(92%) saturate(210%) hue-rotate(157deg) brightness(82%) contrast(94%);}
#co_features .sectiton_catch{color: var(--common_PP);}
#co_features .sectiton_catch:before {filter: invert(67%) sepia(79%) saturate(3745%) hue-rotate(232deg) brightness(83%);}

/*ボタン複数を配置の場合*/
ul.btns_wrap{
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-top: 2em;
}


/* ---------------------------
PC */
@media only screen and (min-width: 901px){
  /*ボタン複数を配置の場合 横並び*/
  ul.btns_wrap{
    flex-direction: row;
  }
}




/* ---------------------------
SP */
@media only screen and (max-width: 900px){

  @keyframes maincatch_anime {
    0% {
      opacity: 0;
      transform :scale(1.0);
    }
    99.9%, to {
      opacity: 1;
      transform :scale(1.0);
    }
  }

  h1{display: flex;
    flex-direction: column;
    align-items: center;
  }
  h1 #catch{
    font-size: 80%;
  }
  h1 .fluid {
    width: auto;
    height: auto;
    min-width: 260px;
    min-height: 260px;
  }

  /*各セクションの見出し*/
  .sectiton_catch{
    font-size: 200%;
    margin-top: 80px;
  }
}



/* ============================================================================

  下層共通部分
　 page_menu / ページ内メニュー(目次ボタン)

=============================================================================== */
.page_menu .inner{padding: 0;}
.page_menu .title{
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}
/*目次の左右線*/
.page_menu .title:before,
.page_menu .title:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background: #ddd;
  margin-top: 4px;

}
.page_menu .title:before {
  margin-right: 1rem;
}
.page_menu .title:after {
  margin-left: 1rem;
}

.page_menu_btn{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1%;
}
.page_menu_btn li{
  display: inline-block;
  width: 33.3%;
}

.page_menu_btn li a{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 100%;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 10px 10px 30px 10px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  height: 100px;
  transition: 0.5s;
  cursor: pointer;
  background-image: url(../common_images/btn_arrow_free.svg) ;
  background-repeat: no-repeat;
  background-position: center bottom 20px;
  background-size: 26px;
}
.page_menu_btn li a:hover{
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.6);
  background-color: var(--common_GR)!important;
  background-position: center bottom 15px;
}
.page_menu_btn li a{transition: 0.5s;}

/* 各コンテンツで色分け */
#co_concept .page_menu_btn li a{  background-color: var(--common_B);}
#co_service .page_menu_btn li a{  background-color: var(--common_G);}
#co_features .page_menu_btn li a{  background-color: var(--common_PP);}
#co_about .page_menu_btn li a{  background-color: var(--common_R);}
#co_recruit .page_menu_btn li a{  background-color: var(--common_A);}
#co_recruit .page_menu_btn li a{  background-color: var(--common_A);}

/* ---------------------------
SP */
@media only screen and (max-width: 900px){
  .page_menu_btn {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-start;
}
  .page_menu_btn li{
    width: 100%;
  }
  .page_menu_btn li a{
    padding: 10px 10px 20px 10px;
    height: 70px;
    background-position: center bottom 10px;
    background-size: 15px;
  }
  .page_menu_btn li a:hover{
    background-position: center bottom 6px;
  }
}

/* ---------------------------
PC */
@media only screen and (min-width: 901px){
  /*セクション内エリア間を横並び*/
  .page_menu_btn{
    flex-direction: row;
  }
  /*採用コンテンツは6つあるのでセクション内エリア間を多段に*/
  #co_recruit .page_menu_btn{
    flex-wrap: wrap;
    gap: 10px;
  }
  #co_recruit .page_menu_btn li {
    display: inline-block;
    width: 32%;
}
}



/* ============================================================================

  下層共通部分
  wihite_box / 白ボックスに左右配置

=============================================================================== */
.wihite_box .inner{
  padding: 40px 0;
}
.wihite_box .txt_box{
  background: #fff;
  border-radius: 30px;
  padding: 2em;
  z-index: 1;/*テキストボックスが写真の全面にくるように*/
}
.wihite_box .bg{
  margin-top:1em;
}
.wihite_box .p_cut_wrap .cut span {
  display: block;
  font-size: 75%;
  line-height: 1.2;
  margin-top: .5em;
}

/* ---------------------------
SP */
@media only screen and (max-width: 900px){
  .wihite_box .inner{
    padding-bottom: 0;
  }

  /*各コラム最後の写真と文字類の要素を間隔空ける*/
  .wihite_box .p_cut_wrap {
    margin-bottom: 3em;
  }
  .wihite_box .bg {
  margin-top: -3em;
  border-radius: 0px 0px 30px 30px;
  }
  .wihite_box .cut {
    margin-top: 30px;
  }
}

/* ---------------------------
PC */
@media only screen and (min-width: 901px){
  /*最初のコラムと目次の間の余白*/
  .first_column{
      padding-top: 80px;
    }

  /*コラム内のテキストボックスと写真を重ね、左右に振る*/
  .wihite_box .inner{
    display: flex;
    align-items: flex-end;
    flex-direction: column-reverse;
  }
  
  .wihite_box:nth-child(even) .inner{
    align-items: flex-start;
  }
  .wihite_box:nth-child(even) .inner .bg {
    margin-left: -300px;
  }
  .wihite_box .txt_box{
    margin-top: -200px;
    padding-top: 0;
  }
  .wihite_box .bg{
    margin-right: -300px;
    margin-top: auto;
  }
  .wihite_box .p_cut_wrap {/*コラム文字と写真カットを左右配置*/
    display: flex;
    align-items: flex-start;
    gap: 30px;
  }
  .wihite_box .p_cut_wrap .cut img {
    width: 300px;
    max-width: none;
  }
}



/* ============================================================================


  concept / 私たちの想い


=============================================================================== */
#co_concept #main_visual{background-image: url(../concept/images/bg.jpg);}

#co_concept h1 .fluid{
  background: var(--common_B);
  opacity: .8;
}
#co_concept h2,
#co_concept h3{
  color: var(--common_B);
  margin-top: 2em;
  font-size: 150%;
  line-height: 1.5;
}
#co_concept h3{
  width: 100%;
  border-top: var(--common_B) 1px dotted;
  padding: 1em 0;
}
#co_concept .read_inner{
  color: var(--common_B);
}
#co_concept .first_column .inner{
  padding-top: 0;
  padding-bottom: 40px;
}
#co_concept .first_column h2{
  color: var(--common_GR);
  margin-bottom: 1em;
  font-size: 125%;
}
#co_concept .first_column .mask_img{
  background-image: url(../concept/images/img_01.jpg);
  max-width: 500px;
  height: 500px;
}
#co_concept .name_wrap{
  display: block;
  margin-top: 3em;
  margin-bottom: 3em;
  font-size: 80%;
  line-height: 1.5;

}
#co_concept .name_wrap strong{
  font-size: 200%;
}


/*理念*/
#co_concept #column_05{
  position: relative;
  text-align: center;
  margin-top: 80px;
}
#co_concept #column_05 .inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
}
#co_concept #column_05 .inner:before {
  position: absolute;
  content: "";
  background: #000;
  width: 100vw;
  height: 350px;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url(../concept/images/img_05.jpg);
  background-size: cover;
}
#co_concept #column_05 h2{
  margin-top: 0%;
  font-size: 100%;
  color: #fff;
}
#co_concept #column_05 p span{
  font-size: 100%;
  display: inline;
  color: #fff;
  background: linear-gradient(transparent 70%, var(--common_B) 0%);
  padding: 0 2px 4px;
}
#co_concept #column_05 .fluid{
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--common_B);
  margin-top: 50px;
  width: 100%;
  height: 350px;
  max-width: 500px;
  line-height: 3;
}



/* ---------------------------
PC */
@media only screen and (min-width: 901px){
  #co_concept .first_column .txt_box {
    max-width: 60%;
}
  #co_concept .first_column .p_cut_wrap {
    display: flex;
    align-items: flex-start;
    gap: 5%;
  }
  #co_concept .first_column .bg {
    margin-right: -15vw;
    max-width: 50vw;
  }
  #co_concept .first_column .bg .mask_img {
    max-width: none;
    width: 600px;
    height: 750px;
  }
  #co_concept .wihite_box .bg {
    margin: auto 0px;
  }
  #co_concept .wihite_box .txt_box {
    width: 60%;
  }
  #co_concept .wihite_box:nth-child(even) .txt_box {
    margin-left: 50px;
  }
  #co_concept .wihite_box:nth-child(odd) .txt_box {
    margin-right: 50px;
  }
  #co_concept #column_03{
    margin-bottom: 40px;
  }

  #co_concept #column_05 .inner{
    padding-top: 100px;
  }
  #co_concept #column_05 .inner:before {
    height: 80vw;
    max-height: 640px;
  }
  #co_concept #column_05 h2{
    padding-bottom: 40px;
  }
  #co_concept #column_05 p span{
    font-size: 150%;
  }
}




/* ============================================================================


  features / 私たちにできること（強み・特徴）


=============================================================================== */
#co_features #main_visual{background-image: url(../features/images/bg.jpg);}

#co_features h1 .fluid{
  background: var(--common_PP);
  opacity: .8;
}
#co_features h2,
#co_features h3{
  color: var(--common_PP);
  font-size: 150%;
  line-height: 1.5;
}
#co_features h3{
  width: 100%;
  border-top: var(--common_PP) 1px dotted;
  padding: 1em 0;
}
#co_features .read_inner{
  color: var(--common_PP);
}

#co_features .main_column .inner{
  padding: 40px 0;
}

#co_features h2{
  margin-bottom: 2em;
  font-size: 125%;
}
#co_features .name_wrap{
  display: block;
  margin-top: 3em;
  margin-bottom: 3em;
  font-size: 80%;
  line-height: 1.5;

}
#co_features .name_wrap strong{
  font-size: 200%;
}

/* ---------------------------
SP */
@media only screen and (max-width: 900px){
  #co_features .bg{
    margin-top: 2em;
  }
  

}  
/* ---------------------------
PC */
@media only screen and (min-width: 901px){
  #co_features .main_column .inner{
    padding: 60px 0;
  }
  #co_features .main_column .txt_box {
    max-width: 60%;
  }
  #co_features .main_column .txt_box p {
    width: 600px;
    max-width: 100%;
  }

  #co_features .main_column .p_cut_wrap {
    display: flex;
    align-items: flex-start;
    gap: 5%;
  }
  #co_features .main_column.first_column .bg {
    max-width: 350px;
  }
  #co_features .main_column:nth-child(even) .bg {
    margin-left: -300px;
  }
  #co_features .main_column:nth-child(even) .p_cut_wrap {
    flex-direction: row-reverse;
  }
  #co_features .main_column:nth-child(odd) .bg {
    margin-right: -300px;
  }
  #co_features #column_03{
    margin-bottom: 40px;
  }
}



/* ============================================================================


  service / サービス・施設


=============================================================================== */
#co_service #main_visual{background-image: url(../service/images/bg.jpg);}
@media only screen and (max-width: 900px){#co_service #main_visual{background-position: center left;}}

#co_service h1 .fluid{
  background: var(--common_G);
  opacity: .8;
}
#co_service h2,
#co_service h3{
  color: var(--common_G);
  margin: 1.5em auto 1.5em;
}
#co_service h3{
  width: 100%;
  border-top: var(--common_G) 1px dotted;
  padding-top: 2em;
  margin-top: 2em;
  line-height: 1.5;
}
#co_service .read_inner{
  color: var(--common_G);
}

/*施設一覧のアイコン説明*/
.facility_icon_guide{
  width: 100%;
}
.facility_icon_guide h3{
  padding-top: 1.5em;
  padding-bottom: 0;
}
.facility_icon_guide .facility_mark{
  font-size: 1.5em;
}
.facility_icon_guide .facility_mark span{
  width: 100%;
  justify-content: center;
}
/*施設一覧のアイコン説明 テーブルレイアウト*/
.facility_icon_guide table{
  font-size: .8em;
  margin-bottom: 2em;
  display: table;
  border-bottom: #fff solid 1px;
  border-radius: 20px;
}
.facility_icon_guide table dl {
  display: grid;
  align-items: baseline;
  grid-template-columns: 8em 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 30px;
}
.facility_icon_guide table td {
  border-top: #fff solid 1px;
  margin: 0px;
  padding: 30px 20px;
}
/*施設一覧のアイコン説明 テーブルthの色分け*/
.facility_icon_guide table th{
  color: #fff;
  font-size: 1.2em;
}
.facility_icon_guide table .th_01{
  background: #b37d7d;
}
.facility_icon_guide table .th_02{
  background: #98b37d;
}
.facility_icon_guide table .th_03{
  background: #7db3b3;
}
.facility_icon_guide table .th_04{
  background: #987db3;
}
/* ---------------------------
SP */
@media only screen and (max-width: 900px){
  #co_service h2{
    margin-top: 1em;
  }

  .facility_icon_guide table dl {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }
  .facility_icon_guide table dd {
    margin-bottom: 1em;
  }
  .facility_icon_guide table td {
    padding: 15px 0px;
  }
  .facility_icon_guide .facility_mark span {
    width: auto;
  }
}


/*施設一覧のボタン群*/
#co_service .facility_wrap:not(:first-of-type){
  margin-bottom: 20px;
}
#co_service #column_04 .inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}
#co_service #column_04 h2{
  text-align: center;
}

#co_service .facility_wrap{
  border: var(--common_G) 1px solid;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
}
#co_service .facility_innar{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  max-width: 370px;
  line-height: 1.5;
  gap: 30px 20px;
}
#co_service .facility_wrap h3 {
  text-align: center;
  padding-top: 0;
  margin: .5em 0 1em 0;
  font-size: 2em;
  border: none;
}
#co_service .facility_detail{
  height: 100%;
}
/*施設ボタン 個別全体*/
#co_service .facility_detail > a{
  height: 100%;
  display: block;
  border-radius: 20px;
  color: var(--common_GR);
}
#co_service .facility_detail > a:hover{
  background: #fff;
  box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
#co_service .facility_detail img{
  transition: .5s;
}
#co_service .facility_detail > a:hover img{
  transform: scale(.95) translateY(3px);
}
/*施設ボタンの文字要素 全体*/
#co_service .facility_detail .txt_wrap{
  padding: .5em;
}
/*マーク*/
.facility_mark {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  color: #fff;
  padding-top: .3em;
}
.facility_mark span{
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  box-sizing: content-box;
  display: flex;
  font-size: .7em;
  line-height: 1;
  background: #000;
  border-radius: 30px;
  padding: .5em;
  /*padding-bottom: .35em;*/
  align-items: center;
}
.facility_mark span.mk_hospital,/*入院*/
.facility_mark span.mk_outpatient,/*外来*/
.facility_mark span.mk_dementia{/*認知症医療*/
  background: #b37d7d;
}
.facility_mark span.mk_hokatsu,/*包括*/
.facility_mark span.mk_care,/*ケアマネ*/
.facility_mark span.mk_cafe{/*カフェ*/
  background: #98b37d;
}
.facility_mark span.mk_multi,/*多機能*/
.facility_mark span.mk_visit,/*訪問*/
.facility_mark span.mk_day,/*通所*/
.facility_mark span.mk_stay-short{/*短期入所*/
  background: #7db3b3;
}
.facility_mark span.mk_group,/*グループ*/
.facility_mark span.mk_live{/*入居*/
  background: #987db3;
}
.facility_mark span.off{
  background: var(--common_GR);
  opacity: .2;
}
.iframe-open{
  font-size: .8em;
  text-decoration: underline;
}
.iframe-open i{
  font-size: .8em;
  margin-right: .25em;
}
.iframe-open:hover{
  color: var(--common_GR);
  text-decoration: none;
}

/*角丸カテゴリ*/
#co_service .facility_detail .txt_wrap .category{
  display: inline-block;
  font-size: .7em;
  padding: .1em .4em .3em;
  border: #ddd 1px solid;
  border-radius: 5px;
  line-height: 1;
  margin: 0;
}
/*施設名*/
#co_service .facility_detail .txt_wrap .name{
  margin: .25em auto;
  font-weight: 700;
  color: var(--common_G);
}
/*施設概要文*/
#co_service .facility_detail .txt_wrap .detail{
  font-size: .8em;
}
#co_service .facility_detail .txt_wrap li{
  margin: .25em auto;
}


/* ---------------------------
SP-PC */
@media only screen and (min-width: 768px){
  /*施設一覧*/
  #co_service .facility_innar{
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}
/* ---------------------------
PC */
@media only screen and (min-width: 901px){
  /*施設一覧*/
  #co_service .facility_innar{
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
  #co_service #column_04 .inner{
    padding: 0;
  }
}


/* ============================================================================


  service / サービス・施設
  施設詳細（CMS）


=============================================================================== */
#co_facility #main_visual{
  background-image: none;
  min-height: 250px;
  height: auto;
  justify-content: flex-end;
  z-index: 1;
}
#co_facility #main_contents {
  margin-top: -100px;
}
#co_facility .first_column img{
  border-radius: 30px;
}
#co_facility img{
  border-radius: 20px;
}
@media only screen and (max-width: 900px){#co_service #main_visual{background-position: center left;}}

#co_facility h1 .fluid{
  background: var(--common_G);
  opacity: .8;
  font-size: .5em;
  width: 200px;
  height: 200px;
}
#co_facility h2,
#co_facility h3{
  color: var(--common_G);
  margin: 1.5em auto 1.5em;
}
#co_facility h2{
  font-size: 1.5em;
  margin: 2.5em auto 2.5em;
}
#co_facility h3{
  width: 100%;
  padding-top: 1em;
  margin: 2em auto;
  line-height: 1.5;
}

#co_facility .first_column,
#co_facility .main_column .inner {
  padding-top: 0;
}
#co_facility .main_column .inner {
  padding-bottom: 50px;
}
#co_facility .p_inner{
  margin-bottom: 1.5em;
}
#co_facility .p_inner h4{
  margin-top: 1em;
  padding-top: 1em;
  border-top: var(--common_G) 1px dotted ;
}


/* WP */
#co_facility h3.title-01{
  position: relative;
}
#co_facility h3.title-01:before{
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent url(../common_images/line_free.svg);
  background-repeat: repeat-x;
  background-position: top left;
  filter: invert(96%) sepia(18%) saturate(4566%) hue-rotate(49deg) brightness(109%) contrast(58%);
}

#co_facility .single-institution__intro.flex {
  background: #fff;
  padding: 2em;
  border-radius: 30px;
}
#co_facility .single-institution__intro ul.list{
  font-size: .9em;
  padding-top: 2em;
}
#co_facility .single-institution__intro ul.list li{
  padding-top: 1em;
  margin-left: 1.7em;
  list-style: outside disc;
}
#co_facility .single-institution__intro ul.list li::marker{
  margin-left: 1em;
}
#co_facility .single-institution__intro ul.list li a{
  text-decoration: underline;
  transition: .5s;
}
#co_facility .single-institution__intro ul.list li a:hover{
  text-decoration: none;
  color: var(--common_GR);
}

/* WP 施設長からのごあいさつ */
#co_facility .single-institution__greeting-text pre{/*見出し*/
  text-wrap: wrap;
  color: var(--common_G);
}
#co_facility .single-institution__greeting-text p{
  margin-top: 1em;
}

/* WP 施設アルバム */
#co_facility .single-institution__gallery-wrapper.flex {
  display: grid;
  flex-wrap: wrap;
  gap: 3%;
  grid-template-columns: repeat(3, 1fr);
}
#co_facility p.card-02__text {
  font-size: .9em;
  line-height: 1.5;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* WP 施設詳細 */
#co_facility .listTABLE {
  border-bottom: var(--common_G) dotted 1px;
}
#co_facility .listTABLE th,
#co_facility .listTABLE td {
  border-top: var(--common_G) dotted 1px;
  margin: 0px;
  padding: 20px 30px;
}

/* WP お知らせ */
#co_facility .home-news .add-news-item{
  display: flex;
}
#co_facility .home-news .add-news-item:hover{
  color: var(--common_GR);
  text-decoration: none;
}
#co_facility .home-news .add-news-item h3:hover{
  color: var(--common_GR);
  text-decoration: none;
}
#co_facility .home-news .add-news.content_wrapper_min {/*お知らせごとの余白*/
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
#co_facility .home-news .add-news-item > *{
  display: inline-block;
}
#co_facility .home-news .add-news-item p,
#co_facility .home-news .add-news-item h3{
  margin: auto;
  padding:0;
}
#co_facility .home-news .add-news-item p{/*日付*/
  font-size: 1.4rem;
  margin: 0;
  margin-top: .2em;
  margin-right: .5em;
  color: var(--common_GR);
}
#co_facility .home-news .add-news-item h3{/*文面*/
  font-size: 1em;
  border: none;
  color: var(--common_B);
  display: inline;
  text-decoration: underline;
  transition: .5s;
}

/* ---------------------------
SP-PC */
@media only screen and (max-width: 900px){
  #co_facility #main_visual {
    min-height: 120px;
    justify-content: center;
  }
  #co_facility h1 .fluid {
    width: 140px;
    height: 140px;
    min-width: auto;
    min-height: auto;
  }
  /*WP 施設アルバム*/
  #co_facility .single-institution__gallery-wrapper.flex {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* ---------------------------
SP */
@media only screen and (max-width: 768px){
  /*WP 施設アルバム*/
  #co_facility .single-institution__gallery-wrapper.flex {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ---------------------------
PC */
@media only screen and (min-width: 901px){
  #co_facility h2{
    font-size: 2em;
  }

  /*WP*/
  #co_facility .single-institution__intro.flex {
    padding: 4em;
  }
  /*WP 施設長からのごあいさつ*/
  #co_facility .single-institution__greeting_wrap{
    display: flex;
    gap: 40px;
  }
  #co_facility .single-institution__greeting_wrap .single-institution__greeting-pict img{
    max-width: 400px;
  }
}


/* ============================================================================


  about / 私たちについて


=============================================================================== */
#co_about #main_visual{background-image: url(../about/images/bg.jpg);}
@media only screen and (max-width: 900px){#co_about #main_visual{background-position: center left;}}

#co_about h2:before {
  filter: invert(68%) sepia(69%) saturate(2717%) hue-rotate(316deg) brightness(100%) contrast(80%);
}

#co_about h1 #catch {
  color: #fff;
}
#co_about h1 .fluid{
  background: var(--common_R);
  opacity: .8;
}
#co_about h2,
#co_about h3{
  color: var(--common_R);
}
#co_about h3{
  width: 100%;
  border-top: var(--common_R) 1px dotted;
  padding: 1.5em 0;
  line-height: 1.5;
}
#co_about .read_inner {
  color: var(--common_R);
}

#co_about iframe.map{margin-top: 1em;}

#co_about .btns_wrap{
  margin-top: 0;
  margin-bottom: 2em;
}
#co_about .btns_wrap a{
  line-height: 1.2;
}


/*歴史*/
.history{
	--padding:3rem;
	display: flex;
}
.history p.hs-year{
	width: 4em;
	padding:  var(--padding) 0;
	line-height: 1.6;
  font-size: 150%;
}
.history p{
	margin-bottom: 1em;
}
.history span.month{
  display: inline-block;
  border: #999 1px solid;
  border-radius: 10px;
  padding: .5em 0em;
  width: 4em;
  text-align: center;
  line-height: 1;
}
.history ul{
	flex: 1;
	display: flex;
	flex-wrap: wrap;
}
.history ul>*{
	padding: var(--padding) 0;
}
.history ul li{
	position: relative;
	padding-left: 2.4em;
}
.history ul li::before{
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	position: absolute;
	top: 2.5em;
	left: 4px;
	background:#ddd;
	transform: translate(50%, 0 );
}
.history ul li::after{
	content: "●";
	font-size: 0.9em;
	line-height: 1;
	position: absolute;
	top: 2em;
	left: -12px;
	transform: translate(calc(50% + 2px), 10%);
}
.history .world{
  background: #ffffff80;
  padding: .3em 1em;
  border-radius: 10px;
  display: inline-block;
}
.history .single{
  margin-top: -.8em;
  display: block;
}


@media screen and (max-width: 900px) {
	.history p.hs-year{
		width: 3.5em;
	}
	.history ul li{
		padding-left: 2em;
		font-size: 0.9em;
	}
	.history ul li::before{
    left: 2px;
	}
	.history ul li::after{
		font-size: 1.0em;
		transform: translate(calc(50% + 2px), 10%);
	}
}



/* ============================================================================


  recruit / 採用情報（旧）


=============================================================================== */
#co_recruit #main_visual{background-image: url(../recruit/images/bg.jpg);}
@media only screen and (max-width: 900px){#co_recruit #main_visual{background-position: center left 0px;}}

/*
#co_recruit h2:before {
  filter: invert(76%) sepia(72%) saturate(278%) hue-rotate(124deg) brightness(87%) contrast(87%);
}
#co_recruit h1 #catch {
  color: #fff;
}

#co_recruit h1 .fluid{
  background: var(--common_A);
  opacity: .8;
}
#co_recruit h2,
#co_recruit h3{
  color: var(--common_A);
}
#co_recruit h3{
  width: 100%;
  border-top: var(--common_A) 1px dotted;
  padding: 1.5em 0;
  line-height: 1.5;
}
#co_recruit .read_inner {
  color: var(--common_A);
}
*/


/* ============================================================================


  recruit / 採用情報


=============================================================================== */
/* ========================================================
  採用情報 共通
=========================================================== */
#co_recruit.recruit_index #main_visual{background-image: url(../recruit/images/bg.jpg);}
@media only screen and (max-width: 760px){#co_recruit.recruit_index #main_visual{background-position: center left -150px;}
}
#co_recruit h2:before {
  filter: invert(76%) sepia(72%) saturate(278%) hue-rotate(124deg) brightness(87%) contrast(87%);
}

#co_recruit h1 #catch {
  line-height: 1.2;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: center;
}
#co_recruit h1 #catch span {
  font-size: .5em;
  display: block;
  margin-left: -2.2em;
}
#co_recruit h1 .fluid{
  background: var(--common_A);
  opacity: .8;
}
#co_recruit h2,
#co_recruit h3{
  color: var(--common_A);
}
#co_recruit h3{
  width: 100%;
  border-top: var(--common_A) 1px dotted;
  padding: 1.5em .5em;
  line-height: 1.5;
}
#co_recruit .read_inner {
  color: var(--common_A);
  padding-bottom: 0;
}
/*メニューボタン*/
#co_recruit .page_menu{
  margin: 80px auto;
}
/* ---------------------------
SP */
@media only screen and (max-width: 900px){
  /*メニューボタン*/
  #co_recruit .page_menu_btn {
      flex-wrap: wrap;
      flex-direction: row;
    gap: 5px;
  }
  #co_recruit .page_menu_btn li {
    width: 49%;
  }
  #co_recruit .page_menu_btn li a {
    font-size: 80%;
    padding: 5px 5px 15px 5px;
    height: 50px;
    background-position: center bottom 7px;
    background-size: 15px;
  }
}
/*エントリーボタン*/
#co_recruit #btn_entry{
  opacity: 1;
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 10;
}
#co_recruit #btn_entry a{
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  background: var(--common_A);
  color: #fff;
  padding: 5px;
  height: 70px;
  border-radius: 50px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, .2);
}
#co_recruit #btn_entry a:hover{
  text-decoration: none;
  background: var(--common_GR);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, .7);
}

/* ========================================================
  採用情報 下層 共通
=========================================================== */
#co_recruit.recruit_lower h1 #catch {
  font-size: .7em;
  line-height: 1.2;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: center;
}
#co_recruit.recruit_lower h1 .fluid {
  max-width: 300px;
  max-height: 300px;
}
/*メインビジュアルの高さ*/
#co_recruit.recruit_lower #main_visual{
  height: auto;
  min-height: 400px;
}
/*メニューボタンの間隔*/
#co_recruit.recruit_lower .page_menu{
  margin: 60px auto;
}
/*リード文*/
#co_recruit.recruit_lower.etc .read h2:before {
  background: none;
}
#co_recruit.recruit_lower.etc .read h2 {
  padding-top: 0;
  font-size: 1.2em;
}
#co_recruit.recruit_lower.etc .read_inner {
  padding:0;
}


/* ---------------------------
SP */
@media only screen and (max-width: 900px){
  #co_recruit.recruit_lower #main_visual {
    min-height: auto;
  }
}

/* ========================================================
  recruit / index /トップ
=========================================================== */
#co_recruit.recruit_index .read_inner h2 {
  color: var(--common_A);
  font-size: 1.2em;
  margin-bottom: 60px;
}
#co_recruit.recruit_index h2:before {
  background: none;
}

/*各バナー内の文字*/
#co_recruit.recruit_index .br_area h2,
#co_recruit.recruit_index .br_area p{
  color: #fff;
}
#co_recruit.recruit_index .br_area p{
  margin-bottom: 60px;
}
/*各バナー内のボタン*/
#co_recruit.recruit_index .btn{
  background-color: inherit;
  border: #fff 1px solid;
  box-shadow:none;
}
#co_recruit.recruit_index .btn:hover{
  background-color:rgba(0, 0, 0, 0.5)!important;
}

/*バナーエリア共通*/
#co_recruit.recruit_index .br_area {
  /* 半透明の黒いオーバーレイ */
  position: relative;
  min-height: 550px;
}
#co_recruit.recruit_index .br_area::before {
   /* 半透明の黒いオーバーレイ */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
#co_recruit.recruit_index .inner {
  position: relative;
  z-index: 2; /* コンテンツのz-indexをオーバーレイより高く設定 */
}

/*キーワード*/
#co_recruit.recruit_index #index_keyword{
  background: var(--common_A) url(../recruit/images/index_keyword.png) no-repeat right center;
  background-size: cover;
}
/*職員紹介*/
#co_recruit.recruit_index #index_staff{
  background: url(../recruit/images/index_staff.jpg) no-repeat center center;
  background-size: cover;
}
/*キャリアパスと研修プログラム*/
#co_recruit.recruit_index #index_career{
  background: url(../recruit/images/index_career.jpg) no-repeat center center;
  background-size: cover;
}
#co_recruit.recruit_index #index_program{
  background: url(../recruit/images/index_program.jpg) no-repeat center center;
  background-size: cover;
}
/*福利厚生*/
#co_recruit.recruit_index #index_welfare{
  background: url(../recruit/images/index_welfare.jpg) no-repeat center center;
  background-size: cover;
}
/*募集要項*/
#co_recruit.recruit_index #index_guide{
  background: url(../recruit/images/index_guide.jpg) no-repeat center center;
  background-size: cover;
}

/*2カラム バナー*/
#co_recruit.recruit_index .col2{
  gap:0;
}
/*単独 バナー*/
#co_recruit.recruit_index .type_alone{
  width: 90vw;
  min-height: 310px;
  margin: 50px auto 0 auto;
}

/* ---------------------------
SP */
@media only screen and (max-width: 900px){
  /*バナーエリア共通*/
  #co_recruit.recruit_index .br_area {
    /* 半透明の黒いオーバーレイ */
    min-height: 300px;
    padding-bottom: 70px;
  }

  #co_recruit.recruit_index #index_keyword{
    background-size:100%;
    background-position: center bottom;
  }
}

/* ---------------------------
PC */
@media only screen and (min-width: 901px){
  /*職員紹介*/
  #co_recruit.recruit_index #index_staff{
    text-align: right;
  }
  /*キャリアパスと研修プログラム*/
  #co_recruit.recruit_index #index_career,
  #co_recruit.recruit_index #index_program{
    text-align: center;
  }
}


/* ========================================================
  recruit / keyword / キーワードで知る
=========================================================== */
#co_recruit.recruit_keyword #main_visual{
  background-image: url(../recruit/images/index_keyword.png);
  background-color: #ddd;
  background-position: left bottom;
  min-height: 410px;
}
#co_recruit.recruit_keyword .read{
  margin-bottom: 60px;
}
#co_recruit.recruit_keyword .main_column .inner{
  background: #fff;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5%;
  justify-content: center;
  padding: 3em;
}
#co_recruit.recruit_keyword .main_column:nth-of-type(even) .inner{
  flex-direction: row-reverse;
}
#co_recruit.recruit_keyword .main_column {
  margin-top: 10px;
}
#co_recruit.recruit_keyword .main_column .inner h2:before{
  background: none;
}
#co_recruit.recruit_keyword .main_column .inner h2{
  font-size: 2em;
  padding-top: 0;
}
#co_recruit.recruit_keyword .main_column img.cut{
  max-width: 400px;
}

/* ---------------------------
SP */
@media only screen and (max-width: 900px){
  #co_recruit.recruit_keyword .main_column .inner{
    flex-direction: column;
    justify-content: center;
    align-items: normal;
    padding: 1em;
  }
  #co_recruit.recruit_keyword .main_column:nth-of-type(even) .inner{
    flex-direction: column;
  }
  #co_recruit.recruit_keyword .main_column .inner h2{
    font-size: 1.5em;
    padding-top: 1.7em;
  }
  #co_recruit.recruit_keyword .main_column .inner p{
    padding-bottom: 1.7em;
  }
}


/* ========================================================
  recruit / staff / 職員紹介
=========================================================== */
#co_recruit.staff_top #main_visual{background-image: url(../recruit/images/index_staff.jpg);}
#co_recruit.staff_a #main_visual{background-image: url(../recruit/images/staff_a_00.jpg);}
#co_recruit.staff_kawasaki #main_visual{background-image: url(../recruit/images/staff_kawasaki_00.jpg);}

/*メインビジュアルの高さ*/
#co_recruit.recruit_staff #main_visual{
  height: 80vh;
  min-height: 500px;
}
/*職員メニューボタン*/
#co_recruit .staff_menu .inner {
  padding:0;
}
#co_recruit .staff_menu ul.staff_menu_btn {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  line-height: 1.2;
}
#co_recruit .staff_menu ul.staff_menu_btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--common_A);
  text-decoration: none;
}
#co_recruit .staff_menu ul.staff_menu_btn span{
  font-size: 1.2em;
}
#co_recruit .staff_menu ul.staff_menu_btn img{
  border: var(--common_A) 10px solid;
  border-radius: 50%;
  margin-bottom: .25em;
  width: 90%;
  max-width: 180px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
  transition: .2s;
}
#co_recruit .staff_menu ul.staff_menu_btn a:hover{
  color: var(--common_GR);
  text-decoration: none;
  opacity: .7;
}
#co_recruit .staff_menu ul.staff_menu_btn a:hover img{
  border: var(--common_GR) 30px solid;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.7);
}

/*職員トップ*/
#co_recruit.staff_top .read{
  margin-bottom: 80px;
}
#co_recruit.staff_top .staff_menu ul.staff_menu_btn {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  line-height: 1.2;
}
#co_recruit.staff_top .staff_menu ul.staff_menu_btn img{
  z-index: 1;
  max-width: 300px;
}
#co_recruit.staff_top .staff_menu ul.staff_menu_btn .txt_box{
  margin-top: -30px;
}

#co_recruit.staff_top .staff_menu ul.staff_menu_btn b{
  display: block;
  font-size: 1.2em;
  line-height: 1.5;
  margin-bottom: 1em;
  color: var(--common_A);
}
#co_recruit.staff_top .staff_menu ul.staff_menu_btn span{
  display: block;
  line-height: 1.5;
}
#co_recruit.staff_top .staff_menu ul.staff_menu_btn span.name{
  font-size: 1em;
}
/* ---------------------------
SP */
@media only screen and (max-width: 900px){
  #co_recruit.recruit_staff.staff_top .txt_box{
    padding: 1em;
  }
  #co_recruit.staff_top .staff_menu ul.staff_menu_btn b {
    font-size: 1em;
    line-height: 1.5;
    margin: 1em 0;
  }
  #co_recruit.staff_top .staff_menu ul.staff_menu_btn span{
    font-size: 1em;
  }
  #co_recruit.staff_top .staff_menu ul.staff_menu_btn span.name{
    font-size: 1.2em;
  }
}


/*職員中面 / プロフィール周り*/
#co_recruit.recruit_staff .first_column h2{
  font-size: .7em;
  padding-bottom: 0;
}
#co_recruit.recruit_staff .first_column span{
  display: block;
}
#co_recruit.recruit_staff .first_column span.catch{
  color: var(--common_A);
  font-size: 1.5em;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 1em;
}
#co_recruit.recruit_staff .first_column span.name{
  font-size: 1.5em;
}
#co_recruit.recruit_staff .first_column span.department,
#co_recruit.recruit_staff .first_column span.year{
  font-size: .8em;
  line-height: 1.5;
}
#co_recruit.recruit_staff .first_column .inner{
  display: flex;
  align-items: flex-end;
  flex-direction: column-reverse;
}


/*メインコラム内*/
#co_recruit.recruit_staff h2,
#co_recruit.recruit_staff h3 {
  font-size: 150%;
}
#co_recruit.recruit_staff section.main_column{
overflow: visible;/*見出し前の「”」を表示させる。（sectionでoverflow:hiddenになっているから）*/
}
#co_recruit.recruit_staff .main_column h2{
  margin: 1em auto;
}
#co_recruit.recruit_staff .main_column h2,
#co_recruit.recruit_staff .main_column h3 {
  padding-top: 0;
}
#co_recruit.recruit_staff .main_column h2::before,
#co_recruit.recruit_staff .main_column h3::before {
  background: none;
}
#co_recruit.recruit_staff .main_column h2::before{
  content: "“";
  font-size: 800%;
  color: var(--common_A);
  filter: none;
  margin: calc(-1em / 2) auto;
  top: 0;
  left: -140px;
  line-height: 1;
}
#co_recruit.recruit_staff .main_column{
  margin-bottom: 40px;
}
#co_recruit.recruit_staff .txt_box ,
#co_recruit.recruit_staff .main_column .inner {
  background: #fff;
  border-radius: 30px;
  padding: 2em;
}
#co_recruit.recruit_staff .cut .inner{
  padding-top: 0;
}

/*サブコラム内*/
#co_recruit.recruit_staff .sub_column {
  font-size: 80%;
  line-height: 1.8;
}
#co_recruit.recruit_staff .sub_column .inner{
  padding-top: 0;
}

#co_recruit.recruit_staff .sub_column h2 {
  padding-top: 1em;
  margin-top: 1em;
  text-align: center;
}
#co_recruit.recruit_staff .sub_column span{
  display: inline-block;
  background: var(--common_A);
  color: #fff;
  padding: 0 1em;
  margin-right: .25em;
  border-radius: 10px;
  font-size: .8em;
}
#co_recruit.recruit_staff .sub_column .step span{
  width: 100%;
  text-align: center;
}
#co_recruit.recruit_staff .sub_column .step span:nth-of-type(n+2){
  margin-top: 1em;
}

/* ---------------------------
PC */
@media only screen and (min-width: 901px){
  /*プロフィール*/
  #co_recruit.recruit_staff .first_column .txt_box{
    width: 50%;
    margin-top: -200px;
    margin-right: 50px;
  }
}
/* ---------------------------
SP */
@media only screen and (max-width: 900px){
  #co_recruits.recruit_staff #main_visual {
    min-height: 500px;
  }
  #co_recruit .staff_menu ul.staff_menu_btn {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  /*プロフィール*/
  #co_recruit.recruit_staff .first_column .txt_box {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: -30px;
    width: 100%;
  }
  /*サブコラム間の間隔*/
  #co_recruit.recruit_staff .sub_column li:nth-of-type(n+2) {
    margin-top: 40px;
  }
  #co_recruit.recruit_staff .sub_column .col3 li img {
    width: 20%;
    min-width: 80px;
  }
}


/* ========================================================
  recruit / career / キャリアパス
=========================================================== */
#co_recruit.recruit_career #main_visual{background-image: url(../recruit/images/index_career.jpg);}
#co_recruit.recruit_career .main_column img{
  border-radius: 30px;
  border: #fff 30px solid;
}

/* ========================================================
  recruit / program / 研修プログラム
=========================================================== */
#co_recruit.recruit_program #main_visual{background-image: url(../recruit/images/index_program.jpg);}
#co_recruit.recruit_program img.cut{
margin-top: 4em;
width: 100%;
}

/* ---------------------------
SP */
@media only screen and (max-width: 900px){
  /*サブコラム間の間隔*/
  #co_recruit.recruit_program .col3 li:nth-of-type(n+2) {
    margin-top: 40px;
  }
}

/* ========================================================
  recruit / welfare / 制度/福利厚生
=========================================================== */
#co_recruit.recruit_welfare #main_visual{background-image: url(../recruit/images/index_welfare.jpg);}

#co_recruit.recruit_welfare img.cut{
  margin-top: 4em;
  width: 100%;
}

#co_recruit.recruit_welfare .col3 li,
#co_recruit.recruit_welfare .col4 li{
  margin-top: 4em;
}
/*制度　3カラム*/
#co_recruit.recruit_welfare .col3 h3{
  text-align: center;
  border: none;
  background: var(--common_A);
  color: #fff;
  border-radius: 10px;
  padding: 1em;
}
#co_recruit.recruit_welfare .col3 b{
  display: block;
  line-height: 1.5;
  color: var(--common_A);
  margin: 2em 0 1em 0;
}
/*福利厚生　4カラム*/
#co_recruit.recruit_welfare .col4{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#co_recruit.recruit_welfare .col4 li{ width: 22%;}
#co_recruit.recruit_welfare .col4 h3{
  font-size: 1.6rem;
  text-align: center;
  border: none;
  background: var(--common_A);
  color: #fff;
  border-radius: 10px;
}
#co_recruit.recruit_welfare .col4 p{
  font-size: 1.4rem;
  margin-top: 1em;
  line-height: 1.5;
}
/* ---------------------------
SP */
@media only screen and (max-width: 900px){
  
  /*コラム間の間隔*/
  #co_recruit.recruit_welfare .col3 h3{
    margin-top: 3em;
  }
  #co_recruit.recruit_welfare .col4 li{ width: 100%;}
}


/* ========================================================
  recruit / guide / 募集要項
=========================================================== */
#co_recruit.recruit_guide #main_visual{background-image: url(../recruit/images/index_guide.jpg);}

/* エントリー */
#co_recruit.recruit_guide .mailform_table span.required,
#co_recruit.recruit_guide .mailform_table span.any {
  background: var(--common_A);
}

/* ============================================================================


  news / お知らせ


=============================================================================== */
#co_news img{
  height: auto;
}
#co_news #main_visual{
  background-image: none;
  min-height: 250px;
  height: auto;
  justify-content: flex-end;
  z-index: 1;
}
#co_news #main_visual h1{
  animation-delay:0s;
}
#co_news h1 .fluid{
  background: var(--common_O);
  opacity: .8;
  font-size: .5em;
  width: 200px;
  height: 200px;
}

#co_news #post_wrap {
  max-width: 1024px;
  width: 100%;
}
#co_news aside.news__side__section,
#co_news article.single-information__main {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}
#co_news article.single-information__main {
  padding: 40px;
}

#co_news #main_contents h1{
  display: block;
  line-height: 1.2;
  margin: 1em 0 2em 0;
  color:var(--common_O);
}
#co_news #main_contents h1:before {
  display: block;
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent url(../common_images/line_free.svg);
  background-repeat: repeat-x;
  background-position: top left;
  filter: invert(97%) sepia(53%) saturate(6969%) hue-rotate(315deg) brightness(88%) contrast(105%);
  margin: auto;
}
#co_news .single-post__meta-date{
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: .8em;
  font-family: 700;
  color: #999;
}
#co_news h1.single-information__title {
  text-wrap: wrap;
  line-height: 1.2;
}
#co_news .single-post__conts p {
  margin-bottom: 2em;
}

/*サイドメニュー*/
#co_news #news__side__section_wrap{
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#co_news aside.news__side__section h2{
color: var(--common_R);
font-size: .8em;
}
#co_news aside.news__side__section ul.linkList,
#co_news aside.news__side__section select.selectParts {
  font-size: .9em;
  line-height: 1.2;
}
#co_news aside.news__side__section ul.linkList li {
  margin:1em auto;
}#co_news aside.news__side__section a {
  color: var(--common_GR);
}


/* ---------------------------
SP-PC */
@media only screen and (max-width: 900px){
  #co_news #main_visual {
    min-height: 120px;
    justify-content: center;
  }
  #co_news h1 .fluid {
    width: 140px;
    height: 140px;
    min-width: auto;
    min-height: auto;
  }
  #co_news #main_contents {
    display: flex;
    flex-direction: column-reverse;
  }
  #co_news #news__side__section_wrap{
    margin-top: 1em;
  }
}

/* ---------------------------
PC */
@media only screen and (min-width: 901px){
  #co_news #main_contents{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: auto;
  }
  #co_news #news__side__section_wrap{
    width: 20vw;
    min-width: 250px;
  }
}

/* ============================================================================


  contact / お問い合わせ


=============================================================================== */
#co_contact #main_visual{background-image: url(../contact/images/bg.jpg);}




/* ============================================================================


  privacy / 個人情報


=============================================================================== */
#co_privacy h2:first-of-type{margin-top:0;}
#co_privacy h2{margin-top: 1em;}
#co_privacy p{
  padding-bottom:2em;
}
#co_privacy ol{
  padding: 0 0 2em 1.3em;
}
#co_privacy ol li{
  list-style: decimal;
}


/* ---------------------------
SP */
@media only screen and (max-width: 900px){
  #co_privacy h2{ font-size: 150%;}
}



/* ============================================================================


  etc / 汎用ページ


=============================================================================== */

.etc h1 #catch {
  color: var(--common_GR);
}
.etc .page_menu .inner {
  padding: 0;
}
.etc .inner {
  padding: 50px 0;
}
.etc .first_column {
  padding-top: 80px;
}
.etc .first_column .inner {
  padding-top: 0px;
}
.etc h2{
  font-size: 250%;
  position: relative;
  margin: 0 auto;
  padding-top: 1em;
  padding-bottom: 1.7em;
  max-width: 1024px;
  line-height: 1.5;
}
.etc h2:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent url(../common_images/line_free.svg);
  background-repeat: repeat-x;
  background-position: top left;
  margin: auto;
}


/* ---------------------------
SP */
@media only screen and (max-width: 900px){

  .etc .main_column .inner {
    padding: 40px 0;
  }
  .etc .first_column .inner {
    padding-top: 0px;
  }
}
