@charset "UTF-8";
/* フォント読込 */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #333333;
  width: 100%;
  background-size: 100%;
  font-family: 'Noto Sans JP', sans-serif;
}

body.no_scroll {
  overflow-y: hidden;
}

body div, body h1, body h2, body h3, body h4, body p, body ol, body ul {
  margin: 0;
  padding: 0;
}

body li {
  list-style: none;
}

body a {
  text-decoration: none;
  color: #333333;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body .f_quicksand {
  font-family: quicksand, sans-serif;
}

body img {
  width: 100%;
  vertical-align: bottom;
}

body .grid_ctn {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

body .flex_ctn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

body .btn {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body .red_f {
  color: #961F24;
}

body section {
  width: 100%;
}

body .f_inner {
  width: 80vw;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  body .f_inner {
    width: 90vw;
  }
}

body .s_inner {
  width: 90vw;
  max-width: 900px;
  margin: 5rem auto 0;
}

body .js-animation {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

body .js-animation.delay_1 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

@media screen and (max-width: 480px) {
  body .js-animation.delay_1 {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}

body .js-animation.delay_2 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

@media screen and (max-width: 768px) {
  body .js-animation.delay_2 {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}

body .js-animation.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

body .inline_block {
  display: inline-block;
}

body #top_button_icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #961F24;
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 20;
  cursor: pointer;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /*このクラスが付与されると表示する*/
}

@media screen and (max-width: 480px) {
  body #top_button_icon {
    bottom: 90px;
  }
}

body #top_button_icon div {
  margin: 40% 0 0 38%;
  padding: 0;
  width: 13px;
  height: 13px;
  border-top: solid 3px white;
  border-right: solid 3px white;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body #top_button_icon:hover {
  background: rgba(150, 31, 36, 0.9);
  cursor: pointer;
}

body #top_button_icon.active {
  opacity: 1;
  visibility: visible;
}

body header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  padding: 0 0 0 1rem;
  height: 80px;
  -ms-grid-columns: 250px 1fr 250px;
      grid-template-columns: 250px 1fr 250px;
  overflow-x: hidden;
  background-color: white;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 910px) {
  body header {
    -ms-grid-columns: 1fr 250px;
        grid-template-columns: 1fr 250px;
  }
}

@media screen and (max-width: 768px) {
  body header {
    padding: 0 0 0 0.5rem;
    height: 60px;
  }
}

@media screen and (max-width: 480px) {
  body header {
    -ms-grid-columns: 1fr 190px;
        grid-template-columns: 1fr 190px;
  }
}

body header .header_l {
  -ms-grid-columns: 90px 1fr;
      grid-template-columns: 90px 1fr;
}

body header .header_l img {
  padding-right: 0.6rem;
  border-right: 1px solid #ccc;
  width: 90px;
}

@media screen and (max-width: 480px) {
  body header .header_l img {
    border: none;
  }
}

body header .header_l p {
  padding-left: 0.7rem;
  color: #707070;
}

@media screen and (max-width: 480px) {
  body header .header_l p {
    display: none;
  }
}

body header .header_c li {
  color: #961F24;
  font-size: 0.8rem;
  border: 2px solid #961F24;
  border-radius: 20px;
  padding: 3px 15px;
  margin-right: 0.5rem;
}

@media screen and (max-width: 910px) {
  body header .header_c {
    display: none;
  }
}

body header .header_r {
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

@media screen and (max-width: 480px) {
  body header .header_r {
    gap: 5px;
  }
}

body header .header_r .recruit_btn {
  background: #961F24;
  color: white;
  text-align: center;
  border-radius: 50px;
  padding: 5px;
  position: relative;
  font-size: 1rem;
  width: 150px;
}

@media screen and (max-width: 480px) {
  body header .header_r .recruit_btn {
    width: 120px;
    font-size: 0.9rem;
  }
}

body header .header_r .recruit_btn:hover {
  opacity: 0.8;
}

body header .header_r #hb_btn {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  body header .header_r #hb_btn {
    width: 60px;
    height: 60px;
  }
}

body header .header_r #hb_btn span,
body header .header_r #hb_btn span:before,
body header .header_r #hb_btn span:after {
  content: '';
  display: block;
  height: 2px;
  width: 25px;
  border-radius: 2px;
  background-color: #707070;
  position: absolute;
  -webkit-transition: all .5s;
  transition: all .5s;
  /*アニメーション設定*/
}

body header .header_r #hb_btn span:before {
  bottom: 8px;
}

body header .header_r #hb_btn span:after {
  top: 8px;
}

body header .header_r #hb_btn.open {
  background: #F3F1F1;
}

body header .header_r #hb_btn.open span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

body header .header_r #hb_btn.open span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

body header .header_r #hb_btn.open span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body #menu_content {
  background: #F3F1F1;
  width: 100%;
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 80px;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  -webkit-transition: all .5s;
  transition: all .5s;
  /*アニメーション設定*/
  overflow-y: scroll;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: bold;
}

body #menu_content.open {
  opacity: 1;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
  pointer-events: auto;
}

body #menu_content .header_c {
  display: none;
}

@media screen and (max-width: 910px) {
  body #menu_content .header_c {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0.5rem 0;
    padding-top: 2rem;
    width: 90vw;
    margin: 0 auto;
  }
  body #menu_content .header_c li {
    color: #961F24;
    font-size: 0.8rem;
    border: 2px solid #961F24;
    border-radius: 20px;
    padding: 3px 15px;
    margin-right: 0.5rem;
    background: white;
    text-align: center;
  }
}

@media screen and (max-width: 910px) and (max-width: 480px) {
  body #menu_content .header_c li {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

body #menu_content ol {
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem 2rem;
  width: 90vw;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: initial;
  -webkit-align-items: initial;
      -ms-flex-align: initial;
          align-items: initial;
}

@media screen and (max-width: 768px) {
  body #menu_content ol {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 480px) {
  body #menu_content ol {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

body #menu_content ol li {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  body #menu_content ol li {
    max-width: initial;
  }
}

body #menu_content ol li .check {
  display: none;
}

body #menu_content ol li .hm_title {
  position: relative;
  width: 100%;
  height: 130px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body #menu_content ol li .hm_title:hover {
  opacity: 0.8;
}

body #menu_content ol li .hm_title.check-a {
  background-image: url(../img/hm_company.jpg);
}

body #menu_content ol li .hm_title.check-b {
  background-image: url(../img/hm_recruit.jpg);
}

@media screen and (max-width: 768px) {
  body #menu_content ol li .hm_title.hm_title_close {
    display: none;
  }
}

body #menu_content ol li .hm_title a {
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

body #menu_content ol li .hm_title a p {
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  font-weight: bold;
}

body #menu_content ol li .hm_title a p span {
  font-size: 1rem;
}

body #menu_content ol li .hm_title .label {
  display: none;
}

@media screen and (max-width: 480px) {
  body #menu_content ol li .hm_title .label {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: white;
  }
  body #menu_content ol li .hm_title .label span:before,
  body #menu_content ol li .hm_title .label span:after {
    content: '';
    display: block;
    height: 2px;
    width: 20px;
    border-radius: 2px;
    background-color: #707070;
    position: absolute;
    -webkit-transition: all .5s;
    transition: all .5s;
    /*アニメーション設定*/
    right: 10px;
  }
  body #menu_content ol li .hm_title .label span::before {
    top: 20px;
  }
  body #menu_content ol li .hm_title .label span::after {
    top: 20px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

body #menu_content ol li ul {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body #menu_content ol li ul li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

body #menu_content ol li ul li:first-child {
  padding-top: 1rem;
}

body #menu_content ol li ul li a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 480px) {
  body #menu_content ol li ul.hm_text {
    height: 0;
    overflow: hidden;
    padding-left: 1rem;
    background: white;
  }
}

@media screen and (max-width: 480px) {
  body #menu_content ol li .check:checked + .hm_title + .hm_text {
    height: 180px;
  }
}

body main {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  body main {
    margin-top: 60px;
  }
}

body main .page_title_sct .page_title_inner {
  width: 90%;
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 480px) {
  body main .page_title_sct .page_title_inner {
    width: 100%;
  }
}

body main .page_title_sct .page_title_inner img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

body main .page_title_sct .page_title_inner .p_title_stc_ctn {
  background: white;
  position: absolute;
  bottom: -1px;
  left: -1px;
  padding: 1rem 2rem 0 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  min-width: 40%;
}

@media screen and (max-width: 768px) {
  body main .page_title_sct .page_title_inner .p_title_stc_ctn {
    padding: 0.5rem 2rem 0 0;
  }
}

@media screen and (max-width: 480px) {
  body main .page_title_sct .page_title_inner .p_title_stc_ctn {
    min-width: 60%;
    padding: 0.5rem 2rem 0 1rem;
  }
}

body main .page_title_sct .page_title_inner .p_title_stc_ctn .nav_list {
  font-size: 0.7rem;
  font-weight: normal;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

body main .page_title_sct .page_title_inner .p_title_stc_ctn .nav_list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 8px;
}

body main .page_title_sct .page_title_inner .p_title_stc_ctn .nav_list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-top: solid 1px #333333;
  border-right: solid 1px #333333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 8px;
}

body main .page_title_sct .page_title_inner .p_title_stc_ctn .nav_list li:first-of-type::before {
  display: none;
}

body main .page_title_sct .page_title_inner .p_title_stc_ctn .p_title {
  gap: 0 1rem;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-weight: bold;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
  body main .page_title_sct .page_title_inner .p_title_stc_ctn .p_title.title_wrap {
    display: block;
  }
}

body main .page_title_sct .page_title_inner .p_title_stc_ctn .p_title .p_title_main {
  font-size: 1.8rem;
  color: #961F24;
  line-height: 1;
  font-family: fot-tsukuardgothic-std, sans-serif;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  body main .page_title_sct .page_title_inner .p_title_stc_ctn .p_title .p_title_main {
    font-size: 1.6rem;
  }
}

body main .page_title_sct .page_title_inner .p_title_stc_ctn .p_title .p_title_main .p_title_small {
  font-size: 1.3rem;
  white-space: nowrap;
}

body main .page_title_sct .page_title_inner .p_title_stc_ctn .p_title .p_title_sub {
  color: #666666;
  font-size: 1.3rem;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  body main .page_title_sct .page_title_inner .p_title_stc_ctn .p_title .p_title_sub {
    margin-top: 10px;
    font-size: 1.1rem;
  }
}

body main .s_title {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  text-align: center;
  font-weight: bold;
}

body main .s_title .s_title_main {
  font-size: 1.6rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #961F24;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  body main .s_title .s_title_main {
    font-size: 1.4rem;
  }
}

body main .s_title .s_title_sub {
  color: #666666;
  font-size: 1.1rem;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  body main .s_title .s_title_sub {
    font-size: 0.9rem;
  }
}

body main #cmn_adoption_sct {
  background: url(../img/adoption_back.svg);
  background-size: cover;
  background-position: bottom center;
  width: 100%;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: bold;
  padding: 2rem 0;
}

body main #cmn_adoption_sct .ad_inner {
  width: 90%;
  margin: 0 auto;
}

body main #cmn_adoption_sct .ad_inner p {
  color: white;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3;
  padding-bottom: 2rem;
}

body main #cmn_adoption_sct .ad_inner .adoption_btn {
  background: white;
  color: #961F24;
  text-align: center;
  border-radius: 50px;
  padding: 1.2rem 0;
  position: relative;
  font-size: 1.4rem;
  width: 250px;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

body main #cmn_news_sct {
  background: #EAEAEA;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

body main #cmn_news_sct .s_inner {
  margin-top: 0;
}

body main #cmn_news_sct .s_inner .news_content {
  background: gray;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  height: 500px;
}

body footer {
  width: 100%;
}

body footer .f_main {
  padding: 2rem 0;
}

@media screen and (max-width: 480px) {
  body footer .f_main .f_inner {
    width: 70vw;
  }
}

body footer .f_main .grid_ctn {
  -ms-grid-columns: 1fr 3fr;
      grid-template-columns: 1fr 3fr;
  gap: 50px;
  -webkit-box-align: normal;
  -webkit-align-items: normal;
      -ms-flex-align: normal;
          align-items: normal;
}

@media screen and (max-width: 900px) {
  body footer .f_main .grid_ctn {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 480px) {
  body footer .f_main .grid_ctn {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

body footer .f_main .grid_ctn img {
  width: 100px;
  display: block;
}

@media screen and (max-width: 480px) {
  body footer .f_main .grid_ctn img {
    margin: 0 auto;
  }
}

body footer .f_main .grid_ctn .f_nav {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

body footer .f_main .grid_ctn .f_nav .f_nav_item {
  min-width: 250px;
  padding-bottom: 2rem;
}

body footer .f_main .grid_ctn .f_nav .f_nav_item a:hover {
  opacity: 0.8;
}

body footer .f_main .grid_ctn .f_nav .f_nav_item p {
  padding-right: 1rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: bold;
}

body footer .f_main .grid_ctn .f_nav .f_nav_item ul {
  padding-left: 1rem;
  border-left: 1px solid #CCCCCC;
  font-weight: normal;
  font-size: 0.9rem;
}

body footer .f_main .grid_ctn .f_nav .f_nav_item ul li {
  padding-bottom: 10px;
}

body footer .policy {
  background: #961F24;
  color: white;
  font-weight: normal;
  padding: 5px 0;
}

body footer .policy .flex_ctn {
  font-size: 0.8rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body footer .policy .flex_ctn a {
  color: white;
}

@media screen and (max-width: 480px) {
  body footer .policy .flex_ctn {
    display: block;
    text-align: center;
  }
}

body footer .policy .flex_ctn .policy_text {
  padding-top: 2px;
  font-size: 0.6rem;
}
/*# sourceMappingURL=common.css.map */