@charset "UTF-8";
/*

	共通部分

*/
/* Vendor */
/* Variable */
/*

breakpoints

*/
/*

base color

*/
/*

text color

*/
/*

table color

*/
/*

button color

*/
/*

width

*/
/*

webfonts

*/
/* Mixin */
/*

clearfix

*/
/*

メディアクエリ

ブレークポイント定義
```sass
$breakpoints:(
	tablet: 959px,
	sp: 679px
);
```

● max-widthで指定する
```sass
@include mq(sp) {
	height:40px;
}
```
```output css
@media screen and (max-width: 679px) {
	height: 40px;
}
```

● 範囲指定する場合は、引数に2つ入れる
```sass
@include mq(sp tablet) {
	height:40px;
}
```
```output css
@media screen and (min-width: 680px) and (max-width: 959px) {
	height: 40px;
}
```

● min-widthで指定する場合は第2引数をtrueにする
```sass
@include mq(tablet, true) {
	height:40px;
}
```
```output css
@media screen and (min-width: 960px) {
	height: 40px;
}
```

*/
/* Function */
/* Base */
/*

プロジェクトにおける基本的なスタイル
（ページ全体の背景や、基本的なタイポグラフィ）
※ クラスは使わない

*/
html {
  font-size: 62.5%;
}

html, body {
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: auto;
  overflow-y: visible;
}

body {
  font-family: "Noto Sans", "Noto Sans CJK JP",'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.7;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

li {
  list-style: none;
}

/* Object */
/* -----------------------------------------------------
    mv メインビジュアル blue
----------------------------------------------------- */
.mv.blue {
  position: relative;
  width: 100%;
  height: 720px;
  -ms-overflow-x: hidden;
  -ms-overflow-y: hidden;
}

@media screen and (max-width: 575px) {
  .mv.blue {
    height: 405px;
  }
}

.mv.blue::before {
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #1541a2;
}

.mv.blue .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  -ms-overflow-x: hidden;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .mv.blue .wrapper {
    padding: 5px;
  }
}

.mv.blue .mv__contents {
  width: 100%;
  height: 100%;
  padding: 0 5%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 575px) {
  .mv.blue .mv__contents {
    padding: 0 3%;
  }
}

.mv.blue .mv__contents__title h1 {
  position: relative;
  margin-bottom: 7%;
  padding-top: 5%;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1;
  font-size: 50px;
  font-size: 5rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .mv.blue .mv__contents__title h1 {
    font-size: 42px;
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 767px) {
  .mv.blue .mv__contents__title h1 {
    padding-top: 8%;
    margin-bottom: 10%;
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 575px) {
  .mv.blue .mv__contents__title h1 {
    margin-bottom: 10%;
    padding-top: 8%;
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.mv.blue .mv__contents__title h1::after {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 70px;
  height: 4px;
  background-color: #1541a2;
}

@media screen and (max-width: 575px) {
  .mv.blue .mv__contents__title h1::after {
    width: 35px;
    height: 2px;
  }
}

.mv.blue .mv__contents__title h1 span {
  color: #1541a2;
}

.mv.blue .mv__contents p {
  padding-bottom: 5%;
}

@media screen and (max-width: 1199px) {
  .mv.blue .mv__contents p {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .mv.blue .mv__contents p {
    padding-bottom: 8%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  .mv.blue .mv__contents p {
    padding-bottom: 8%;
    font-size: 10px;
    font-size: 1rem;
  }
}

/* -----------------------------------------------------
    mv メインビジュアル green
----------------------------------------------------- */
.mv.green {
  position: relative;
  width: 100%;
  height: 720px;
  -ms-overflow-x: hidden;
  -ms-overflow-y: hidden;
}

@media screen and (max-width: 575px) {
  .mv.green {
    height: 405px;
  }
}

.mv.green::before {
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #009e96;
}

.mv.green .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  -ms-overflow-x: hidden;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .mv.green .wrapper {
    padding: 5px;
  }
}

.mv.green .mv__contents {
  width: 100%;
  height: 100%;
  padding: 0 5%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 575px) {
  .mv.green .mv__contents {
    padding: 0 3%;
  }
}

.mv.green .mv__contents__title h1 {
  position: relative;
  margin-bottom: 7%;
  padding-top: 5%;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1;
  font-size: 50px;
  font-size: 5rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .mv.green .mv__contents__title h1 {
    font-size: 42px;
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 767px) {
  .mv.green .mv__contents__title h1 {
    padding-top: 8%;
    margin-bottom: 10%;
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 575px) {
  .mv.green .mv__contents__title h1 {
    margin-bottom: 10%;
    padding-top: 8%;
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.mv.green .mv__contents__title h1::after {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 70px;
  height: 4px;
  background-color: #009e96;
}

@media screen and (max-width: 575px) {
  .mv.green .mv__contents__title h1::after {
    width: 35px;
    height: 2px;
  }
}

.mv.green .mv__contents__title h1 span {
  color: #009e96;
}

.mv.green .mv__contents p {
  padding-bottom: 5%;
}

@media screen and (max-width: 1199px) {
  .mv.green .mv__contents p {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .mv.green .mv__contents p {
    padding-bottom: 8%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  .mv.green .mv__contents p {
    padding-bottom: 8%;
    font-size: 10px;
    font-size: 1rem;
  }
}

/* -----------------------------------------------------
    mv メインビジュアル lightblue
----------------------------------------------------- */
.mv.lightblue {
  position: relative;
  width: 100%;
  height: 720px;
}

.mv.lightblue::before {
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #1541a2;
}

@media screen and (max-width: 575px) {
  .mv.lightblue {
    height: 400px;
  }
}

.mv.lightblue > * {
  height: 100%;
}

.mv.lightblue .mv__contents {
  position: relative;
  height: 100%;
  -ms-overflow-x: hidden;
  -ms-overflow-style: none;
}

.mv.lightblue .mv__contents .mv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.mv.lightblue .mv__contents .mv__title h1 {
  position: relative;
  margin: 10px auto 60px;
  color: #fff;
  font-size: 42px;
  font-size: 4.2rem;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .mv.lightblue .mv__contents .mv__title h1 {
    font-size: 35px;
    font-size: 3.5rem;
  }
}

.mv.lightblue .mv__contents .mv__title h1::after {
  position: absolute;
  bottom: -50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 70px;
  height: 4px;
  background-color: #fff;
}

@media screen and (max-width: 575px) {
  .mv.lightblue .mv__contents .mv__title h1::after {
    width: 35px;
    height: 2px;
  }
}

.mv.lightblue.post h1 {
  position: static !important;
}

.mv.lightblue.post h1::after {
  content: none !important;
}

/* -----------------------------------------------------
    見出しタイトル
----------------------------------------------------- */
.title_blueline {
  text-align: center;
}

.title_blueline h2 {
  position: relative;
  margin: 0;
  padding: 0 50px;
  color: #1541a2;
  font-size: 38px;
  font-size: 3.8rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .title_blueline h2 {
    font-size: 43px;
    font-size: 4.3rem;
  }
}

@media screen and (max-width: 575px) {
  .title_blueline h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.title_blueline h2::before, .title_blueline h2::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30%;
  height: 5px;
  border-top: solid 1px #1541a2;
  border-bottom: solid 1px #1541a2;
}

.title_blueline h2::before {
  left: 0;
}

.title_blueline h2::after {
  right: 0;
}

/* -----------------------------------------------------
    見出しタイトル greenline
----------------------------------------------------- */
.title_greenline {
  text-align: center;
}

.title_greenline h2 {
  position: relative;
  margin: 0;
  padding: 0 50px;
  color: #009e96;
  font-size: 38px;
  font-size: 3.8rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .title_greenline h2 {
    font-size: 43px;
    font-size: 4.3rem;
  }
}

@media screen and (max-width: 575px) {
  .title_greenline h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.title_greenline h2::before, .title_greenline h2::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30%;
  height: 5px;
  border-top: solid 1px #009e96;
  border-bottom: solid 1px #009e96;
}

.title_greenline h2::before {
  left: 0;
}

.title_greenline h2::after {
  right: 0;
}

/* -----------------------------------------------------
    ボタン(radius)
----------------------------------------------------- */
.btn_radius {
  position: relative;
  width: 100%;
  text-align: center;
}

.btn_radius .btn_wrap,
.btn_radius a {
  position: relative;
  display: inline-block;
}

.btn_radius .btn_wrap::before,
.btn_radius a::before {
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translate(-1em, -50%) rotate(45deg);
  -ms-transform: translate(-1em, -50%) rotate(45deg);
  transform: translate(-1em, -50%) rotate(45deg);
  content: "";
  border-top: solid 2px #1541a2;
  border-right: solid 2px #1541a2;
}

.btn_radius .btn_wrap:hover::before,
.btn_radius a:hover::before {
  border-color: #fff;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.btn_radius input:hover {
  color: #fff;
  background-color: #1541a2;
  text-decoration: none;
}

.btn_radius a,
.btn_radius input {
  display: inline-block;
  height: 80px;
  line-height: 80px;
  border: 1px solid #1541a2;
  color: #1541a2;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.btn_radius a.reverse,
.btn_radius input.reverse {
  border: 1px solid #fff;
  color: #fff;
}

.btn_radius a.reverse::before,
.btn_radius input.reverse::before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.btn_radius a.reverse:hover,
.btn_radius input.reverse:hover {
  color: #1541a2;
  background-color: #fff;
  text-decoration: none;
}

.btn_radius a.reverse:hover::before,
.btn_radius input.reverse:hover::before {
  border-color: #1541a2;
}

/* -----------------------------------------------------
    ボタン(recruit)
----------------------------------------------------- */
/*　ボタン_recruit */
.btn_recruit {
  background-color: #e5004f;
  padding: 50px 40px;
}

@media screen and (max-width: 575px) {
  .btn_recruit {
    padding: 25px 20px;
  }
}

.btn_recruit a {
  position: relative;
  padding: 40px 0;
  background-color: #fff;
  border: solid 1px #fff;
  border-radius: 100px;
  font-family: "Hannari", "IPAex明朝", serif;
  font-size: 24px;
  font-size: 2.4rem;
  color: #e5004f;
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}

@media screen and (max-width: 575px) {
  .btn_recruit a {
    padding: 20px 0;
    font-size: 1.6rem;
  }
}

.btn_recruit a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 120px;
  bottom: -10px;
  right: -5px;
  border-radius: 100px;
  background-color: #fff;
  opacity: 0.3;
  z-index: -1;
}

@media screen and (max-width: 575px) {
  .btn_recruit a::after {
    height: 80px;
  }
}

.btn_recruit a:hover {
  color: #fff;
  background-color: #e5004f;
}

.btn_recruit a:hover .arrow_cta {
  background: #fff;
}

.btn_recruit a:hover .arrow_cta::before {
  background: #fff;
}

.btn_recruit a .arrow_cta {
  width: 17%;
  height: 1px;
  background: #e5004f;
  position: absolute;
  top: 50%;
  left: 94%;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 575px) {
  .btn_recruit a .arrow_cta {
    width: 10%;
  }
}

.btn_recruit a .arrow_cta::before {
  content: "";
  width: 23px;
  height: 1px;
  background: #e5004f;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: translateY(-50%) rotate(29.5deg);
  -ms-transform: translateY(-50%) rotate(29.5deg);
  transform: translateY(-50%) rotate(29.5deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 575px) {
  .btn_recruit a .arrow_cta::before {
    width: 15px;
  }
}

/* -----------------------------------------------------
    改行
----------------------------------------------------- */
.sp_br,
.sp_block,
.pc_none {
  display: none !important;
}

@media screen and (max-width: 575px) {
  .sp_br,
  .sp_block,
  .pc_none {
    display: block !important;
  }
}

.pc_br,
.sp_none,
.pc_block {
  display: block !important;
}

@media screen and (max-width: 575px) {
  .pc_br,
  .sp_none,
  .pc_block {
    display: none !important;
  }
}

.tbs_br {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .tbs_br {
    display: block !important;
  }
}

.liquid_br {
  display: none !important;
}

@media screen and (max-width: 1199px) {
  .liquid_br {
    display: block !important;
  }
}

.liquid_none {
  display: block !important;
}

@media screen and (max-width: 1199px) {
  .liquid_none {
    display: none !important;
  }
}

/* -----------------------------------------------------
    カテゴリーの色
----------------------------------------------------- */
.single-terms.topics {
  background-color: #c1272d;
  border: 1px solid #c1272d;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.single-terms.topics:hover {
  background-color: #fff;
  color: #c1272d;
}

.single-terms.info {
  background-color: #373737;
  border: 1px solid #373737;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.single-terms.info:hover {
  background-color: #fff;
  color: #373737;
}

.single-terms.veterinarian {
  background-color: #1541a2;
  border: 1px solid #1541a2;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.single-terms.veterinarian:hover {
  background-color: #fff;
  color: #1541a2;
}

.single-terms.owner {
  background-color: #009e96;
  border: 1px solid #009e96;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.single-terms.owner:hover {
  background-color: #fff;
  color: #009e96;
}

.single-terms.seminar {
  background-color: #0096ff;
  border: 1px solid #0096ff;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.single-terms.seminar:hover {
  background-color: #fff;
  color: #0096ff;
}

.single-terms.newsletter {
  background-color: #f7931e;
  border: 1px solid #f7931e;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.single-terms.newsletter:hover {
  background-color: #fff;
  color: #f7931e;
}

/* -------------------------------------------------------------------------
	Layout
------------------------------------------------------------------------- */
/*

	パンくずリスト

*/
.breadcrumbs .wrapper {
  padding: 25px 0;
}

.breadcrumbs .wrapper > span {
  font-size: 12px;
  font-size: 1.2rem;
  margin-left: 15px;
}

.breadcrumbs .wrapper > span:first-of-type {
  margin-left: 0;
  margin-right: 15px;
}

/*

	メインカラム・サブカラム等

*/
.wrapper {
  width: 50%;
  min-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .wrapper {
    width: 70%;
    min-width: auto;
  }
}

@media screen and (max-width: 991px) {
  .wrapper {
    width: 80%;
    min-width: auto;
  }
}

@media screen and (max-width: 575px) {
  .wrapper {
    width: 90%;
    min-width: auto;
  }
}

.main_column {
  width: 71.6%;
  float: left;
}

@media screen and (max-width: tablet) {
  .main_column {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .main_column {
    width: 100%;
    float: none;
  }
}

.sub_column {
  width: 24%;
  float: right;
}

@media screen and (max-width: tablet) {
  .sub_column {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .sub_column {
    width: 100%;
    float: none;
  }
}

/* フッター */
.site_footer {
  background: #fff;
}
@media screen and (max-width: 1199px) {
  .site_footer {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 575px) {
  .site_footer {
    padding-bottom: 55px;
  }
}
.site_footer__inner {
  width: 100%;
  background-image: url("../images/common/bg_footer_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  padding: 40px 0 30px;
}
@media screen and (max-width: 575px) {
  .site_footer__inner {
    padding: 35px 0 20px;
  }
}

.site_footer__nav {
  width: 62.37%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 200px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .site_footer__nav {
    width: 81.9%;
  }
}

@media screen and (max-width: 991px) {
  .site_footer__nav {
    padding: 0;
    display: block;
  }
}

.site_footer__nav a {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  display: block;
}
.site_footer__nav a.footer-movie-nav {
  font-weight: bold;
}

@media screen and (max-width: 1199px) {
  .site_footer__nav a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 991px) {
  .site_footer__nav a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  .site_footer__nav a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.site_footer__nav li:nth-child(n + 2) a {
  line-height: 2;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
}

.site_footer__nav li:nth-child(n + 2) a.footer-movie-nav {
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .site_footer__nav li:nth-child(n + 2) a {
    font-size: 10px;
    font-size: 1rem;
  }
}

.site_footer__nav__news li:nth-child(n + 2) a {
  font-weight: bold !important;
}

.site_footer__nav__logo_pc {
  width: 10.4%;
}

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

.site_footer__nav__veterinarian li:last-child a {
  line-height: 1;
  margin-top: 6.5px;
}

.site_footer__nav__sp {
  width: 100%;
  display: none;
  margin-top: 10px;
  zoom: 1;
}

.site_footer__nav__sp::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

.site_footer__nav__sp .inner {
  width: 50%;
  float: left;
}

.site_footer__nav__sp .inner ul:nth-child(n + 2) {
  margin-top: 25px;
}

.site_footer__nav__sp .inner__guide_02 {
  zoom: 1;
}

.site_footer__nav__sp .inner__guide_02::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

.site_footer__nav__sp .inner__guide_02 li:nth-child(2), .site_footer__nav__sp .inner__guide_02 li:nth-child(4) {
  width: 33%;
  float: left;
}

.site_footer__nav__sp .inner__guide_02 li:nth-child(3), .site_footer__nav__sp .inner__guide_02 li:nth-child(5) {
  width: 67%;
  float: left;
}

.site_footer__nav__sp .inner__news li:nth-child(n + 2) a {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold !important;
}

.site_footer__nav__sp .inner:nth-child(2) {
  padding-left: 11.5%;
}

@media screen and (max-width: 991px) {
  .site_footer__nav__owner, .site_footer__nav__veterinarian, .site_footer__nav__about, .site_footer__nav__guide, .site_footer__nav__news {
    display: none;
  }
  .site_footer__nav__sp {
    display: block;
  }
}

.site_footer__nav__logo_sp {
  width: 67.7%;
  margin: 25px auto 0;
  display: none;
}

.site_footer__nav__logo_sp img {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .site_footer__nav__logo_sp {
    width: 30%;
    margin: 25px 0 0;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .site_footer__nav__logo_sp {
    width: 67.7%;
  }
}

@media screen and (max-width: 575px) {
  .site_footer__nav__logo_sp {
    margin: 25px auto 0;
  }
}

.site_footer__nav__banner {
  width: 29.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  right: 0;
}

.site_footer__nav__banner li {
  width: 49%;
}

.site_footer__nav__banner li img {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .site_footer__nav__banner {
    width: 100%;
    margin-top: 25px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: static;
  }
  .site_footer__nav__banner li {
    width: auto;
  }
  .site_footer__nav__banner li:first-child {
    margin-right: 1%;
  }
}

@media screen and (max-width: 575px) {
  .site_footer__nav__banner li {
    width: 31.5%;
  }
  .site_footer__nav__banner li:first-child {
    margin-left: 18%;
  }
  .site_footer__nav__banner li:last-child {
    margin-right: 18%;
  }
}

.site_footer__copyright {
  padding: 1% 0;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .site_footer__copyright {
    padding: 12px 0;
  }
}

.site_footer__copyright .privacy {
  font-size: 13px;
  font-size: 1.3rem;
  display: block;
}

@media screen and (max-width: 991px) {
  .site_footer__copyright .privacy {
    font-size: 10px;
    font-size: 1rem;
  }
}

.site_footer__copyright p, .site_footer__copyright small {
  line-height: 1.77;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 991px) {
  .site_footer__copyright p, .site_footer__copyright small {
    font-size: 10px;
    font-size: 1rem;
  }
}

.site_footer__copyright p .br_sp {
  display: none;
}

@media screen and (max-width: 991px) {
  .site_footer__copyright p .br_sp {
    display: block;
  }
}

.site_footer__copyright small {
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .site_footer__copyright small {
    display: block;
  }
}

.page_top {
  position: fixed;
  right: 15px;
  bottom: 15px;
}

.page_top a {
  display: block;
  width: 30px;
  height: 30px;
  padding: 10px;
  text-align: center;
  border-radius: 30px;
  color: #fff;
  background-color: #333;
  font-size: 12px;
  font-size: 1.2rem;
}

.page_top a:hover {
  background-color: #ddd;
  text-decoration: none;
}

/*

	グロナビ

*/
.global_nav {
  height: 50px;
  background-color: #333;
}

/*

	ヘッダ

*/
.site_header__inner {
  width: 86.8%;
  margin: 0 auto;
}

.site_header__id a {
  text-decoration: none;
}

/*

	ナビ

*/
.nav__side {
  width: 4.4%;
  min-width: 88px;
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1000;
  cursor: pointer;
}

@media screen and (max-width: 1199px) {
  .nav__side {
    width: 34%;
    min-width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.nav__side .ico {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.nav__side .ico:hover {
  opacity: .7;
}

@media screen and (max-width: 1199px) {
  .nav__side .ico {
    width: 17.5vw;
  }
}

.nav__side .ico > div {
  height: 6.25vw;
  min-height: 125px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5vw 0;
}

@media screen and (max-width: 1199px) {
  .nav__side .ico > div {
    height: 100px;
    min-height: auto;
    padding-top: 10px;
  }
}

@media screen and (max-width: 575px) {
  .nav__side .ico > div {
    height: 55px;
    padding: 6px 0 4px;
  }
}

.nav__side .ico > div img {
  width: 48px;
}

@media screen and (max-width: 1199px) {
  .nav__side .ico > div img {
    width: 50px;
  }
}

@media screen and (max-width: 575px) {
  .nav__side .ico > div img {
    width: 28px;
  }
}

.nav__side .ico > div .img--active {
  display: none;
}

.nav__side .ico > div .cross {
  width: 20px;
  height: 20px;
  position: relative;
  margin: 3px auto 0;
  display: none;
}

.nav__side .ico > div .cross > span {
  width: 28.2px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  display: block;
}

.nav__side .ico > div .cross > span:nth-child(1), .nav__side .ico > div .cross > span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
}

.nav__side .ico > div .cross > span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav__side .ico > div .cross > span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 1199px) {
  .nav__side .ico > div .cross {
    width: 30px;
    margin-top: 18px;
  }
  .nav__side .ico > div .cross span {
    width: 42.3px;
  }
}

@media screen and (max-width: 575px) {
  .nav__side .ico > div .cross {
    width: 24px;
    margin-top: 4px;
  }
  .nav__side .ico > div .cross span {
    width: 33.8px;
  }
}

.nav__side .ico > div .cross--active {
  display: block;
}

.nav__side .ico > div .ham {
  position: relative;
  width: 1.39vw;
  height: 0.895vw;
  min-width: 27.9px;
  min-height: 17.9px;
  margin: 0 auto;
}

.nav__side .ico > div .ham > span {
  width: 1.39vw;
  min-width: 27.9px;
  height: 0.1vw;
  min-height: 2px;
  background: #fff;
  border-radius: 0;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all .1s;
  -o-transition: all .1s;
  transition: all .1s;
}

.nav__side .ico > div .ham > span:nth-child(1) {
  top: 0;
}

.nav__side .ico > div .ham > span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nav__side .ico > div .ham > span:nth-child(3) {
  bottom: 0;
}

@media screen and (max-width: 1199px) {
  .nav__side .ico > div .ham {
    display: none;
  }
}

.nav__side .ico > div .ham--active span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  -ms-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}

.nav__side .ico > div .ham--active span:nth-child(2) {
  width: 0;
  min-width: 0;
}

.nav__side .ico > div .ham--active span:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  -ms-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}

.nav__side .ico > div b {
  width: 81%;
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
  display: block;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 575px) {
  .nav__side .ico > div b {
    font-size: 10px;
    font-size: 1rem;
  }
}

.nav__side .ico > div b .line {
  width: 80%;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.nav__side .ico:first-child {
  background: #0068B7;
}

.nav__side .ico:last-child {
  background: #009E96;
}

@media screen and (max-width: 1199px) {
  .nav__side .ico:first-child {
    background-color: rgba(0, 104, 183, 0.9);
  }
  .nav__side .ico:last-child {
    background-color: rgba(0, 158, 150, 0.9);
  }
}

.nav__side .ico:last-child {
  margin-top: 3px;
}

@media screen and (max-width: 1199px) {
  .nav__side .ico:last-child {
    margin-top: 0;
  }
}

.menu {
  width: 100vw;
  height: 100vh;
  padding-top: 5.5%;
  position: fixed;
  top: 0;
  left: 100%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  z-index: 100;
  cursor: pointer;
}

@media screen and (max-width: 575px) {
  .menu {
    padding-top: 20px;
  }
}

.menu .title {
  text-align: center;
}

.menu .title a {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1;
  font-size: 38px;
  font-size: 3.8rem;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .menu .title a {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.menu .inner {
  width: 50%;
  border-top: 2px #fff solid;
  margin: 2.5% auto 0;
  zoom: 1;
}

.menu .inner::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

@media screen and (max-width: 1199px) {
  .menu .inner {
    width: 100%;
    border-width: 1px;
    margin: 15px auto 0;
  }
  .menu .inner:nth-child(2) {
    padding-left: 25px;
  }
}

.menu .inner li {
  width: 40%;
  float: left;
}

.menu .inner li:nth-child(1), .menu .inner li:nth-child(2) {
  margin-top: 4%;
}

.menu .inner li:nth-child(even) {
  margin-left: 20%;
}

@media screen and (max-width: 1199px) {
  .menu .inner li:nth-child(1), .menu .inner li:nth-child(2) {
    margin-top: 15px;
  }
  .menu .inner li:nth-child(even) {
    margin-left: 0;
  }
}

.menu .inner li a {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 3;
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .menu .inner li a {
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 991px) {
  .menu .inner li a {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 2.6em;
  }
}

@media screen and (max-width: 575px) {
  .menu .inner li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.menu__veterinarian {
  background-color: rgba(0, 104, 183, 0.9);
}

@media screen and (max-width: 1199px) {
  .menu__veterinarian .inner {
    width: 100%;
  }
  .menu__veterinarian .inner li {
    width: 100%;
    float: none;
  }
  .menu__veterinarian .inner li:nth-child(2) {
    margin-top: 0;
  }
}

.menu__owner {
  background-color: rgba(0, 158, 150, 0.9);
}

@media screen and (max-width: 1199px) {
  .menu__owner .inner {
    width: 100%;
  }
  .menu__owner .inner li {
    width: 100%;
    float: none;
  }
  .menu__owner .inner li:nth-child(2) {
    margin-top: 0;
  }
}

.menu__owner .inner li a {
  white-space: nowrap;
}

.menu__access, .menu__vacancy {
  background-color: rgba(0, 0, 0, 0.65);
  zoom: 1;
}

.menu__access::after, .menu__vacancy::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

.menu__access .title, .menu__vacancy .title {
  border-bottom: 1px #fff solid;
  padding-bottom: 35px;
}

.menu__access li:nth-child(n + 2), .menu__vacancy li:nth-child(n + 2) {
  width: 50%;
  float: left;
}

.menu__access li:nth-child(n + 2) a, .menu__vacancy li:nth-child(n + 2) a {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1;
  font-size: 30px;
  font-size: 3rem;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .menu__access li:nth-child(n + 2) a, .menu__vacancy li:nth-child(n + 2) a {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.menu__access li:nth-child(2), .menu__access li:nth-child(3), .menu__vacancy li:nth-child(2), .menu__vacancy li:nth-child(3) {
  margin: 60px 0 48px;
}

.menu__access li:nth-child(2), .menu__access li:nth-child(4), .menu__vacancy li:nth-child(2), .menu__vacancy li:nth-child(4) {
  padding-left: 25px;
}

.menu--active {
  left: 0;
}

.aside__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  cursor: pointer;
}

@media screen and (max-width: 1199px) {
  .aside__bottom {
    width: 66%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.aside__bottom .ico {
  background-color: rgba(0, 0, 0, 0.8);
}

.aside__bottom .ico a {
  width: 4.87vw;
  min-width: 97px;
  text-align: center;
  display: block;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico a {
    width: 16.5vw;
    min-width: auto;
    text-decoration: none;
  }
}

.aside__bottom .ico a dl {
  height: 4vw;
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 0;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico a dl {
    height: 100px;
    min-height: 100px;
  }
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico a dl {
    height: 55px;
    min-height: 55px;
    padding: 5px 0 3px;
  }
}

.aside__bottom .ico a dl .img--active {
  display: none;
}

.aside__bottom .ico a dl .cross {
  width: 20px;
  height: 20px;
  position: relative;
  margin: 3px auto 0;
  display: none;
}

.aside__bottom .ico a dl .cross > span {
  width: 28.2px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  display: block;
}

.aside__bottom .ico a dl .cross > span:nth-child(1), .aside__bottom .ico a dl .cross > span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
}

.aside__bottom .ico a dl .cross > span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.aside__bottom .ico a dl .cross > span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico a dl .cross {
    width: 30px;
    margin-top: 18px;
  }
  .aside__bottom .ico a dl .cross span {
    width: 42.3px;
  }
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico a dl .cross {
    width: 24px;
    margin-top: 4px;
  }
  .aside__bottom .ico a dl .cross span {
    width: 33.8px;
  }
}

.aside__bottom .ico a dl .cross--active {
  display: block;
}

.aside__bottom .ico a dl dd {
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico a dl dd {
    font-size: 8px;
    font-size: 0.8rem;
  }
}

.aside__bottom .ico_top dl {
  width: 4.87vw;
  min-width: 97px;
  height: 4vw;
  min-height: 80px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 0;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico_top dl {
    width: 15.5vw;
    min-width: auto;
    text-decoration: none;
  }
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico_top dl {
    height: 100px;
    min-height: 100px;
  }
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico_top dl {
    height: 55px;
    min-height: 55px;
    padding: 5px 0 3px;
  }
}

.aside__bottom .ico_top dl dd {
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico_top dl dd {
    font-size: 8px;
    font-size: 0.8rem;
  }
}

.aside__bottom .ico_top .trg {
  width: 1.19vw;
  min-width: 34px;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico_top .trg {
    min-width: 44px;
  }
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico_top .trg {
    min-width: 28.8px;
  }
}

.aside__bottom .ico_cta a dl {
  padding: 16px 0 10px;
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico_cta a dl {
    padding: 8px 0 5px;
  }
}

.aside__bottom .ico_cta a dl img {
  width: 1.7vw;
  min-width: 34px;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico_cta a dl img {
    min-width: 44px;
  }
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico_cta a dl img {
    min-width: 27.2px;
  }
}

.aside__bottom .ico_access img {
  width: 1.7vw;
  min-width: 34px;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico_access img {
    min-width: 44px;
  }
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico_access img {
    min-width: 27.2px;
  }
}

.aside__bottom .ico_vacancy img {
  width: 1.6vw;
  min-width: 32px;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico_vacancy img {
    min-width: 42px;
  }
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico_vacancy img {
    min-width: 25.6px;
  }
}

.aside__bottom .ico_cta, .aside__bottom .ico_access, .aside__bottom .ico_vacancy {
  margin-left: 3px;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico_cta, .aside__bottom .ico_access, .aside__bottom .ico_vacancy {
    margin-left: 0;
  }
}

.aside__bottom .hospital {
  width: 0;
  height: 4vw;
  min-height: 80px;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .hospital {
    display: none;
  }
}

.aside__bottom .hospital dl {
  height: 3vw;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.aside__bottom .hospital dl dd {
  height: 50%;
  vertical-align: middle;
}

.aside__bottom .hospital dl dd a {
  line-height: 1;
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
  display: none;
}

.aside__bottom .hospital dl dd:nth-child(odd) {
  width: 30%;
  margin-left: 10%;
}

.aside__bottom .hospital dl dd:nth-child(even) {
  width: 60%;
}

#popup-window {
  width: 100%;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

#popup-window .modal_mv {
  position: relative;
  width: 100%;
  height: 55vh;
  background-image: url("../images/hcw-check/bg_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

#popup-window .modal_mv::before {
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #1541a2;
}

@media screen and (max-width: 575px) {
  #popup-window .modal_mv {
    background-image: url("../images/hcw-check/sp_bg_01.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 250px;
  }
}

#popup-window .modal_mv > * {
  height: 100%;
}

#popup-window .modal_mv .modal_mv__contents {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  height: 70%;
  background-color: rgba(255, 255, 255, 0.7);
  -ms-overflow-x: hidden;
  -ms-overflow-y: hidden;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  #popup-window .modal_mv .modal_mv__contents {
    height: 80%;
  }
}

#popup-window .modal_mv .modal_mv__contents::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  content: "";
  width: 104%;
  height: 108%;
  background-color: rgba(255, 255, 255, 0.5);
}

#popup-window .modal_mv .modal_mv__contents__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 87.7%;
}

#popup-window .modal_mv .modal_mv__contents__text .modal_mv__title h1 {
  position: relative;
  margin: 10px auto 60px;
  font-family: "Hannari", "IPAex明朝", serif;
  line-height: 1;
  font-size: 50px;
  font-size: 5rem;
  font-weight: 500;
}

@media screen and (max-width: 575px) {
  #popup-window .modal_mv .modal_mv__contents__text .modal_mv__title h1 {
    margin: 17px auto 30px;
    font-size: 25px;
    font-size: 2.5rem;
  }
}

#popup-window .modal_mv .modal_mv__contents__text .modal_mv__title h1::after {
  position: absolute;
  bottom: -50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 70px;
  height: 4px;
  background-color: #1541a2;
}

@media screen and (max-width: 575px) {
  #popup-window .modal_mv .modal_mv__contents__text .modal_mv__title h1::after {
    width: 35px;
    height: 2px;
  }
}

#popup-window .modal_mv .modal_mv__contents__text .modal_mv__title h1 span {
  color: #1541a2;
}

@media screen and (max-width: 1199px) {
  #popup-window .modal_mv .modal_mv__contents__text p {
    text-align: left;
  }
}

@media screen and (max-width: 575px) {
  #popup-window .modal_mv .modal_mv__contents__text p {
    font-size: 10px;
    font-size: 1rem;
  }
}

#popup-window .confirmation {
  margin-bottom: 70px;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation {
    margin-bottom: 35px;
  }
}

#popup-window .confirmation__title {
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__title {
    margin: 0 auto;
  }
}

#popup-window .confirmation__title h2 {
  margin: 0 auto 60px;
  color: #1541a2;
  font-weight: 700;
  font-size: 48px;
  font-size: 4.8rem;
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 991px) {
  #popup-window .confirmation__title h2 {
    font-size: 43px;
    font-size: 4.3rem;
  }
}

@media screen and (max-width: 767px) {
  #popup-window .confirmation__title h2 {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__title h2 {
    margin: 0 auto 30px;
    font-size: 20px;
    font-size: 2rem;
  }
}

#popup-window .confirmation__title h2::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #1541a2;
  position: absolute;
  left: 0;
  bottom: -3%;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__title h2::after {
    height: 2px;
  }
}

#popup-window .confirmation__inner {
  margin: 0 auto;
  zoom: 1;
}

#popup-window .confirmation__inner::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

#popup-window .confirmation__inner .confirmation__button {
  width: 47.6%;
  height: 80px;
  line-height: 80px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__inner .confirmation__button {
    width: 94%;
    margin: 0 auto;
    height: 50px;
    line-height: 50px;
  }
}

#popup-window .confirmation__inner .confirmation__button::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 1%;
  width: 0;
  height: 0;
  border-top: 15px solid #fff;
  border-right: 15px solid transparent;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__inner .confirmation__button::before {
    top: 7%;
    left: 1.5%;
    width: 0;
    height: 0;
    border-top: 10px solid #fff;
    border-right: 10px solid transparent;
  }
}

#popup-window .confirmation__inner .confirmation__button a {
  display: block;
  font-size: 26px;
  font-size: 2.6rem;
  color: #fff;
  font-weight: 700;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__inner .confirmation__button a {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

#popup-window .confirmation__inner .button__yes {
  float: left;
  background-color: #0068B7;
  border: 1px solid #0068B7;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

#popup-window .confirmation__inner .button__yes:hover {
  background-color: #fff;
  border: 1px solid #0068B7;
}

#popup-window .confirmation__inner .button__yes:hover a {
  color: #0068B7;
}

#popup-window .confirmation__inner .button__yes:hover::before {
  border-top: 15px solid #0068B7;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__inner .button__yes {
    float: none;
  }
}

#popup-window .confirmation__inner .button__yes::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 104, 183, 0.2);
  position: absolute;
  top: 10%;
  left: 2%;
  z-index: -1;
}

#popup-window .confirmation__inner .button__no {
  float: right;
  background-color: #009E96;
  border: 1px solid #009E96;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

#popup-window .confirmation__inner .button__no:hover {
  background-color: #fff;
  border: 1px solid #009E96;
}

#popup-window .confirmation__inner .button__no:hover a {
  color: #009E96;
}

#popup-window .confirmation__inner .button__no:hover::before {
  border-top: 15px solid #009E96;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__inner .button__no {
    margin-top: 25px;
    float: none;
  }
}

#popup-window .confirmation__inner .button__no::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 158, 150, 0.2);
  position: absolute;
  top: 10%;
  left: 2%;
  z-index: -1;
}

#popup-window {
  position: relative;
}

#active-popup {
  background-color: rgba(52, 73, 94, 0.7);
  position: absolute;
  width: 100%;
  heighT: 100% !important;
  top: 0;
  left: 0;
  z-index: 10000;
}

#popup-container {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
}

.modal-content {
  position: relative;
  text-align: center;
}

/*# sourceMappingURL=common.css.map */

.cat-item.cat-item-14, .cat-item.cat-item-13, .cat-item.cat-item-12, .cat-item.cat-item-11 {
  display: none;
}

/* footer banner add recruit */
/* .site_footer__nav__banner {
  width: 40%;
} */
.site_footer__nav__banner li {
  padding-left: 2px;
  padding-right: 2px;
}
@media (max-width:575px) {
  .site_footer__nav {
    width: 90%;
  }
  .site_footer__nav__sp .inner:nth-child(2) {
    padding-left: 5%;
  }
}


.news-add-header {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 99;
  background-color: rgba(1,39,90,0.8);
  padding: 0;
}
.news-add-header a {
  color: #fff;
  display: inline-block;
  padding: 20px 30px;
}
.news-add-header a:hover {
  text-decoration: none;
}
.news-add-title {
  float: left;
  padding-top: 20px;
}
.news-add-title a {
  padding: 15px 30px;
  border-right: 1px solid #fff;
}
.news-add-list {
  float: left;
  position: relative;
}
.news-add-list .bx-viewport {
  max-width: 500px;
}
.news-add-list ul li {
  width: 500px;
}
.news-add-list a {
  padding-right: 60px;
  position: relative;
}
.news-add-list::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  bottom: 45%;
  right: 30px;
}
@media (max-width:1199px) {
  .news-add-header {
    width: 100%;
  }
  .news-add-title {
    width: 111.48px;
  }
  .news-add-list {
    width: calc(100% - 111.48px);
  }
  .news-add-list a {
    width: 100%;
  }
}
@media (max-width:767px) {
  .news-add-header {
  }
  .news-add-header a {
    font-size: 14px;
  }
  .news-add-title {
    width: 75.3px;
  }
  .news-add-title a {
    padding: 10px 15px;
  }
  .news-add-list {
    width: calc(100% - 75.3px);
  }
  .news-add-list a {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .news-add-list::after {
    right: 20px;
  }
  .news-add-list a time {
    font-size: 12px;
  }
}
@media (max-width:575px) {
  .news-add-header a {
    font-size: 12px;
  }
  .news-add-title {
    width: 59.11px;
  }
  .news-add-title a {
    padding: 10px 10px;
  }
  .news-add-list {
    width: calc(100% - 59.11px);
  }
  .news-add-list a {
    padding-left: 10px;
    padding-right: 20px;
  }
  .news-add-list::after {
    width: 8px;
    height: 8px;
    right: 15px;
  }
  .news-add-list a time {
    font-size: 10px;
  }
}

/* ログインボタン */
.login-button-wrapper {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 999;
  display: none;
}
.login-button-wrapper a {
  color: #01275A;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  border: 1px solid #01275A;
  border-radius: 25px;
  padding: 6px 25px 5px;
  background-color: #ffffff;
  -webkit-transition: .4s ease;
  transition: .4s ease;
}
.login-button-wrapper a:hover {
  text-decoration: none;
  -webkit-transition: .4s ease;
  transition: .4s ease;
  color: #fff;
  background-color: #01275A;
}
.login-button-wrapper a svg {
  display: inline-block;
  height: 19px;
  vertical-align: sub;
  fill: #01275A;
  -webkit-transition: .4s ease;
  transition: .4s ease;
}
.login-button-wrapper a:hover svg {
  fill: #fff;
  -webkit-transition: .4s ease;
  transition: .4s ease;
}
@media (max-width:991px) {
  .login-button-wrapper {
    top: 20px;
    right: 15px;
  }
  .login-button-wrapper a {
    padding: 6px 15px;
  }
}
@media (max-width:575px) {
  .login-button-wrapper a {
    font-size: 12px;
    padding: 4px 10px;
  }
  .login-button-wrapper a svg {
    height: 14px;
    margin-right: -3px;
  }
}
